diff --git a/biome.json b/biome.json index 0dcad3de..5865ede4 100644 --- a/biome.json +++ b/biome.json @@ -40,7 +40,8 @@ "!**/dist", "!**/node_modules", "!client/coverage", - "!client/src/app/client" + "!client/src/app/client", + "!**/common/assets" ] } } diff --git a/e2e/tests/api/dependencies/global.setup.ts b/e2e/tests/api/dependencies/global.setup.ts index d4f64afa..46a55d42 100644 --- a/e2e/tests/api/dependencies/global.setup.ts +++ b/e2e/tests/api/dependencies/global.setup.ts @@ -31,10 +31,12 @@ const uploadSboms = async (axios: AxiosInstance, files: string[]) => { const uploads = files.map((e) => { const filePath = path.join(__dirname, `../../common/assets/sbom/${e}`); fs.statSync(filePath); // Verify file exists - const fileStream = fs.createReadStream(filePath); + const contentType = e.endsWith(".bz2") + ? "application/json+bzip2" + : "application/json"; return axios.post("/api/v2/sbom", fileStream, { - headers: { "Content-Type": "application/json+bzip2" }, + headers: { "Content-Type": contentType }, }); }); @@ -45,10 +47,12 @@ const uploadAdvisories = async (axios: AxiosInstance, files: string[]) => { const uploads = files.map((e) => { const filePath = path.join(__dirname, `../../common/assets/csaf/${e}`); fs.statSync(filePath); // Verify file exists - const fileStream = fs.createReadStream(filePath); + const contentType = e.endsWith(".bz2") + ? "application/json+bzip2" + : "application/json"; return axios.post("/api/v2/advisory", fileStream, { - headers: { "Content-Type": "application/json+bzip2" }, + headers: { "Content-Type": contentType }, }); }); diff --git a/e2e/tests/common/assets/csaf/CVE-2023-0481-cve.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2023-0481.json.bz2 similarity index 100% rename from e2e/tests/common/assets/csaf/CVE-2023-0481-cve.json.bz2 rename to e2e/tests/common/assets/csaf/CVE-2023-0481.json.bz2 diff --git a/e2e/tests/common/assets/csaf/CVE-2024-29025.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2024-29025.json.bz2 new file mode 100644 index 00000000..b84e74bf Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2024-29025.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-35036.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-35036.json.bz2 new file mode 100644 index 00000000..bceb1e4d Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-35036.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-41242.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-41242.json.bz2 new file mode 100644 index 00000000..4673638f Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-41242.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-48734.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-48734.json.bz2 new file mode 100644 index 00000000..525450c6 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-48734.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-48795.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-48795.json.bz2 new file mode 100644 index 00000000..4fdf0dc5 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-48795.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-48924.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-48924.json.bz2 new file mode 100644 index 00000000..7b6bffe9 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-48924.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-48988.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-48988.json.bz2 new file mode 100644 index 00000000..9fec351b Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-48988.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-48989.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-48989.json.bz2 new file mode 100644 index 00000000..9ffba3a6 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-48989.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-49574.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-49574.json.bz2 new file mode 100644 index 00000000..1518ca07 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-49574.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-52520.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-52520.json.bz2 new file mode 100644 index 00000000..6e4856e6 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-52520.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-53506.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-53506.json.bz2 new file mode 100644 index 00000000..c8aa67e7 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-53506.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-55163.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-55163.json.bz2 new file mode 100644 index 00000000..f96c91be Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-55163.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/CVE-2025-55668.json.bz2 b/e2e/tests/common/assets/csaf/CVE-2025-55668.json.bz2 new file mode 100644 index 00000000..9596e003 Binary files /dev/null and b/e2e/tests/common/assets/csaf/CVE-2025-55668.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-23hv-mwm6-g8jf.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-23hv-mwm6-g8jf.json.bz2 new file mode 100644 index 00000000..2829dc9e Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-23hv-mwm6-g8jf.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-25xr-qj8w-c4vf.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-25xr-qj8w-c4vf.json.bz2 new file mode 100644 index 00000000..0cc281b5 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-25xr-qj8w-c4vf.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-36wv-v2qp-v4g4.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-36wv-v2qp-v4g4.json.bz2 new file mode 100644 index 00000000..2ca99714 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-36wv-v2qp-v4g4.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-5jpm-x58v-624v.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-5jpm-x58v-624v.json.bz2 new file mode 100644 index 00000000..d3fc9f9b Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-5jpm-x58v-624v.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-7v6m-28jr-rg84.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-7v6m-28jr-rg84.json.bz2 new file mode 100644 index 00000000..3656bc9a Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-7v6m-28jr-rg84.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-9623-mj7j-p9v4.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-9623-mj7j-p9v4.json.bz2 new file mode 100644 index 00000000..80d84390 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-9623-mj7j-p9v4.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-gqp3-2cvr-x8m3.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-gqp3-2cvr-x8m3.json.bz2 new file mode 100644 index 00000000..a9acb0f5 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-gqp3-2cvr-x8m3.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-h3gc-qfqq-6h8f.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-h3gc-qfqq-6h8f.json.bz2 new file mode 100644 index 00000000..e17e633a Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-h3gc-qfqq-6h8f.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-j288-q9x7-2f5v.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-j288-q9x7-2f5v.json.bz2 new file mode 100644 index 00000000..56f407f7 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-j288-q9x7-2f5v.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-j75r-vf64-6rrh.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-j75r-vf64-6rrh.json.bz2 new file mode 100644 index 00000000..46523089 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-j75r-vf64-6rrh.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-prj3-ccx8-p6x4.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-prj3-ccx8-p6x4.json.bz2 new file mode 100644 index 00000000..4dfb39a5 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-prj3-ccx8-p6x4.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-wf8f-6423-gfxg.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-wf8f-6423-gfxg.json.bz2 new file mode 100644 index 00000000..e8de48f8 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-wf8f-6423-gfxg.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-wr62-c79q-cv37.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-wr62-c79q-cv37.json.bz2 new file mode 100644 index 00000000..b94a43e3 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-wr62-c79q-cv37.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/GHSA-wxr5-93ph-8wr9.json.bz2 b/e2e/tests/common/assets/csaf/GHSA-wxr5-93ph-8wr9.json.bz2 new file mode 100644 index 00000000..473856e4 Binary files /dev/null and b/e2e/tests/common/assets/csaf/GHSA-wxr5-93ph-8wr9.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/RHSA-2023_3809.json.bz2 b/e2e/tests/common/assets/csaf/RHSA-2023_3809.json.bz2 new file mode 100644 index 00000000..e81e2f92 Binary files /dev/null and b/e2e/tests/common/assets/csaf/RHSA-2023_3809.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/RHSA-2024_2106.json.bz2 b/e2e/tests/common/assets/csaf/RHSA-2024_2106.json.bz2 new file mode 100644 index 00000000..b86a123b Binary files /dev/null and b/e2e/tests/common/assets/csaf/RHSA-2024_2106.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/RHSA-2024_2705.json.bz2 b/e2e/tests/common/assets/csaf/RHSA-2024_2705.json.bz2 new file mode 100644 index 00000000..2953a62d Binary files /dev/null and b/e2e/tests/common/assets/csaf/RHSA-2024_2705.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/RHSA-CVE-2023-0481.json.bz2 b/e2e/tests/common/assets/csaf/RHSA-CVE-2023-0481.json.bz2 new file mode 100644 index 00000000..6babbc8d Binary files /dev/null and b/e2e/tests/common/assets/csaf/RHSA-CVE-2023-0481.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/RHSA-CVE-2024-29025.json.bz2 b/e2e/tests/common/assets/csaf/RHSA-CVE-2024-29025.json.bz2 new file mode 100644 index 00000000..7f813d4e Binary files /dev/null and b/e2e/tests/common/assets/csaf/RHSA-CVE-2024-29025.json.bz2 differ diff --git a/e2e/tests/common/assets/csaf/cve-2023-0481.json.bz2 b/e2e/tests/common/assets/csaf/cve-2023-0481.json.bz2 deleted file mode 100644 index bf2c4fd0..00000000 Binary files a/e2e/tests/common/assets/csaf/cve-2023-0481.json.bz2 and /dev/null differ diff --git a/e2e/tests/common/assets/sbom/examples_sbom.json b/e2e/tests/common/assets/sbom/examples_sbom.json new file mode 100644 index 00000000..451aa124 --- /dev/null +++ b/e2e/tests/common/assets/sbom/examples_sbom.json @@ -0,0 +1,87031 @@ +{ + "bomFormat": "CycloneDX", + "components": [ + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "externalReferences": [ + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234785" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + }, + { + "comment": "", + "type": "vcs", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "8e4a0f66e976dc4b61d470008b659c46" + }, + { + "alg": "SHA-1", + "content": "3b475d18208f7d675d83f1337cc1ce07fc9bc258" + }, + { + "alg": "SHA-256", + "content": "feeb79331465ee7c1215c36ca7162a0eff0596742cc0a4e3d34d6a1e9f1e3b23" + }, + { + "alg": "SHA-512", + "content": "ee2ae7dc61530d7b058c3cbb804ad2691a8ec089b3fb463710f26ea84da5f49302fe296696a035a5bcc827911ab1de1aa71d6d5ad95327b574491426263f7184" + }, + { + "alg": "SHA-384", + "content": "225e1f6b9d7b8ac32619e175a07974b3a0983f88c9ed593e8bd10f00713c8e103389b3e1263c8062984baac7c717451b" + }, + { + "alg": "SHA3-384", + "content": "b8fb2e14dffc4294ccce649c19f148aaa98b987ab0e7058d6f387d66e097cd8064f61312a40b751afa695860147d9e12" + }, + { + "alg": "SHA3-256", + "content": "eb9d724107a5899039a13f3a7179af756e22b57b8ff2c3ae8b909d9728760039" + }, + { + "alg": "SHA3-512", + "content": "ad6ba82cbe7e5cae072e1750f4f87fc1bf0e1fa88184faf83fd43774ab95852fd52f66f943d162c74d4d1ec2007da8fd1727124fa3edba795744078e46e53654" + } + ], + "name": "spring-boot", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.yaml/snakeyaml@1.23?classifier=android&type=jar", + "description": "YAML 1.1 parser and emitter for Java", + "externalReferences": [ + { + "type": "website", + "url": "http://www.snakeyaml.org" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://bitbucket.org/asomov/snakeyaml/issues" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/asomov/snakeyaml/src" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10746275" + } + ], + "group": "org.yaml", + "hashes": [ + { + "alg": "MD5", + "content": "ea24097928071dadfabafe6e59d7e7ed" + }, + { + "alg": "SHA-1", + "content": "e8520d52edca3d8dc0f366cff520fb4498ec8a5f" + }, + { + "alg": "SHA-256", + "content": "c0f7a90628172970d3ff6d7eaa7a04f73b57290b3b8dba916c8281a76f2214ca" + }, + { + "alg": "SHA-512", + "content": "684fec4ac89559b572ff397f4f260a605a7860a28fec1e4670ebb288c03a06e063727b967ec4cc1597436a9edd7928265942653a379b8b0300a0d1176ae68254" + }, + { + "alg": "SHA-384", + "content": "eb824bfb39b631e395761287607bda289600aa5a25cdff3caaf98878d01578afa9dc3b4c9f05455bdbda8183db3a064a" + }, + { + "alg": "SHA3-384", + "content": "22e2d4bb9439d95dfdf864ef3c2c7bb51e38541675b5004b0f500f6ac8250da28d3e47e3a4cfdf35cd7b0b5187c5147d" + }, + { + "alg": "SHA3-256", + "content": "f4232ac14cd7501a5330d23546133f0bd97d4d41ce81358e81a6a5133377f1da" + }, + { + "alg": "SHA3-512", + "content": "465e2c7ba3f150b0e39c40d64a5ee3ab2f26521ba993824311e9af8cb80ac82eee9e51b32137ab682a23a0a7dfca037b9ec9f2d5a8f3f2d43d6e67f8966195ee" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "snakeyaml", + "purl": "pkg:maven/org.yaml/snakeyaml@1.23?classifier=android&type=jar", + "scope": "required", + "type": "library", + "version": "1.23" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-activemq@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, ActiveMQ openwire and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-activemq" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-activemq" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-activemq", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-activemq@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "description": "Starter for using Spring Boot's Actuator which provides production ready features to help you monitor and manage your application", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233398" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "0c261810569b77b0920c5fd61fbefdaf" + }, + { + "alg": "SHA-1", + "content": "0170a22db6f4d45ecf9f822aaa1cd8240138204f" + }, + { + "alg": "SHA-256", + "content": "aebf645283be6a2bf22ee1453a7934c43be4c1b867e8325ac5cd702d2c34d783" + }, + { + "alg": "SHA-512", + "content": "f3b60b9ea2533ed3ff9544fdef3f5755a168f8c0601fae4369100ba623706e80f7a983e94d7fc348a0032355e8f2ed6c3a3ed902acbee28850856ae54f1b91d4" + }, + { + "alg": "SHA-384", + "content": "3c75ea1368d9bce126ebd854d0a6dd72a8c4d9229c7bed3b9c538d942b5ace10a404ace0b2be18c885a2f38f7ca2d6f1" + }, + { + "alg": "SHA3-384", + "content": "91dcc523b956633fa76e82bfaa8190e1395fda0e9f5df3922dea60a412b09724614906d2ad7a437f7bed014cf4affef2" + }, + { + "alg": "SHA3-256", + "content": "c5fdb2501f01931523d080d9d72bdfcfaa806029a8ff0725bc37f8f7cb7d6f66" + }, + { + "alg": "SHA3-512", + "content": "378120675adf0b11b81c318756b2474d4f876e3d2a6cb0ffb858b57bde79b53c072578290df1be61f8a3a2e3310a7daf15b618bb258f196bbda81e2643d5e457" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-actuator", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "description": "Core starter, including auto-configuration support, logging and YAML", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222425" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "9ad11800c47e2eeca31d3aa71786e8ae" + }, + { + "alg": "SHA-1", + "content": "25943d27d244ce54787d7c583a71f63bf62751dc" + }, + { + "alg": "SHA-256", + "content": "3237ba93e033a965a4cccb0e513091c0ac17269108352035bd2ded268c232a97" + }, + { + "alg": "SHA-512", + "content": "075827cb56eb71a7c1296cfc07213ba78ce8892c9a5b4edf74c3f6fe54d8cecb6256048796aac0576755e17dda81a34e38c53f22585f1c67ec084a3340db7399" + }, + { + "alg": "SHA-384", + "content": "6087a98ed4ee83aec11ee4e16010a6d56263cb245bde787de805eaf925c578dcea0a7871742b7b9eaa55d5ac5e23fade" + }, + { + "alg": "SHA3-384", + "content": "52e7f770ada351636532913c2da49718e459eae33080cacd3e2d1d14111a432269ca5fe2716951b987a8d4d732135b22" + }, + { + "alg": "SHA3-256", + "content": "a3969b872fed1e3c87efac983fb5571dcb591b961edabff2593f422bd755bfe1" + }, + { + "alg": "SHA3-512", + "content": "14b00cc654499abc1d17f68913902f0eb61e1fefaf3b4a4efe90367f522d06f6d093845e51facbc0b972f9fd93aa85adaccf4f62d4c7e2359f0cd857d061c1f0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar", + "description": "Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222431" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "d7e22cdf68e3f183a797e32d0a38380a" + }, + { + "alg": "SHA-1", + "content": "dd9d168879d54b731c38202ce6b4b645b7107bac" + }, + { + "alg": "SHA-256", + "content": "3f804fe76ba8ab1836edffe25d46ca1ed8db61fc7c2cdaef604541e47af327b1" + }, + { + "alg": "SHA-512", + "content": "449cd2ce312e3ee725c3b96590d84e6e0ea4633352ac2d3a246e217de0218e217955272514666a6a40efcc0eae23fa8afdc10f76bb5bf66b2aed0ae9151fd0a1" + }, + { + "alg": "SHA-384", + "content": "8293362cc6c19cd27e11bb02ff42988fa1c24d9a38228c95f8d540541b4ed82cd5d7945741dd1b261673e86d47cf920d" + }, + { + "alg": "SHA3-384", + "content": "1e8d91e55a3f25c21cafa55aa63188eedb441b0ed29487d86720d7305327db0b2bb70a1f716a0439e4d7549cf47a2460" + }, + { + "alg": "SHA3-256", + "content": "bab876f46dbd4c58ea35bb47d3944f9b60b693ff583d0726f6eb43ca8136e854" + }, + { + "alg": "SHA3-512", + "content": "df91ab21ec899ae764da3158a1d74ec20cf8acfd2a280e4038d45c5a51fb0a8762fa8b05ed84196dc14f893193d0f989f269c29ec8bea54c4b700680da928bcb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar", + "description": "Spring Boot AutoConfigure", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222409" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "81163b2e9458712118f5cddbb36ebfb8" + }, + { + "alg": "SHA-1", + "content": "bbd7853adc292b08a98f0029e2353610e1c283e2" + }, + { + "alg": "SHA-256", + "content": "a99bb9819120e15e9360ec2b563fb0aaa26d47df44fbad56f7c42d1c65767fd9" + }, + { + "alg": "SHA-512", + "content": "7fbc29406cfd71ff9e672299814d9deb698acb3273ce847c7806eb5d268108d36cc40c8fb6f3f199a881e85b1f4865aeba961bf5bd8811efb0ee3f7e617453af" + }, + { + "alg": "SHA-384", + "content": "d674d08326f4140f17ee5632ce8a03bb885971b0c8923244a1e0dae991438c9322236d0f5029cd637663b2512799910a" + }, + { + "alg": "SHA3-384", + "content": "d69f32057cc3333eb0b82e102026069994da5115f9c0ba5d1f30b0aae741cbb425b0957a5a64207fe9d106d5a6c4d85a" + }, + { + "alg": "SHA3-256", + "content": "d32810723ebf6225c1ccde53c4a798b42ae9868a86dd67a689bd1a963756c0a9" + }, + { + "alg": "SHA3-512", + "content": "124d39826464a0b489e77f10514801b52f39dbeb29315f078f50b1d6d970826e3cedb21536f13c07d8b5da733415601f6cb14f380f714c85386acf1db77e04cc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-autoconfigure", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@3.3.6?type=jar", + "description": "Starter for logging using Logback. Default logging starter", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222420" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "37d3cb1cceeb9cf02d3cce0b7a091b60" + }, + { + "alg": "SHA-1", + "content": "f298e817022b7bb7c49e510b3524394f9d80ebfc" + }, + { + "alg": "SHA-256", + "content": "3ec6f0e6dd75229916e1ebf724a65d4e53999712c66479cc2f1b2071e518eedf" + }, + { + "alg": "SHA-512", + "content": "dba88860b86c902cbda055647734e3a9e292791d75b6859cfe26a423fd19f8375929869efbc03af7216e4d2773da27414320a55872988de378ae141adb48c90b" + }, + { + "alg": "SHA-384", + "content": "942e8ebd487d2ff759dd248f5bdde830686727b6bf615941e7d1b787a4e386c06bc133c480e0926babc4f9fc5d06e0a2" + }, + { + "alg": "SHA3-384", + "content": "57d91b12a67609580be28ba48fa2cf9a6e471cd20fa185be1dfd01850033040b89afb88cd45d49667d5310f423bb2603" + }, + { + "alg": "SHA3-256", + "content": "eb86b9828e723516c407f520a678cadd7a1e5b34721c06da00ac839ff6fcd590" + }, + { + "alg": "SHA3-512", + "content": "e725978edfe2d6c89b8f8171d94e1bf846e330fc3403d72fe4c94c3aea2537a7552e5a1e6fd2bc25228477fd5097284b72a2c912615d85557ada2012ab48b4fe" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-logging", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/ch.qos.logback/logback-classic@1.5.7?type=jar", + "description": "logback-classic module", + "externalReferences": [ + { + "type": "website", + "url": "http://logback.qos.ch/logback-classic" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/qos-ch/logback/logback-classic" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13215067" + } + ], + "group": "ch.qos.logback", + "hashes": [ + { + "alg": "MD5", + "content": "900da537d3b776b21a7bf8f8c59093d7" + }, + { + "alg": "SHA-1", + "content": "ad4ff8ca015737ade8e8a9de07de565c423e5b7a" + }, + { + "alg": "SHA-256", + "content": "7cb17f6b12fda4ee691916048ca7a9ae4d1b0cdbe68125acf9d6e2dafdb2c17d" + }, + { + "alg": "SHA-512", + "content": "33f6a79b07f5a591dc86d2f2b6afdad5e0f25b62ac37d33876c4da646eadae8533a531d337418606b44f8283cc92a029cc971081132a57ac9985be9dd84438a0" + }, + { + "alg": "SHA-384", + "content": "6eadb982cb08302cb803b53aec91705e6139c7e3f9a004461fd417ad55a8a9ec59e9236238602602e5faea2a4d39b798" + }, + { + "alg": "SHA3-384", + "content": "09321d93e140f3049718c751f236dcd2d8e2d7ea583457d44266d1d2ccbfabb113de10e85fbc36a45a265ca1a7fd843d" + }, + { + "alg": "SHA3-256", + "content": "b5abae89df8549a3fca958e886b4245f659f6e922772e504ff8d38f61cbfebaf" + }, + { + "alg": "SHA3-512", + "content": "2abbedd4d9303b26e8bcdabb74da9d03e5cbd1a11ff56d0835de075a97bfe0afaefd9689d6b0c4f2385eeeef2c15c8a5df7ce3ffdb87442d718e2db704de6039" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-1.0" + } + }, + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } + ], + "name": "logback-classic", + "publisher": "QOS.ch", + "purl": "pkg:maven/ch.qos.logback/logback-classic@1.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "1.5.7" + }, + { + "bom-ref": "pkg:maven/ch.qos.logback/logback-core@1.5.7?type=jar", + "description": "logback-core module", + "externalReferences": [ + { + "type": "website", + "url": "http://logback.qos.ch/logback-core" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/qos-ch/logback/logback-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13215068" + } + ], + "group": "ch.qos.logback", + "hashes": [ + { + "alg": "MD5", + "content": "820ee309e0745d31109b297b5f784da1" + }, + { + "alg": "SHA-1", + "content": "ba0d0cbac3f21abd28faed3b4931d5b49cc5887e" + }, + { + "alg": "SHA-256", + "content": "c32b29af69c201efde686225f8b439f9053e88ecaaac110c02fcbe1b4723fadc" + }, + { + "alg": "SHA-512", + "content": "4d8e577d9403d6816fbbb670059b0e656ad1522d3149e4f80b3a73247fa12cc381013d3b89aff74e30c175c118c435c4a3515b71661072935e1e89999a94d07e" + }, + { + "alg": "SHA-384", + "content": "7df20687765f98c6f80676ad66149c951f3d56bb9bfe8996fac11218279d933bf67736123f9dc5d7e3fb597b29cbc1dc" + }, + { + "alg": "SHA3-384", + "content": "2f8f6afa7992743d67bf99dbe8d6e466cbeb022c12d703063cd3c4cb53c343d697b077c15562f7edf57d82925521ebb0" + }, + { + "alg": "SHA3-256", + "content": "e7c60fffbf80a67a47e3cfe8c02aaf3746f08a24bf5c74b10535a677173e0e3e" + }, + { + "alg": "SHA3-512", + "content": "b1fce1e110cce0b70d5d449c481bc7e6a63fa28874bfd8b762c543c30fe2889e6d8d5728f0e591af3e90459844b1f2f67d143b420f8fc2013caa17e5ade808f1" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-1.0" + } + }, + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } + ], + "name": "logback-core", + "publisher": "QOS.ch", + "purl": "pkg:maven/ch.qos.logback/logback-core@1.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "1.5.7" + }, + { + "bom-ref": "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.23.1?type=jar", + "description": "The Apache Log4j binding between Log4j 2 API and SLF4J.", + "externalReferences": [ + { + "type": "website", + "url": "https://logging.apache.org/log4j/2.x/log4j/log4j-to-slf4j/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/logging-log4j2/actions" + }, + { + "type": "distribution", + "url": "https://logging.apache.org/logging-parent/latest/#distribution" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apache/logging-log4j2/issues" + }, + { + "type": "mailing-list", + "url": "https://lists.apache.org/list.html?log4j-user@logging.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/logging-log4j2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12071812" + } + ], + "group": "org.apache.logging.log4j", + "hashes": [ + { + "alg": "MD5", + "content": "d60143628bb91f9dfa0148c213388b39" + }, + { + "alg": "SHA-1", + "content": "425ad1eb8a39904d2830e907a324e956fb456520" + }, + { + "alg": "SHA-256", + "content": "7937a84055156910234e3b42868f55e68ff4b7becbb6ffd10146f72f5bf54dd5" + }, + { + "alg": "SHA-512", + "content": "86c4dce96d5a929b3adbf2283f7188660831b02f9b04eee55010d132cb50f5677b7bf30c478b432fa2053eb11dbf6744351ce60271bb5e0da3a3f555ed50ad0c" + }, + { + "alg": "SHA-384", + "content": "3d1423da6781764d19ea13c447da9ec5b9bccec4603dbd710b8e4f26fc53d3051a4d3082973a6b20b5edc024f2d4b4b4" + }, + { + "alg": "SHA3-384", + "content": "9c05c76f928c4ce7b1ced6a8642257a9036c7fa66fa9655964bc7e37d98a2443da550b0b62be7d3caa357ca714b6ad3b" + }, + { + "alg": "SHA3-256", + "content": "71f4969e9e3580f190e3194adc07afec56b676a4de3294600e09570497d8c573" + }, + { + "alg": "SHA3-512", + "content": "483c0ea25d108c651dd80d0b694e13084ea78d64831dbd4435117c2d612f2c25d6fe5ee2e6cd5acafed65aab475890529e3b0201adf9d7e366d4449737dd6d3b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "log4j-to-slf4j", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.23.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.23.1" + }, + { + "bom-ref": "pkg:maven/org.apache.logging.log4j/log4j-api@2.23.1?type=jar", + "description": "The Apache Log4j API", + "externalReferences": [ + { + "type": "website", + "url": "https://logging.apache.org/log4j/2.x/log4j/log4j-api/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/logging-log4j2/actions" + }, + { + "type": "distribution", + "url": "https://logging.apache.org/logging-parent/latest/#distribution" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apache/logging-log4j2/issues" + }, + { + "type": "mailing-list", + "url": "https://lists.apache.org/list.html?log4j-user@logging.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/logging-log4j2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12039986" + } + ], + "group": "org.apache.logging.log4j", + "hashes": [ + { + "alg": "MD5", + "content": "bee2e2dcbeeb983bdb6b71c9c3476b6a" + }, + { + "alg": "SHA-1", + "content": "9c15c29c526d9c6783049c0a77722693c66706e1" + }, + { + "alg": "SHA-256", + "content": "92ec1fd36ab3bc09de6198d2d7c0914685c0f7127ea931acc32fd2ecdd82ea89" + }, + { + "alg": "SHA-512", + "content": "2a296246b0059ff5fe5c26e2ba3f48aa99e38d7658d613fbd02f32c6d4262f93a67525e6cc4d767fa5c2ab0e39e70bb3c0d3966d38ea4f01608588c084af3162" + }, + { + "alg": "SHA-384", + "content": "3937cb646009763a94b199a0d6c0065441b9914e2b25e3d58db523874ea760276b445ff300015948d3a813217e0ee404" + }, + { + "alg": "SHA3-384", + "content": "16ea3301ca37fbede2927399209b403066621789c4f1bee531b5153f27b652458900697fb828170d541a5f3b82e77fb7" + }, + { + "alg": "SHA3-256", + "content": "0a3dfffc0f362b0a86ad0cd8b36da313c7500a8bdecb0ad7e628c2637d933548" + }, + { + "alg": "SHA3-512", + "content": "2e230994b8cb7442a2073d60f89c27703ffc78b613dec7891bbfa42e91c95ed684b387ed65df3ee48559ccc06e6877462748f7e2ef985082c8db0741feb576a8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "log4j-api", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.logging.log4j/log4j-api@2.23.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.23.1" + }, + { + "bom-ref": "pkg:maven/org.slf4j/jul-to-slf4j@2.0.16?type=jar", + "description": "JUL to SLF4J bridge", + "externalReferences": [ + { + "type": "website", + "url": "http://www.slf4j.org" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/qos-ch/slf4j/slf4j-parent/jul-to-slf4j" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12722432" + } + ], + "group": "org.slf4j", + "hashes": [ + { + "alg": "MD5", + "content": "410ad2f2230e0150216d86e12a4af995" + }, + { + "alg": "SHA-1", + "content": "6d57da3e961daac65bcca0dd3def6cd11e48a24a" + }, + { + "alg": "SHA-256", + "content": "0f2ec396ea29c9a440890d1f09fdb82fdd574b47b298435764235451c193861d" + }, + { + "alg": "SHA-512", + "content": "0c4c1f62bdaa29e7b6fb41fdd62e398fb92e74e64ab36788be930468947ec94821e97cbc820159ec792f9be4cd3840ce60731be2c7437a734a458cbd2e412184" + }, + { + "alg": "SHA-384", + "content": "3216d143cb8efa77b87e54dc4f9e77f256b21d1c9525f45a26177a7ad264c32d229cf65bf67cf4bcab546663f41e95f4" + }, + { + "alg": "SHA3-384", + "content": "8c551dfa80d6dc591b6376024362884625f259c8ddc4258190386e90a7b2141b40e2ed42b4ab6be93cbb1d81bbf0ffc9" + }, + { + "alg": "SHA3-256", + "content": "ec1e9fbe3de9345a41059a3f45486a24948fc041d86e5455106b06501a6a254e" + }, + { + "alg": "SHA3-512", + "content": "e5912c03ec7a44feae7aff8d56221572be431a1c1b08407090d4187d64c4c8c2fd25f6d4d441005f95410637377f3c0fdee683c86d83a3c78918b3b84267caaf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "jul-to-slf4j", + "publisher": "QOS.ch", + "purl": "pkg:maven/org.slf4j/jul-to-slf4j@2.0.16?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.16" + }, + { + "bom-ref": "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "description": "Jakarta Annotations API", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.ca" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/common-annotations-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/ca-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/common-annotations-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13215096" + } + ], + "group": "jakarta.annotation", + "hashes": [ + { + "alg": "MD5", + "content": "5dac2f68e8288d0add4dc92cb161711d" + }, + { + "alg": "SHA-1", + "content": "48b9bda22b091b1f48b13af03fe36db3be6e1ae3" + }, + { + "alg": "SHA-256", + "content": "5f65fdaf424eee2b55e1d882ba9bb376be93fb09b37b808be6e22e8851c909fe" + }, + { + "alg": "SHA-512", + "content": "eabe8b855b735663684052ec4cc357cc737936fa57cebf144eb09f70b3b6c600db7fa6f1c93a4f36c5994b1b37dad2dfcec87a41448872e69552accfd7f52af6" + }, + { + "alg": "SHA-384", + "content": "798597a6b80b423844d70609c54b00d725a357031888da7e5c3efd3914d1770be69aa7135de13ddb89a4420a5550e35b" + }, + { + "alg": "SHA3-384", + "content": "9629b8ca82f61674f5573723bbb3c137060e1442062eb52fa9c90fc8f57ea7d836eb2fb765d160ec8bf300bcb6b820be" + }, + { + "alg": "SHA3-256", + "content": "f71ffc2a2c2bd1a00dfc00c4be67dbe5f374078bd50d5b24c0b29fbcc6634ecb" + }, + { + "alg": "SHA3-512", + "content": "aa4e29025a55878db6edb0d984bd3a0633f3af03fa69e1d26c97c87c6d29339714003c96e29ff0a977132ce9c2729d0e27e36e9e245a7488266138239bdba15e" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "name": "jakarta.annotation-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.1" + }, + { + "bom-ref": "pkg:maven/org.yaml/snakeyaml@2.3?type=jar", + "description": "YAML 1.1 parser and emitter for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/snakeyaml/snakeyaml" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://bitbucket.org/snakeyaml/snakeyaml/issues" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/snakeyaml/snakeyaml/src" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866966" + } + ], + "group": "org.yaml", + "hashes": [ + { + "alg": "MD5", + "content": "2a1c2ee8923dcd6bd6d025751af5df37" + }, + { + "alg": "SHA-1", + "content": "936b36210e27320f920536f695cf1af210c44586" + }, + { + "alg": "SHA-256", + "content": "63a76fe66b652360bd4c2c107e6f0258daa7d4bb492008ba8c26fcd230ff9146" + }, + { + "alg": "SHA-512", + "content": "1c9c78f0d102ae49a7c06f9e20c6a79a4fb9a2af962230ee6e136bda0caf10dcbb9deadc1c3ab15f74a4982ec8f8266217115e357329fde5b3f4f1858882de0c" + }, + { + "alg": "SHA-384", + "content": "77b1d06e83fd51b83b13372d5ef2eb43c5a66f193db857cee947ae4e900e4a4a0c66a8074435984b9a0b007a69cc2b4f" + }, + { + "alg": "SHA3-384", + "content": "550c4e7a119fd690f750317dc0e20ad7bfc7fa28fa0409fc572bc745d51340a60e9e2ce2af97f458daa561155130bb97" + }, + { + "alg": "SHA3-256", + "content": "d1b540ee39c34ab1484be27d2dd56a14aa48f88668905f9ad176932f4b2cd5d6" + }, + { + "alg": "SHA3-512", + "content": "879ccb34343ebd4ac4888091d97f393c5f75cbb066cf8cf1b9b3eb03a3442cb17326c60bd0db1403aa66ed1f0a5a0d548c96dbce74ebc5c3d6d93950f24b417f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "snakeyaml", + "purl": "pkg:maven/org.yaml/snakeyaml@2.3?type=jar", + "scope": "required", + "type": "library", + "version": "2.3" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar", + "description": "Spring Boot Actuator AutoConfigure", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233392" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "5d9a4afd19e02e8371fac717ec55585f" + }, + { + "alg": "SHA-1", + "content": "a6a6627425609957afe7f726a8a156d485e05db2" + }, + { + "alg": "SHA-256", + "content": "25cebace3b3105886b7d0a0abbedea2c5c9421b3193f8b4ea5ba9aa167f050ca" + }, + { + "alg": "SHA-512", + "content": "097cc134a5a5bc86450ce74c3fca1c6f726150fa61b1c2a4e07418704d76cbef211c7ab8a23f7ff1735cda1abfa243673298b7998b93c560475e6cb28a5982c7" + }, + { + "alg": "SHA-384", + "content": "6d9387da24eca70a10b27925f30b5e10f445d10112a2595fa56f5cffce455724cc5ca1db3b85625f50d5acce8478ee9f" + }, + { + "alg": "SHA3-384", + "content": "c9bd0166202a58533ff0d7572586b23eeca51d2207a437ceee2e23cd42289c2e32b80d0af52b7af344f9f15c5fab8f71" + }, + { + "alg": "SHA3-256", + "content": "a22b3c3631f78a70fd685c5e0233fb6deec4de19d4a3334e9098e80adf4df18a" + }, + { + "alg": "SHA3-512", + "content": "44d9a84a542e79d5a46e2e4f943ea0d13e73fe07b07963f28724e71cd7804256c86bf5cde0c36a3e90733ae8fdee092801521087c29d85c21ff41aab95c41418" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-actuator-autoconfigure", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "description": "Spring Boot Actuator", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233394" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "ccc3013dc48219cfd5d0a4df8ab6a0f6" + }, + { + "alg": "SHA-1", + "content": "91559a6d6e2896b1b7d1558b64d9c4ad2dc4f67f" + }, + { + "alg": "SHA-256", + "content": "87769f8afe45dba7569e97a0f33ff9262aab363bc9deaab70e6e7cd6a3e735bc" + }, + { + "alg": "SHA-512", + "content": "d8c74eddd674f9081bd71d49c914f6c46a9cc48099f3a660ba93e1107382532a004983e546498eb2d8321e82c50e169e9df56764a6a9454b83d31e2fd12eb9e3" + }, + { + "alg": "SHA-384", + "content": "23615f3bfde1df100b682941d0ffeabe7cc655c1d94de45a8983fead6b81d3d0fb5ff0ed8d08bf5c217724b89c1df5b5" + }, + { + "alg": "SHA3-384", + "content": "e16cf92a07efd8cef2b58e2105615addc10ed521777a8c472d445a8b4a036b81a6ba37bcb6bccd9586f08b74a068656b" + }, + { + "alg": "SHA3-256", + "content": "c1087744da305597556a22a2c88180c83c5af1bd0c6f38502ff61f64d4923403" + }, + { + "alg": "SHA3-512", + "content": "71d575fede71440070c9850fadff8889f59a9a1523f71591f4e008368b60a14439b4040752c34bccb9ceda30cac56330129fabddc393abdf937df01ac64be678" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-actuator", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "description": "General data-binding functionality for Jackson: works on core streaming API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-databind/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-databind" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115639" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYBG" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.core", + "hashes": [ + { + "alg": "MD5", + "content": "4832bba8bc1f1cdc780b993b7b279e18" + }, + { + "alg": "SHA-1", + "content": "ad0cd80def359a9f107c1b6ec2e2aab33bfafdab" + }, + { + "alg": "SHA-256", + "content": "51071ed6be60ebfa13511c3cc02ef3a279e8b56b3c45c7b2e32c4f959db6db1a" + }, + { + "alg": "SHA-512", + "content": "01d366268e41a878106b3dd8559dca4719a879f6f3e9429d2c47d02ef54374b9e8e97bec1dd265954f4342fc3dfc1e511039e50344afde0ade9b8818f1e0c699" + }, + { + "alg": "SHA-384", + "content": "3f26f823152386e034ffc00c62871d094f7b06a8fb61890f70443e2bc48fbf1a6c44bba1387f9e66c39126b880e1bb54" + }, + { + "alg": "SHA3-384", + "content": "4011f6eae7cffb925a52d6d073c1ac1f999a38b0b0aa9a9e5ef743ba47ce1713278b29f2e2935f7eeb5d2b2d583f615e" + }, + { + "alg": "SHA3-256", + "content": "63c7e3c4e61f663de8634490602c3fc64985ba0e572b26ff3edb5d03a9c2878b" + }, + { + "alg": "SHA3-512", + "content": "e6c972965a5983b7e3e8e2d2ea7f9e362457c94812fbebe293371f14249e92dc3fdee7aaef10af8b0228a3e6cdbe5925b0b3b96b5f139b214ab10aa7f018a1c0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-databind", + "pedigree": { + "commits": [ + { + "uid": "58937e327d6247260846bb686ca0a78aff8cc6ef", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-databind.git#2.17.2.redhat-00004" + }, + { + "uid": "091d968751ef00150d22a788fe7f45b7cdcb337a", + "url": "https://github.com/FasterXML/jackson-databind#jackson-databind-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "description": "Core annotations used for value types, used by Jackson data binding package.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-annotations/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-annotations" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115632" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYBE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.core", + "hashes": [ + { + "alg": "MD5", + "content": "93e8142c95d99c5066e59e68577b54c8" + }, + { + "alg": "SHA-1", + "content": "9cdd24583b00270a0c19ff5c18ee5e407a46e41d" + }, + { + "alg": "SHA-256", + "content": "2d23990563efe30d8ceb78d0c60994a2c4c9fa8c08460b421cc7ba54e6bf7fcc" + }, + { + "alg": "SHA-512", + "content": "5cc3e730bf3724284e68a86dfd05a423e2e2ef7896660c8368a1e237767496235c6a9b68722d6d98d77481b6d0766f746e3ed941de3cd68334f97ad5232fc083" + }, + { + "alg": "SHA-384", + "content": "d71cd3dfd44b025827de30beee1efacb82fbfaf07189a08f720b63fdca5e89a9a3e82e01eb30a8cf3617a9baf086a6f2" + }, + { + "alg": "SHA3-384", + "content": "a6bd1c3603d9f53889344cd03318fc6810b0edefa34ab9bd75b78c82c9de8988974e3f10540162b598fb621438a57b75" + }, + { + "alg": "SHA3-256", + "content": "3891e6a616f4282b425c9704f6feca7a44b180d60a9c150b657cebb04ccfaf01" + }, + { + "alg": "SHA3-512", + "content": "5751e527ea5c38cba7487714e9bc58b958ad1fe0958b6361344b736b9a7e1baf2fa08f876f1ddcedbbdf91b2ec6d05096fd07960965709021015750e561d3f46" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-annotations", + "pedigree": { + "commits": [ + { + "uid": "d5015ca75a9e55dad7f27ac8334a6c659a3a85c0", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-annotations.git#2.17.2.redhat-00004" + }, + { + "uid": "880607471e641250afa9252e333f32e7229da96c", + "url": "https://github.com/FasterXML/jackson-annotations.git#jackson-annotations-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "description": "Core Jackson processing abstractions (aka Streaming API), implementation for JSON", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-core/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115635" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYBC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.core", + "hashes": [ + { + "alg": "MD5", + "content": "0fd79415bd7c85a2588f73f136f55c23" + }, + { + "alg": "SHA-1", + "content": "001a38577c4831b52f8c71311cf2766d51bd51c1" + }, + { + "alg": "SHA-256", + "content": "c3b74d556944c9e80ef643a1388d285dfff84cd5711d91f925a83a78afeed619" + }, + { + "alg": "SHA-512", + "content": "3e3751d5c22858f8f684846ee70c8630a137338438d6b8e9803468ce807551cc362c62b313e384a20ae31a7f39199f94c118d6f58a6e2e1274966d2bff421bd9" + }, + { + "alg": "SHA-384", + "content": "1a93de3e03ec4a1c494bee14da0bf9ee200de6ccac06f1c84b4ed1ef77e657b65216d6ad6503899115f077828de4a1fb" + }, + { + "alg": "SHA3-384", + "content": "8a3a0ef2c8916d7967f98be077962ca2bb305556c8fe4b4c0aa02c2c9ffc634f6dea8bd990a5f1e362217164d61c9b0a" + }, + { + "alg": "SHA3-256", + "content": "3999bd976e925b412a2642daa9d15815675cd14de2d2e44f49226424007989e1" + }, + { + "alg": "SHA3-512", + "content": "c3d11671c9cefef5b54ba7cf7aac72695c053081e82015b4c484b2ff5334e1d3b1782e36c4df7f0d9fa7f737f64a7b66d62db498921e6447b27c63584410ef71" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-core", + "pedigree": { + "commits": [ + { + "uid": "f14d8bbae60ad25eca0a5ac32beadf417b9e9279", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-core.git#2.17.2.redhat-00004" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "description": "Add-on module to support JSR-310 (Java 8 Date & Time API) data types.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-modules-java8/issues" + }, + { + "type": "vcs", + "url": "http://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115649" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.datatype", + "hashes": [ + { + "alg": "MD5", + "content": "7c4235e6f01ba4f7d2f15847a33b2e07" + }, + { + "alg": "SHA-1", + "content": "745065502ab06fcb4e567f60ca5cb6c3f9ad38e4" + }, + { + "alg": "SHA-256", + "content": "68c1ab126e06efc58893eb5c59acf249a8584ca5d874d1981e29c9ddbf095bf3" + }, + { + "alg": "SHA-512", + "content": "083f4a7a1908b9f73a21179a3d7e3cc8deb8e102f48420ea0e61e645da9d641ecac42c8a36945c290f6a7e5cbb610fe1d466b787849d309dfec2f3b38cdc5b76" + }, + { + "alg": "SHA-384", + "content": "b9bd13e6a33f2e1e31de2fc68beb726be72a73336feeec4641e4223786a4382c0791fb6f6febcc922ac7b2c7d43010a8" + }, + { + "alg": "SHA3-384", + "content": "4dd4eef7cc0982038868a0d62f8074296b04cdd0d47b1aa8e67b1c7aca431d0b5adf95c0e6f52fbd32cb31b10398fdf9" + }, + { + "alg": "SHA3-256", + "content": "65f11cbc24d494fe0ce4f00baa38e5b9b776f485234c44df8d4391ba710b77c1" + }, + { + "alg": "SHA3-512", + "content": "5234f70bec2568cd1f82b1e0f7607fcc472e4a39556dce37ceb5a123cd16537b0d1bc2b0cca77feead153d5e4eb22a3c3e7151443133890c7b9b4967e03fc9d7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-datatype-jsr310", + "pedigree": { + "commits": [ + { + "uid": "e4189aaef87a709d723d271159f09f777b4aa92d", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-modules-java8.git#2.17.2.redhat-00004" + }, + { + "uid": "6599655a7b501bc616eae98891611603133bd6ca", + "url": "https://github.com/FasterXML/jackson-modules-java8.git#jackson-modules-java8-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar", + "description": "Module containing Observation related code", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/micrometer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222389" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "49f15ecb3addceb424dc8f9cf6f41a8e" + }, + { + "alg": "SHA-1", + "content": "9405fd60ddfec412f5f529bdb69733aadaf8eb9c" + }, + { + "alg": "SHA-256", + "content": "603ae660af91ffb0bb0f951686bc4a946d780c503c4b6d20b58f11cca4b16a4d" + }, + { + "alg": "SHA-512", + "content": "6044cab771d5beb93bd0b06d15fa1187f235f42522b7d5f252f2211a993f9d9c103cb29df115cc2e197d64d4025c8d77f77464a86236d1b82eb4f32177003240" + }, + { + "alg": "SHA-384", + "content": "a844da7fdddc8229b9591a2c678b5a915bcbf637d67a17f8a39e830187d9a44148c6d519615b85785ebd78ba98d3a168" + }, + { + "alg": "SHA3-384", + "content": "6e239af7a8280593adef758d87323f584be2036b317b0c4e07cf2ac21248001004909e37208c6e2b96c8d0ae317c10e4" + }, + { + "alg": "SHA3-256", + "content": "5d9064c3f80ad885a811a6015be00868869ac0f29fde562291ff4674809421ee" + }, + { + "alg": "SHA3-512", + "content": "c3a4a3379b3e2959790d3a96a441c20be8c5f98a110b8133634ee3afffb44739bf4c01042039e95103e1efeea4578632d9636d67442e9b038283e772ab78ec08" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-observation", + "purl": "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.13.8" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-commons@1.13.8?type=jar", + "description": "Module containing common code", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/micrometer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222383" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "413133c51a8e2c9b0941f5b8b177d2b6" + }, + { + "alg": "SHA-1", + "content": "b82bcab1961fe8521138b03b0ee68e8d075e3517" + }, + { + "alg": "SHA-256", + "content": "fced162b2c2001d9ef6f72068367791061eeaac30718a67e679ea5b4fd3bd118" + }, + { + "alg": "SHA-512", + "content": "97b1e5e81cee40f7a8d59927b6f6b31c32eae0fd88fe359092799bd61ed21360c453e286c7a3acdd32aee0411db0eb8bcdfb429c10fa7a4526d8598bcad63090" + }, + { + "alg": "SHA-384", + "content": "ab0d862fc8b13188b4331a0615b0385eb062b00e777d36ccfcc62702d364f051de7b9ab36a68df40abef8fda678e098e" + }, + { + "alg": "SHA3-384", + "content": "d29ee9a5a54b1c3c901d05398a8549f966cf880e2d06f1c0d6f297fac33e360bac1ce10fb640b8d2b30241eefefa71aa" + }, + { + "alg": "SHA3-256", + "content": "40572eb5e45e0ac4863769430782e46afc1a4230e1c6d39802f76b4907d59b54" + }, + { + "alg": "SHA3-512", + "content": "1f37f0d5094e9667b8422b8dc8aa58e5ade134d29045d0d6f59ee87cac2a894ba451b7cef7f0b673e94169e52b0622db2aeb083dbebe30ec77416921cf7aac86" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-commons", + "purl": "pkg:maven/io.micrometer/micrometer-commons@1.13.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.13.8" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-jakarta9@1.13.8?type=jar", + "description": "Module for Jakarta 9+ based instrumentations", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/micrometer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233358" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "54f17d8bed4a3a00967b46b7b48f165b" + }, + { + "alg": "SHA-1", + "content": "fb992c97ea9d8a6df7bf23a76c1f8f15a3d05992" + }, + { + "alg": "SHA-256", + "content": "c78043ac9a82626725fe84094c51e944759cc302f0caf3b3fc62e8179e4efb3d" + }, + { + "alg": "SHA-512", + "content": "8bc5cdbe9687facb7014eb99ac9cb76286c795f47b2903152970bc864f519b849ed59b97283312b19bf595c491b831ad296e12c8d4fc274ef942cb582b96b815" + }, + { + "alg": "SHA-384", + "content": "a16966de489acbe9c7fd709073e5e4630076f855530e7c9c39133bc4c8bd9bd4dfca6566febf84521e2d9f0528cc714a" + }, + { + "alg": "SHA3-384", + "content": "b5da6a1c08d9aae5b58c137a413349f60de2897fb82cb194a2036c291ae5ecf957bd0864f7207b44f381c36c16801b2b" + }, + { + "alg": "SHA3-256", + "content": "da3f188fbbafcd55a2f6ba6e276bb1a824d8d050af4d21c144d0454ea466427c" + }, + { + "alg": "SHA3-512", + "content": "29f09e8fb17748a39ac087fc5ba30deb4791250f15a289bac74aa12d78c1595d0fd9319c2a6bf7844afe860c854692b792d3b2ee76fc2baa80fda868ff6627c7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-jakarta9", + "purl": "pkg:maven/io.micrometer/micrometer-jakarta9@1.13.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.13.8" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar", + "description": "Core module of Micrometer containing instrumentation API and implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/micrometer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222386" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "d24359868669232f073a456764ad51cc" + }, + { + "alg": "SHA-1", + "content": "4fbc98384a4f790c30e75b2efa3e07bd7ef5924e" + }, + { + "alg": "SHA-256", + "content": "3cc32699ec82e58cc3847813ece799b82a51b39890ec194ea4612c16e0118c09" + }, + { + "alg": "SHA-512", + "content": "5c18573ae56cc0d8f29448805bc3d894c957a3d1698c2e592ab3824f3cdcf221ff264f4cd289f1a0a1bc9168a3aece9791a25d801514eee38cccf6a02e34ca29" + }, + { + "alg": "SHA-384", + "content": "1a4860b92801cdc3ebd6558a4d7da354f48016c4e2d68bb800ee6ac266ea0b831dad9c1fd1e8da1e98edc2693a55733a" + }, + { + "alg": "SHA3-384", + "content": "c2b2eaed71055a243c519fc852ed761ad915ac6bae4d3af3d4bdbb5d947ccc254194f5b5792ad1ca78472dd9bad42faa" + }, + { + "alg": "SHA3-256", + "content": "ea36801831caf23a7abd126e40638802bc213e7efb4eb188f13906421a140672" + }, + { + "alg": "SHA3-512", + "content": "f6256a20c3eeee1737bbeedf03bcdef7e5e8ff8cfa036bc3bc9959e4a72f042e46186a11c4a86124ff5f9ab362c6f7c4f79e6a5204392b6a7bbd7eaa2990cb98" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-core", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.13.8" + }, + { + "bom-ref": "pkg:maven/org.hdrhistogram/HdrHistogram@2.2.2?type=jar", + "description": "HdrHistogram supports the recording and analyzing sampled data value counts across a configurable integer value range with configurable value precision within the range. Value precision is expressed as the number of significant digits in the value recording, and provides control over value quantization behavior across the value range and the subsequent value resolution at any given level.", + "externalReferences": [ + { + "type": "website", + "url": "http://hdrhistogram.github.io/HdrHistogram/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/HdrHistogram/HdrHistogram/issues" + }, + { + "type": "vcs", + "url": "scm:git:git://github.com/HdrHistogram/HdrHistogram.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12579863" + } + ], + "group": "org.hdrhistogram", + "hashes": [ + { + "alg": "MD5", + "content": "41f807bf0c681d6f692c408a6e217eaf" + }, + { + "alg": "SHA-1", + "content": "7959933ebcc0f05b2eaa5af0a0c8689fa257b15c" + }, + { + "alg": "SHA-256", + "content": "22d1d4316c4ec13a68b559e98c8256d69071593731da96136640f864fa14fad8" + }, + { + "alg": "SHA-512", + "content": "fb28f1bc3a3d4430474ea87a0833d56dc3d1303c98918122d93c630ebdb0d1323bbf8feb9ffdc7dddd1908105858e6959bdfdd3889ca5803cecde93a974ab6b7" + }, + { + "alg": "SHA-384", + "content": "fa19cf4674dee37cb5114689cccafeadbb7989e17768b814cb431806a0f69c7b37093b6e100430bd571a45d87a319758" + }, + { + "alg": "SHA3-384", + "content": "fc0a9e2e5284bc2f911c5e2fdf9eec6cfa1973b6cfb1362822580d6c8768c73ebd1c8056b6e4e5302940f6b5ec4c74b7" + }, + { + "alg": "SHA3-256", + "content": "79af553410abf4d3bbfa64374dfdf8777ce49d28b4c67a615e6d4a78e97d0498" + }, + { + "alg": "SHA3-512", + "content": "5b2b1795ed1ea55b5a3566bb1f4170a4367b7893256809fdb428df9405857c8454196badf3681abaf536260ed6f293c096a3f3c9d72f0f04830e8fe71d49410a" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "name": "HdrHistogram", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.2.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.2.2" + }, + { + "bom-ref": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar", + "description": "LatencyUtils is a package that provides latency recording and reporting utilities.", + "externalReferences": [ + { + "type": "website", + "url": "http://latencyutils.github.io/LatencyUtils/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LatencyUtils/LatencyUtils/issues" + }, + { + "type": "vcs", + "url": "scm:git:git://github.com/LatencyUtils/LatencyUtils.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/173415" + } + ], + "group": "org.latencyutils", + "hashes": [ + { + "alg": "MD5", + "content": "2ad12e1ef7614cecfb0483fa9ac6da73" + }, + { + "alg": "SHA-1", + "content": "769c0b82cb2421c8256300e907298a9410a2a3d3" + }, + { + "alg": "SHA-256", + "content": "a32a9ffa06b2f4e01c5360f8f9df7bc5d9454a5d373cd8f361347fa5a57165ec" + }, + { + "alg": "SHA-512", + "content": "bb81a42498c65389366205f4e07cee336920e2f05cc0daae213f2784b1d0ce9a908b038daec20478f23eb00b2bf704f96c5b00f63c99615193ab2a3cc4a9f890" + }, + { + "alg": "SHA-384", + "content": "16ca4640dc9d848e6c6d15441897e1b5a9f27f34207b0bb456dd54d8f267b73b348092e548e78634144de44ba3515205" + }, + { + "alg": "SHA3-384", + "content": "406c2b5c6f64b0c090568e479b5e6136a04a4e77f8eea65d32b4e2b01deebcdf6a0a851240cdb740c25b5a5e61e6c179" + }, + { + "alg": "SHA3-256", + "content": "50ae828358301033542fd7c412e86ee318d5451f89a182e2a679aaf18099d26d" + }, + { + "alg": "SHA3-512", + "content": "456c337b9fb385579aae707409ed6a04d08e5fc87b1a46733dca617c22c625bf253dc4747e0cdbf5e7d8b48102d2938cb482b6b688a79aab645a7459c592258f" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + } + ], + "name": "LatencyUtils", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.3" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "description": "Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233406" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "4d1854652b39f152c0211199fbefbdb3" + }, + { + "alg": "SHA-1", + "content": "5e0e5134589b1f55dd56a8efd19f32da6dfee969" + }, + { + "alg": "SHA-256", + "content": "7472b213baa197a47c45dc1b39367db4cce6696c9f63d197794c3830a61ead08" + }, + { + "alg": "SHA-512", + "content": "8e4a412f4e89b0a1e48d8c5e83f7ffc4132978cb3144a21f370e4dd8286172a86cf19e2919a2e6e50c43e76a32901e50436e94abe818c88fcd1c45e5d7169fc2" + }, + { + "alg": "SHA-384", + "content": "69accee929bac75227064a95e6b8f46dceea37fcb9a13b81483d7652d07c472995544ee3022b3a85c024b3306f3e5a36" + }, + { + "alg": "SHA3-384", + "content": "59195df7d07dbc2b364c034d71dfaaf0f2362ce558bb86269509e5e51bd5c94899a2b62107de19e0cc35062014c2af7e" + }, + { + "alg": "SHA3-256", + "content": "563b0949b71ca5ce0f4791ad49287bc787821e9d12aabcfcb78112bc98dafca6" + }, + { + "alg": "SHA3-512", + "content": "d2408ff8df9cd2de3edd8057803558fdcbb80e6cece224e53eb36e0bf2453f46bfc1e5fb0f9ce3f6ee16fe60e486d2d80446d0d2656a1550efc5acf840baa2a0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-web", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-json@3.3.6?type=jar", + "description": "Starter for reading and writing json", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233400" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "d771c1e47a0782be4498ac4fcc0ef735" + }, + { + "alg": "SHA-1", + "content": "5eda802fb8cf64d4ef945293529a2a200db0bdab" + }, + { + "alg": "SHA-256", + "content": "38e3a185dfa59bd9f0088177076d9f03b2a45172d006f7979f439ea51655efd7" + }, + { + "alg": "SHA-512", + "content": "44986dad8c2ef7eafe3b988a5d15e834ed05d19e09619ac3357e4d295b1abe67e6ec56564886569213936d4b8c68db5a1427da7b2e9c186ad16cdc8ca7a03920" + }, + { + "alg": "SHA-384", + "content": "9d9925dd4e358a25b93c37ed853ffb10e0d13ebeb18a45e8779899d291b7b185b3f0e360a215ebab0132f408de8c107c" + }, + { + "alg": "SHA3-384", + "content": "3c05079916d0356b9a105948b8215c19fc9f7511ead729aed87dc1737946dbc87d894ca81dfbd8cc56037936da870d36" + }, + { + "alg": "SHA3-256", + "content": "2dc5b3e20dda2ab569421238822c38b356d6ba249cf41b99d434ea6b3d18416f" + }, + { + "alg": "SHA3-512", + "content": "17ad0baa0987dd5ea4c6f56f46f595b178f3d6eb610db321c70c226ab53c3dcc80931ecb90e6f2a0aea4837fadb0675af2335653f191a6f8474d665e8487456a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-json", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-json@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.17.2.redhat-00004?type=jar", + "description": "Add-on module for Jackson (https://github.com/FasterXML/jackson) to support JDK 8 data types.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-modules-java8/issues" + }, + { + "type": "vcs", + "url": "http://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115654" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.datatype", + "hashes": [ + { + "alg": "MD5", + "content": "647af67254d0b11261dc962babcb18e0" + }, + { + "alg": "SHA-1", + "content": "d3a6506403f0ac2a58a02c71822f159f0a11537d" + }, + { + "alg": "SHA-256", + "content": "c58c99b591ced915471a75882571f3617c22b3d5a9ebd12d4541b3b8786dd864" + }, + { + "alg": "SHA-512", + "content": "c10728930f57b0270d031ee5d3de609188d4ba751d7acc71b8457e6834b67f7de5039d28b504af42fa4faa2c01801f13f93c14a6366251fd6966b06b25c98ba3" + }, + { + "alg": "SHA-384", + "content": "708a6c9d47619f1a5f520fe19fcd36f9c643d3a64235f9a81380ca7db56b6a67c461931a974558bdb94b774aa3e7a23b" + }, + { + "alg": "SHA3-384", + "content": "fc2a83f20771122bc748ba997bb5dfeed074255f9cd07d42e12fc707be144e1bc0230ad3495927577d73758535b51e05" + }, + { + "alg": "SHA3-256", + "content": "45b885970d86c33a678176d468b77087a2d634608a7f4dc81150560a3e9154bd" + }, + { + "alg": "SHA3-512", + "content": "a2038f854b0e7dd1f2a46c4c54fa95fe9141a1c764061f202cd457fdc668efc47a140c09d3826cb3a1f74030a0c8ffbc501e41ec3c68dbd2a2d4ad2167f56729" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-datatype-jdk8", + "pedigree": { + "commits": [ + { + "uid": "e4189aaef87a709d723d271159f09f777b4aa92d", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-modules-java8.git#2.17.2.redhat-00004" + }, + { + "uid": "6599655a7b501bc616eae98891611603133bd6ca", + "url": "https://github.com/FasterXML/jackson-modules-java8.git#jackson-modules-java8-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.17.2.redhat-00004?type=jar", + "description": "Add-on module for Jackson (https://github.com/FasterXML/jackson) to support introspection of method/constructor parameter names, without having to add explicit property name annotation.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-modules-java8/issues" + }, + { + "type": "vcs", + "url": "http://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115655" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.module", + "hashes": [ + { + "alg": "MD5", + "content": "428e8926fe07596ff6ec9b371665fcb8" + }, + { + "alg": "SHA-1", + "content": "fd9aeb960954b0d9618ee7d9ae4d30bfe3bfab89" + }, + { + "alg": "SHA-256", + "content": "a3260beb017253502428fbbc40204cd03c252a7cbedc6c4fa2c35297fe033603" + }, + { + "alg": "SHA-512", + "content": "a89b209f85015209578dc6020336dfe7c962c0bd9b203856cfcc384b4da65a3553ceb2fe2bc5f9bac3f736b01162f280e5309f020073a2c057546ac63ce2886a" + }, + { + "alg": "SHA-384", + "content": "8c8f66930d0c2e4457fc9378253389f257ea433ff37e76180cdf5667c29520c195a8dd72bc8c3e6b9216803d5d9ae779" + }, + { + "alg": "SHA3-384", + "content": "b59ca8475bf2783d68f04fed3ea65f77b5dc229922d24ef5fcb594ad3143b4ef290899ad32a6760f8674eb217f80a9c3" + }, + { + "alg": "SHA3-256", + "content": "cfc582a067e71b15dc06e480d6fbc651a040b3702f27400b6ae3a39dc91ad4d5" + }, + { + "alg": "SHA3-512", + "content": "eca66f0b52caa7a255976d2db3b4afeb61e9ca0ebc2a82a7756720b319618c2f4ae24abac988da4f87ac9e1202d27992f5d15b707b8a6c34910f7f54af9588df" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-module-parameter-names", + "pedigree": { + "commits": [ + { + "uid": "e4189aaef87a709d723d271159f09f777b4aa92d", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-modules-java8.git#2.17.2.redhat-00004" + }, + { + "uid": "6599655a7b501bc616eae98891611603133bd6ca", + "url": "https://github.com/FasterXML/jackson-modules-java8.git#jackson-modules-java8-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-web@6.1.15?type=jar", + "description": "Spring Web", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233422" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "b3eb072bf203ca60b27c9e6fa6bf027f" + }, + { + "alg": "SHA-1", + "content": "5c899f76044c59d779f0d0094b795890b39b9bee" + }, + { + "alg": "SHA-256", + "content": "5b7549f36b86728989aeeb00436cf3685b74898db2ea363bb8c9f9426e048309" + }, + { + "alg": "SHA-512", + "content": "7b144da7fd0975ae9a452663bb1ad340a090945ee3f904cd89834ff68bc05e05709d568037b397b10b41ca9fcb616bfa2a39ad285a31444be99777cc06d1344a" + }, + { + "alg": "SHA-384", + "content": "27f8cbec2daabbd1d0e2e768030aafa186fa1dd73d6a778370617bd06325b9cefa1ea14e55b2dee8da426f4a7e2cd8c8" + }, + { + "alg": "SHA3-384", + "content": "c318f99da8ff0bbc396300b9d60e5546b6585ade33dcb3532313ccd6fb0f98f1d5fcd599e8f2813ec8b7028593cd3f0a" + }, + { + "alg": "SHA3-256", + "content": "ebcc7ea4c6e1e782dd2d17df38991e1ff555f1b391785cadb612aa805f862a3d" + }, + { + "alg": "SHA3-512", + "content": "2ee611bf225b75c67809bfa1950e768b2a646e51d9f5449a21d31d14ec6cb3419787c0ef9f18e060be4e8f40b955b5671e036511e300aecbd742f3ee51395768" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-web", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-web@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "description": "Spring Beans", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222440" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "bc61db4c654d9d27a8aa4dcd271f015e" + }, + { + "alg": "SHA-1", + "content": "718d9352079c51e961f500cf79531eccaa2835bd" + }, + { + "alg": "SHA-256", + "content": "72dc41f2bdf4f7044a8510ca51ee2ad7051ccc0b44f12a11cb2239f2e5d021ed" + }, + { + "alg": "SHA-512", + "content": "227ea10c1d0c242599c32f1f30552a314a5a5d183093133777db3ee9cf64110e907b278ae84d41321f7d853e86ced0ed8f3d1fb51cea767a3d66c45c9fcb465e" + }, + { + "alg": "SHA-384", + "content": "419a9775cc72ea05fbc28ab50703798c71fa1f1ed5ad8d732c7a289ce01b53d091120ac819702336fdc464375f8e0653" + }, + { + "alg": "SHA3-384", + "content": "09a7926f660686d8ba2d77b10d040390fc807a3b7c589ad2d828ca6ec7e4e0bc21c15598d9bee63736afa683a7ecb7e2" + }, + { + "alg": "SHA3-256", + "content": "632a9c5f023290de4f34466a8f29b1dbc743d708f3fbb48bf7cc9a3f94f204d9" + }, + { + "alg": "SHA3-512", + "content": "e5245c8ab42204aeab452d81d072177f81805ba1df299320edef1418d66f4c781fa5531ec19c97b41f29ca386ee05c301727cbc6359135adabb310816a3e29ca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-beans", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-webmvc@6.1.15?type=jar", + "description": "Spring Web MVC", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233424" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "308d017581bdce7ce3c78e15f31d1851" + }, + { + "alg": "SHA-1", + "content": "ce0cdce80d76fe0cef37c38d50ff9a756a6e6d4f" + }, + { + "alg": "SHA-256", + "content": "a3e8556a0d0506637ff44a068588836340ac079463a1f2f313246eb7fdc7b946" + }, + { + "alg": "SHA-512", + "content": "9f6460a3b3423b746e70500757fb16d9a0841c785ea2d78aa1777d8c560d42257f89b68f4bd12c5ca4ea4cb76542c04e4663c478dcfc2a490362a7fbc4ddf003" + }, + { + "alg": "SHA-384", + "content": "c70e8504dafa3be299ce6d7a3b6660dff0b4f72711cfe0350c11f7f956c64f52a5655bd8e45f87450cc6c5edb12990f3" + }, + { + "alg": "SHA3-384", + "content": "7787b5228e581f150834557260e79d6e496e213f2e06de7df7b87c729cc71b4c5d9516fb1c4a1cabed83ac8880168229" + }, + { + "alg": "SHA3-256", + "content": "e0142229909e7617787969835257d81403552eb1f20e946bee5fb675057183af" + }, + { + "alg": "SHA3-512", + "content": "d2e476ba631874949e2d68c15209e76c178ddc7c6cde5abb3df855cc817d50f509caef4bba7b64e09c6fa08ec4afdccc464a42837d97bdffebf4e953f30bcc42" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-webmvc", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-webmvc@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "description": "Spring AOP", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222438" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "a02f55ea1b4c176e5b52a09400f212a3" + }, + { + "alg": "SHA-1", + "content": "0855f9e2e60055a05784246cccb28d95b3d93043" + }, + { + "alg": "SHA-256", + "content": "5158126886d6963ca37c6b3e4d4f850cd018be778683f7de1639d5929a37b6ad" + }, + { + "alg": "SHA-512", + "content": "4398896f9fd7d00fb729508f0283ba75162b6df789906ec6cfaf8f8912f66f67cee74bc3df66049c68355552cb3a10ec2ad5585c7d2a8d7224becf48d2ac3a7b" + }, + { + "alg": "SHA-384", + "content": "a9e3eb92caa4fa42c272c87d9dee2aabeee4a996a3de8f9737df7ab66b3785b0cbf9b1c38015b9ac4d630aed3326b9f8" + }, + { + "alg": "SHA3-384", + "content": "e8cc933fae9800702f5843bd164c0908b03ed5b27ec76bb2d7ba3838004a26e8739a9660a23eb6e470da333e37de207d" + }, + { + "alg": "SHA3-256", + "content": "b2140a472894d0c51c7a65bcd7e0f805263fd8d49587b2a3f737862cd6c698dd" + }, + { + "alg": "SHA3-512", + "content": "05878e928927839892990ab7c153c102855d7d8bb9d7f3865454ac5ea1ffe71d0e5d2c977374b7fd35751c672fabd29d6de598ac7018d3d96369e80c1a5ba620" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-aop", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "description": "Spring Context", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222442" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "44d94c5cbba935b96802b855d99efe49" + }, + { + "alg": "SHA-1", + "content": "cade913f34b7c977ec52d64510111c37c26445a7" + }, + { + "alg": "SHA-256", + "content": "15b0399c3082f19a9e250b0b681683a19c5b714dfdaab1ebf4a6b185079dc548" + }, + { + "alg": "SHA-512", + "content": "153b414c03a8aad903b6e1b2260826b0b73425c0f90b24ed476079d6c7cc0ac1e2c6b394af1e439e12e8e345f99c0887a14910b03274432e79a5d095ca1b0f7b" + }, + { + "alg": "SHA-384", + "content": "40dbd9afbf1c10fedf31b96a730601fdafee602bec14658cf4425bfbe428cee4f492027dcccd9fe6372a1f7fc9a7df5c" + }, + { + "alg": "SHA3-384", + "content": "c7a3954035f078cd26cc846120e2bb92b64f0a0b6d01265b04f920c91f6856272cd3c6139937aa1ced8f7490fba80913" + }, + { + "alg": "SHA3-256", + "content": "7b89b8abfc19d54d6dea74c83d1769d1b5221eb4c40d8fc37e21b4de0e109464" + }, + { + "alg": "SHA3-512", + "content": "33eda2c1261bf4f2dd0e3700580d0899c919e6c5cd5a9f5031270388ee52a0cdcfb71a93e8b702e2c23c3e7bb511dbf8f20b29aa8b5c3a57bd368b7ef2ad4422" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-context", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-expression@6.1.15?type=jar", + "description": "Spring Expression Language (SpEL)", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222446" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "59dd0c26697d6a55980b11f5985f7b85" + }, + { + "alg": "SHA-1", + "content": "3c469934957d8e6803ca685317007ada4de2265a" + }, + { + "alg": "SHA-256", + "content": "b11a304337b9603578d8763f6208955315a1cc484f880ba96b37d1438ff12e53" + }, + { + "alg": "SHA-512", + "content": "6c1ab438aad48b3a506f7f39904a8f9db1f852931dcd71ec641e9e60985a847f622e4f5785b0ac102a210c224f7cd74bd065e6cd6833c654e89f007ddd20bd09" + }, + { + "alg": "SHA-384", + "content": "1b6687f8f847f02a88c293753d1358820a4e317b90e67ba871e701bb73b68e87ffa8e8aa2bea8a6012087432369e9659" + }, + { + "alg": "SHA3-384", + "content": "0ce2e6dd8c1d884184f6c7236d55a390f45d2c3f0adbb8298be7ac7831a1ebaff33b258a2affee9a6f6b21d0cf84943e" + }, + { + "alg": "SHA3-256", + "content": "c4ed349f62c6c89e6ea85ba35ff38f2484d28cd057a9fea01b209fefee871945" + }, + { + "alg": "SHA3-512", + "content": "0911318f9b2de4e52ec8b93352c264d1d567edc8701e8bb29afc7d19677a81c4d978b7a8bf7d8b5419fa408729eb931b9ce2a3cf431e99cd14e8b594a8cba9fc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-expression", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-expression@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "description": "Starter for using Undertow as the embedded servlet container. An alternative to spring-boot-starter-tomcat", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235141" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "26b29c420039876a4e03143d2c9380d8" + }, + { + "alg": "SHA-1", + "content": "87b63daca333001366aa16f10a0ae9c28066197a" + }, + { + "alg": "SHA-256", + "content": "ef05e2b9bccea5c6c63cf12f56e9321c83a170747d3c810950dd839dd065a594" + }, + { + "alg": "SHA-512", + "content": "9a7fce9081fd6161c67dab265a7c346e46f4003587b70abdcdbd123fda8e12d1c5e854e08a0624c42c5836d1da87e22d0a456a381ef96fa270f5a4d4630ded9c" + }, + { + "alg": "SHA-384", + "content": "385ebdbd61d27e341671f4d3bd8e925196188bedd16a43fb30e02f5ee3142634b908edefeebde81e255b6ab94fefd3b1" + }, + { + "alg": "SHA3-384", + "content": "a84000b9f3f204e1052e5582d0958c20d85b372d63b6fc3494fe1faf692046027d8be77f1e6948608f6071c37200568a" + }, + { + "alg": "SHA3-256", + "content": "7e738639bd0131f616c06442a4b9a61e4f735002580026c171257d7790e88901" + }, + { + "alg": "SHA3-512", + "content": "e7de4cfa2d28f7502ac868492cd6b430b0a9c31ed4397375cda6868de4c0d1d6df7548895c7776fa110723fc6470ca801eac0f41b67532e91c0964baabf21d81" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-undertow", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar", + "description": "Undertow", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/undertow-parent/undertow-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/undertow-io/undertow/undertow-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13089077" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMU4EV26XIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "io.undertow", + "hashes": [ + { + "alg": "MD5", + "content": "df2605e16b8fdf89d11d1aa378d0254a" + }, + { + "alg": "SHA-1", + "content": "632d7a969cc3e2f8ecdc100e2fefbc896597bbf3" + }, + { + "alg": "SHA-256", + "content": "976b6f5ec9e8d9d522c32def5c69a40484823bddc36be47f684e5ddfef16e9ad" + }, + { + "alg": "SHA-512", + "content": "9513e86ebae94fef598039b84db831a83901de407b48284ae2777951e783982a1d472db601da441a8508549c44c2c80bae8373100f12d6d76466c65bddebf5f5" + }, + { + "alg": "SHA-384", + "content": "87324334e62c6b027dd9e54e04a84fa36c79874047e870ad36eb01c8964d4c5c95229133762d8460f09ba7f65ecbb032" + }, + { + "alg": "SHA3-384", + "content": "d42dea599f1e44a2f237e7e0acd96966cfa5a1c9241f87c4d8929c60db85dd3f0fca936560af75d95fe58683f83f21d9" + }, + { + "alg": "SHA3-256", + "content": "18d33284bb34a60c5714f5456a882f47ab7b2596499e117821d173499ddde9bb" + }, + { + "alg": "SHA3-512", + "content": "bc551d1ad4bc8539dc57398d82ad87da50412bd20a222b70a8ef49924985ddd720e8b34bb7553c0c434c8151f97be188bace79bb2b9b0a9d25947d8f0dea7c74" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "undertow-core", + "pedigree": { + "commits": [ + { + "uid": "057b113fc26bcf21bba5038a1f2b3ff8fed20b9a", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/undertow-io/undertow.git#2.3.18.SP1-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.3.18.SP1-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "description": "The JBoss Logging Framework", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/jboss-logging/jboss-logging/tree/main/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10678175" + } + ], + "group": "org.jboss.logging", + "hashes": [ + { + "alg": "MD5", + "content": "ee7e24e94235c13f53392ecaa53f938c" + }, + { + "alg": "SHA-1", + "content": "c88fc1d8a96d4c3491f55d4317458ccad53ca663" + }, + { + "alg": "SHA-256", + "content": "7b119460de174195aca412dfed52ca0bbef0ece26c2d74301b6172cfadf4ff59" + }, + { + "alg": "SHA-512", + "content": "cf3d5ccb791c3cf52d6af509056a1027cb6182a552b6fc66a593cf119812ba229f52d73f26f11555f248c8ef7ac45c11c27acb3c56dc73e627feee8b53275766" + }, + { + "alg": "SHA-384", + "content": "1b266fa1a354f8ec938066db3f41b778c421d67150919213946c5022310a45fa37f7d81cd6ddbd3e0fdc97fb9db2beac" + }, + { + "alg": "SHA3-384", + "content": "319213adb97dd49a5e1e2d76ac0f906624707580f7997c25c9ab0771a95a2d5110393d2c4cca4ef463b9ba6735d6a22a" + }, + { + "alg": "SHA3-256", + "content": "0b8a39595fd082a12943142c8a856210a9edb38d7c4690b10e0fbf4b5310f517" + }, + { + "alg": "SHA3-512", + "content": "d338491f03dddd461255aca2a054d414cfcddc8cc02546eb946941e3a2b6cb99b5a6e0f295059e34a0ed381d456c22ccce03644d7d19d41d99c2a61651b1e4a6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jboss-logging", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "scope": "required", + "type": "library", + "version": "3.5.3.Final" + }, + { + "bom-ref": "pkg:maven/org.jboss.xnio/xnio-api@3.8.16.Final-redhat-00001?type=jar", + "description": "The API JAR of the XNIO project", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/xnio" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "http://github.com/jboss/jboss-parent-pom" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12548679" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BA3PLPA63EYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-j11-mvn3.6.2:1.0.6" + } + ], + "group": "org.jboss.xnio", + "hashes": [ + { + "alg": "MD5", + "content": "ac331ec48ed64f00214ede665844c040" + }, + { + "alg": "SHA-1", + "content": "30ccb0f32901c50093fbd7e65c2a7e8e84c7dffa" + }, + { + "alg": "SHA-256", + "content": "99db6090ed8cf5258cb3bbd5bc8f52c0c42cb962e09658c813e2d9254b308e39" + }, + { + "alg": "SHA-512", + "content": "5e13411db5d85af3d6fb8fa6c59518b2febfddaf4e2c77ed94fccf395821e50fa53335f1e01c64fbf93ed03cbfb807ccdf7561f08779c3f9a7d0cbdf996fcf6a" + }, + { + "alg": "SHA-384", + "content": "3866191ff50e1a4aefd1b3023bfb232c93b663d48b7a491533d2eee1c55f5035848dc90ccc1f6925cd667b68e0d2b4be" + }, + { + "alg": "SHA3-384", + "content": "e01fbd5d98fa98d3b094e28a14078d31d3c5adb0638443568124c5e633d7d58b7f5fc77e591b0c2c67705bdf52006fb8" + }, + { + "alg": "SHA3-256", + "content": "221969dab6ffaf34e467dbd74b707cad2439bfd5e63eee71f9b483117ff5c2eb" + }, + { + "alg": "SHA3-512", + "content": "e368e091b43b83154f339683cde177b23f742f505343a1fbf4e036fc7876ee2b2c221e5e1e4cfd95140b7ae04f2039c2cb8ce0166fd97fe46f588e6a6f6d5bea" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "xnio-api", + "pedigree": { + "commits": [ + { + "uid": "34408fc794708cdaf538dfdcdb7a16d63cb501ed", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-remoting/xnio.git#3.8.16.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.jboss.xnio/xnio-api@3.8.16.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.8.16.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-common" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "http://github.com/jboss/jboss-parent-pom/wildfly-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/4024000" + } + ], + "group": "org.wildfly.common", + "hashes": [ + { + "alg": "MD5", + "content": "56d909f0e3f28084ae38c7604bf23192" + }, + { + "alg": "SHA-1", + "content": "735ceee5616d5143bac1bc740e444697073c002f" + }, + { + "alg": "SHA-256", + "content": "9fda3caf8bd528dec56ebc70daf78f5a9ff5d0bfcea8b3e41ab7ae838747e46a" + }, + { + "alg": "SHA-512", + "content": "69c5aec2c4748038b81ee7f72ed48b64325a82ff754dabefb2c389cbc50246cc6183cd0033a08d6261aaeb521be91ca48a7c95d03a2ff2103608862d0bf7b732" + }, + { + "alg": "SHA-384", + "content": "6170f65967fb2a127116565565bbb753804ed334bf2b9eed7ac7324f6fdcc2d2506e4b3027a895f1ba688b475e2f082d" + }, + { + "alg": "SHA3-384", + "content": "a4eb206fb1b86b5f0282a6e5fae6318a2e4eb83508c2eb29845c5a69378ca016ee03b2e1f90dfe7cd6f2955c1d4a8284" + }, + { + "alg": "SHA3-256", + "content": "274608ed87e6907fa3512d8d10f3640e0bdbad63cc886d76ce2ddc2177d5174f" + }, + { + "alg": "SHA3-512", + "content": "049e7e3673e3a7cc21643277d7cf306a9ca9135ba8847faba80d06ebfe5087a967cb42b4c1201da786b04ebaf0f6f0d7837231dec20bc3be5d83ae6d27d8b125" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-common", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "scope": "required", + "type": "library", + "version": "1.5.4.Final" + }, + { + "bom-ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar", + "description": "Library for supporting WildFly common client configuration", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-client-config" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "http://github.com/jboss/jboss-parent-pom/wildfly-client-config" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/640264" + } + ], + "group": "org.wildfly.client", + "hashes": [ + { + "alg": "MD5", + "content": "77f13d40c0fc70d05b48d43ac8ae2581" + }, + { + "alg": "SHA-1", + "content": "2a803b23c40a0de0f03a90d1fd3755747bc05f4b" + }, + { + "alg": "SHA-256", + "content": "80a4e963ce94ebb043ecb0f2c0e77d327f23dc87d81350b863752eedfa2c3bb3" + }, + { + "alg": "SHA-512", + "content": "3f442478c57f7dfac7039f6c7ae014bb2d45cdbd690ee631a3349edbca414adfe1984d065d1439f9b1546fa15fbd032c3a6bfe008f1ad50eef74201467b9f55f" + }, + { + "alg": "SHA-384", + "content": "fd6285cf6398f0395c538873c4e52292c467d5f752f47fb8040224b37ec4e39e410136bf040c33ba8b42b3d6cda58a05" + }, + { + "alg": "SHA3-384", + "content": "a3f92b65c9914eba7d47ac858ff37d512852691df29d68dd01587e254dd370404a3f0243adf7821a677f1b88904124c9" + }, + { + "alg": "SHA3-256", + "content": "6e6e537598960954ea18998ed44b696a21a662bfd5268c58dd1fab739882ce34" + }, + { + "alg": "SHA3-512", + "content": "94f46f167853b771ead83d87a93e826512575cb5ef505b841b28d4d818a39f5fe0cbf8b9b155719b4b43569a6fbc4f2c36ab14bfca8fd43ab64963a547fdce74" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-client-config", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.1.Final" + }, + { + "bom-ref": "pkg:maven/org.jboss.xnio/xnio-nio@3.8.16.Final-redhat-00001?type=jar", + "description": "The NIO implementation of the XNIO project", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "http://github.com/jboss/jboss-parent-pom" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12548678" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BA3PLPA63EYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-j11-mvn3.6.2:1.0.6" + } + ], + "group": "org.jboss.xnio", + "hashes": [ + { + "alg": "MD5", + "content": "570fbdb3e42ddd5ff8e94eec4e411b72" + }, + { + "alg": "SHA-1", + "content": "ed8cc8a08f5eac26bff0194cab97c26f0d2d9297" + }, + { + "alg": "SHA-256", + "content": "5beb35be972a3397e4706164238473a52b2d400c445e34f7bdc747c0c113d6a5" + }, + { + "alg": "SHA-512", + "content": "8e3dafe547b885c6270dfbdbefe52a9f8a2358edd103e90acda2cee685ff6e2b1c204755c337af7801e900d0ae8eb00c78884254c51f768d4560b0f3e35c8f43" + }, + { + "alg": "SHA-384", + "content": "0065e6e2fc3d7a9872917b4a52442bdb62943c5df0381d14b45e0cef9bf2c28f3d67e7adf0546c9e342b2e974ad341e8" + }, + { + "alg": "SHA3-384", + "content": "7879c1a8205e417ad91d74dec7bf02d2f141e3fbc21eb7368053837cb9cb7f7f55256075561a5cf25a986d48b51b0511" + }, + { + "alg": "SHA3-256", + "content": "91f299e8be34d93cc1ecff3cab52ca5301acb6edd29f9395886ddbad3c49f1bd" + }, + { + "alg": "SHA3-512", + "content": "06b09fb319d324694a3ddb69c411977b5fd9e4bc34277e2e72cf3ab76aac00aab5b455606a448dc4f0245e20bbda12b619790bca6bce9100009eebc8b716f05b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "xnio-nio", + "pedigree": { + "commits": [ + { + "uid": "34408fc794708cdaf538dfdcdb7a16d63cb501ed", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-remoting/xnio.git#3.8.16.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.jboss.xnio/xnio-nio@3.8.16.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.8.16.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.jboss.threads/jboss-threads@3.5.0.Final?type=jar", + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/jboss-threads" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/JBTHR" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/jbossas/jboss-threads" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9674975" + } + ], + "group": "org.jboss.threads", + "hashes": [ + { + "alg": "MD5", + "content": "5d440a615acb66963806e7e7808bc322" + }, + { + "alg": "SHA-1", + "content": "dd23d4788b3eafe9597ef3fe028e46ceb293ba8d" + }, + { + "alg": "SHA-256", + "content": "e150b67a7f528525fe68dd60841520c22d59e0a831ea237c45a704de48b990b1" + }, + { + "alg": "SHA-512", + "content": "3117f03857adc697064f89c28df1bb4553bfd676f4d5396dea5d95ae085a41488ac966aa8e4bde2a61049c8147ff3b03bb0ada6a1a149466b910fbc8dc50d86c" + }, + { + "alg": "SHA-384", + "content": "e76a18d56032514c65db046c3b2d7eade4c46465bb415f130c15902065ec77186afef2b0967c732c4997f20f3a0f3afb" + }, + { + "alg": "SHA3-384", + "content": "e34d305439b57f9f189ea90aa9464dbb573439b38f8e6c2b3a0df576edddc59cb0dbff07f39fcd3f29456f30aac2bc08" + }, + { + "alg": "SHA3-256", + "content": "bf64fa44e22492b3d7d4a4ac5ae447e5f65bc81022cfce4bb7028268c1fd3874" + }, + { + "alg": "SHA3-512", + "content": "d2de9ea2e0afab8aa0e07f2b0a9faf186490d78a0e7d3782601c6819ee9e3ae553f2641c492176eb592638994d62e8eb859086b2a092463d9af323635fa106c2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jboss-threads", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.5.0.Final?type=jar", + "scope": "required", + "type": "library", + "version": "3.5.0.Final" + }, + { + "bom-ref": "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar", + "description": "Undertow", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/undertow-parent/undertow-servlet" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/undertow-io/undertow/undertow-servlet" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13089079" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMU4EV26XIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "io.undertow", + "hashes": [ + { + "alg": "MD5", + "content": "161c86c574ae145b4fcbb28a90bd8e7c" + }, + { + "alg": "SHA-1", + "content": "edb706feaeb0e2a87abb818211acb450a3581b38" + }, + { + "alg": "SHA-256", + "content": "939dab4fe41b82f69fba8e6ecfdc212369f288b6bfdaeac68b9966355344af53" + }, + { + "alg": "SHA-512", + "content": "8fa916e501311c2a8ac984b1ee63f541c39c229f05d536b068124ac5de06c9c58e2e3a19108f57cc893e66bec180d166623077d3cbdb392bf469f0c0346e48e5" + }, + { + "alg": "SHA-384", + "content": "9c4c49c07201bd858b91db0784f71499d8afa98aea0f97c620aec8ccd89889499aa981e1a4db5c27d4608437824fc975" + }, + { + "alg": "SHA3-384", + "content": "bc69f5543ab5e1a2660be0f9775db3b93153ed18c1179c39e66b0ecb1a8cb4449d55005e6937722a91ed5ee531fa8f68" + }, + { + "alg": "SHA3-256", + "content": "f7a4a3b2f7325462c100fa2d502589f4a6ba2794230eda795d0af85fdd394262" + }, + { + "alg": "SHA3-512", + "content": "4c09719b0f19acc40d20514763191106be01154840b3a97a969f65a6d4b561ebbabf630c713e4fdf6208f3f63d0a4c60fe4ac5042b25c5ae6c6e17c9bc30459f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "undertow-servlet", + "pedigree": { + "commits": [ + { + "uid": "057b113fc26bcf21bba5038a1f2b3ff8fed20b9a", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/undertow-io/undertow.git#2.3.18.SP1-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.3.18.SP1-redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "description": "Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.servlet" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/servlet-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/servlet-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/servlet-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8556463" + } + ], + "group": "jakarta.servlet", + "hashes": [ + { + "alg": "MD5", + "content": "4bcb3175ed9b7aa3f038d082879ec2a8" + }, + { + "alg": "SHA-1", + "content": "abecc699286e65035ebba9844c03931357a6a963" + }, + { + "alg": "SHA-256", + "content": "c034eb1afb158987dbb53a5fea0cadf611c8dae8daadd59c44d9d5ab70129cef" + }, + { + "alg": "SHA-512", + "content": "b810ce040ed0671a3161fb197845f3ae750cd38c474ef54c351b7b127ff3b4d624a26c33450c62474f42c1cde21c65324cda63b1b3ea0515a286e0bcb0c0c9d5" + }, + { + "alg": "SHA-384", + "content": "2f02e56f5b0a3a7191b6cea6e3b872d8d29503299751c6dabfdf4d61b1ae2b431be9c13801083cd6e516b8f52ab38a95" + }, + { + "alg": "SHA3-384", + "content": "373855d3aef3be1d54046c33d76daa0a3db62b04e0bfa5957670f17ede4f74426b9d858159e67eb6abc723278f272c23" + }, + { + "alg": "SHA3-256", + "content": "cb8c3221eb78148915a75489df9d25665cd41b8949ede82c5ee7a792b1b32fe0" + }, + { + "alg": "SHA3-512", + "content": "689137c5de2c0972392e181a4f03e5a1b3f839238839a28442da9aa91f4e5c2980eb48a0107c0fbcd2d35a44ab8a4d698fa197e0dadf264f3e547043fc15dba3" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "name": "jakarta.servlet-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "scope": "required", + "type": "library", + "version": "6.0.0" + }, + { + "bom-ref": "pkg:maven/io.undertow/undertow-websockets-jsr@2.3.18.SP1-redhat-00001?type=jar", + "description": "Undertow", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/undertow-parent/undertow-websockets-jsr" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/undertow-io/undertow/undertow-websockets-jsr" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13089097" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMU4EV26XIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "io.undertow", + "hashes": [ + { + "alg": "MD5", + "content": "4a5e0074e7c85c75506a81e11a266f41" + }, + { + "alg": "SHA-1", + "content": "8b24ea8a4257e8db4ccadd415373e93bf396bd10" + }, + { + "alg": "SHA-256", + "content": "7c2c0f24661ee9bae5aa022d6761ef3f63c7a52a19650e17536ed3c607c4be5c" + }, + { + "alg": "SHA-512", + "content": "4c315011105da7b2071fb7d7ad282c987c52def45df98d37c03e1aba02b3745e49cba8bf8ac0a9b2173f99de8c926a5a0ad6ec6fc922b0f4b5a8ba6d35dd3fe8" + }, + { + "alg": "SHA-384", + "content": "7270387cbe033dc572192a12fd16a0daa8794b705d48e8668180cad9dc3510c801b89dcd568ecf04e14de6f27aa8d378" + }, + { + "alg": "SHA3-384", + "content": "9bf1cec4364c65581c2228d46716dc18bee720311760700cd78278f553aa2a29137ed5a2723e2e8062c12ba5c9185db5" + }, + { + "alg": "SHA3-256", + "content": "f1c17530962b6b863d07c94f696ce479d562d016bf060eff65c0826fbe9fe40a" + }, + { + "alg": "SHA3-512", + "content": "ad797a73c730d3d4ea007bc78939595ca8df6df3729c2d1258357a1e03c2d5828cd68f3852058fb4d41115f9892a52e7cd588ce44115e8f7ede9e7f6b655f80e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "undertow-websockets-jsr", + "pedigree": { + "commits": [ + { + "uid": "057b113fc26bcf21bba5038a1f2b3ff8fed20b9a", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/undertow-io/undertow.git#2.3.18.SP1-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.undertow/undertow-websockets-jsr@2.3.18.SP1-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.3.18.SP1-redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.websocket/jakarta.websocket-api@2.1.1?type=jar", + "description": "Jakarta WebSocket - Server API", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.websocket" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/websocket-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/websocket-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/websocket-api/jakarta.websocket-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10816932" + } + ], + "group": "jakarta.websocket", + "hashes": [ + { + "alg": "MD5", + "content": "701d642108df6aa73b5642649250d797" + }, + { + "alg": "SHA-1", + "content": "d3614cd4fe86803efe3f94d57f17925d3edff712" + }, + { + "alg": "SHA-256", + "content": "beadb92c26d04da653f6d2db2532b549b7a0dbe59c6e22c23e55bd03617f0120" + }, + { + "alg": "SHA-512", + "content": "c15acedc295c022a000a67af1abf619b21f250b8ecb1a635b32d8f96c301a839b6ced40c703d1179dfe549366055c1d76429e5b06ada032ccb5fea592a0291b3" + }, + { + "alg": "SHA-384", + "content": "e012efbee628d2b9e6f96c0a3116072c0a747b7d8fe586f92ca6cbe893d3ed3a4f5c6739fcfeb9d1042c1c7c5a5f51e2" + }, + { + "alg": "SHA3-384", + "content": "ed35c4834db8e908eac3dc40723590a90cd1443a7cce1b3c088d23167cfc721e6640a36adf9a8f97eeb5d3cae24e665a" + }, + { + "alg": "SHA3-256", + "content": "143a64c3822d47d967d96f66640d55188c6971c67a9ddbddd301509feb182bd6" + }, + { + "alg": "SHA3-512", + "content": "a1f1c75d614dae53f32e815291115ce781a44af3f1dca4b31c556781d9484e38e90744905e6200aab59a0efa6eb6bc6a6a783db1714f52fe028c5fb96ab0e82b" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://www.gnu.org/software/classpath/license.html" + } + } + ], + "name": "jakarta.websocket-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@2.1.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.1" + }, + { + "bom-ref": "pkg:maven/jakarta.websocket/jakarta.websocket-client-api@2.1.1?type=jar", + "description": "Jakarta WebSocket - Client API", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.websocket" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/websocket-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/websocket-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/websocket-api/jakarta.websocket-client-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10816934" + } + ], + "group": "jakarta.websocket", + "hashes": [ + { + "alg": "MD5", + "content": "461614ea765fa6313dc676fd9d694227" + }, + { + "alg": "SHA-1", + "content": "bc149b7e22d6b2372835a3124cbcf24924982874" + }, + { + "alg": "SHA-256", + "content": "e8fe8c1dff948385a461dbc85dec5467cbe350f065ec1a0f3bfed53b79e7b102" + }, + { + "alg": "SHA-512", + "content": "5aca58e267a1848eb7c09432a47819278317d3e85f525d88ea0bd6a41ae6788d7021b0be21e28f5ec74c454ff264e361b2b8a6232231c65e46659a6d70dc0ed2" + }, + { + "alg": "SHA-384", + "content": "8bfef254a54fe841a50cad7af57978df8f93a1db9dd542c5adc5ed8f1fd482e461966c51f755c19600e4425ffe350f9a" + }, + { + "alg": "SHA3-384", + "content": "549fc859e964ae98acdb248fa94ffedb66b69ff73825705d4c65968dce9c017f3e06c964e6c991e473e91232289e8299" + }, + { + "alg": "SHA3-256", + "content": "b208f9f6b35354a3ec8e2155c21137a10cd14762f23873a77b5cfe2ebcdb444f" + }, + { + "alg": "SHA3-512", + "content": "df7ecafc8f581f35e77da73e285c49f702a57b844ee9c2a05e2210a0f5740d945e2a9e55ff813c8c9c7c5c0ba629a76fd4302a6e8db3637e133bfd30b63defd7" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://www.gnu.org/software/classpath/license.html" + } + } + ], + "name": "jakarta.websocket-client-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-client-api@2.1.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.1" + }, + { + "bom-ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@10.1.33?type=jar", + "description": "Core Tomcat implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://tomcat.apache.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233368" + } + ], + "group": "org.apache.tomcat.embed", + "hashes": [ + { + "alg": "MD5", + "content": "d6df497fd1d8f5df99989408d8ee850d" + }, + { + "alg": "SHA-1", + "content": "6cdf9afcb8577309fae1181e0a5f2f8cff559d97" + }, + { + "alg": "SHA-256", + "content": "9b32f9a3dd12c894a0b42aa71bada4a039f8245bc1fbf6f43a9191a4d87366c9" + }, + { + "alg": "SHA-512", + "content": "5601691c13d6b82f0cb32e0688ff17fc68925d46e3b3a79daf30e666b5f3e0561ba48893091490e3568c0e41bb23d2417598302abff0b252d4f1bd858aa4a747" + }, + { + "alg": "SHA-384", + "content": "9e764a72ad7ca400b9545448a866e5c10fadc9c4a23f93a8301324649f85a09d653ace95b05b7233344bcee07564705f" + }, + { + "alg": "SHA3-384", + "content": "138fa64c5427937f1b9bf2e45f3d617290f46937f272c30e5dd0cd702f0f9bbabf23f1c762608478a1ba9cf1c0dea89d" + }, + { + "alg": "SHA3-256", + "content": "2003d0a6b0267a99aeb53836a8b6590e4e399f1db15273962f87d03c9ca13b98" + }, + { + "alg": "SHA3-512", + "content": "a5f86ed5e1e5e928aa485ffec8810b5a045cd9b930fee45e4b346c480c8eb96ccbdc5c6f5bc6b7541703d14fecfc1edbdf4408879dec7552ef827eaa90ca943a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "tomcat-embed-el", + "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@10.1.33?type=jar", + "scope": "required", + "type": "library", + "version": "10.1.33" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel :: Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/core-starter/camel-spring-boot-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/core-starter/camel-spring-boot-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234997" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "504cb4a49f0aef07ea3df84e4c654bff" + }, + { + "alg": "SHA-1", + "content": "9017eca3c3593a5020d5f53bac5eceac99ca657e" + }, + { + "alg": "SHA-256", + "content": "cc0db1e6a71617aa796bda79d7783335d23ce564dc08693a72cde0b9ce31fc3d" + }, + { + "alg": "SHA-512", + "content": "0c4ab70cb52491a255033819caa2adb338e852eba436523d1db6911d965445fd892740f64fe595c3159353816518c496fbd09e6ad115b9de8a52d7e3915ec295" + }, + { + "alg": "SHA-384", + "content": "89e97d24c05783013774fcdbda0778c573fe61b1c17c18d305d7d50f0d3a538f1789ec47d7b2c1782a85bfbcc1406723" + }, + { + "alg": "SHA3-384", + "content": "89df29c6fd464183c7157ad86aaa8149f410b772625c1a8bd86b34345457bc2370d2cc86e904b579030fb66ce4926d11" + }, + { + "alg": "SHA3-256", + "content": "5005a7dd625af634c50676116e9283816f6c98552867bcd05ae95d4c37002bc7" + }, + { + "alg": "SHA3-512", + "content": "4f74ee05ef9c9c3a71c6b969284fc52dd28be96ce4eedc8ceb0298f0c592836017ef58073bb40877c9c63c61fc522d698d7494ba720412608fcadf101c6bf2be" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-boot-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar", + "description": "Using Camel with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/core-modules/camel-spring-boot" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/core-modules/camel-spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234860" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "586507fd0c7522b2a39c5c5f8a19384d" + }, + { + "alg": "SHA-1", + "content": "88ecc078c947144c52024b6b1a3b420cd95607d1" + }, + { + "alg": "SHA-256", + "content": "d141b519717c70e333ec28e8f4d08ceef5d58906f09eb1aa9c07c0cdc2687b68" + }, + { + "alg": "SHA-512", + "content": "83dbe013d7597136469b2c2207cdb5f241de01419b81fa2b8b8f98b138390572e87c01cde8acac4711c90a295f01c36a3939dab4b94fb66b80e1d1aff884dc53" + }, + { + "alg": "SHA-384", + "content": "564c2c847b8ad4ced80feffcb1fd0d7da0d85bfb1f4e6714d46aca635f72cc78d967a5a8169a0a60253487b0570aa99c" + }, + { + "alg": "SHA3-384", + "content": "c0258a162dc793c161ea7ac124f758547da6a22437abc05811a0a2f01947b55d0dd0d56f7b31808570197b102fe2d965" + }, + { + "alg": "SHA3-256", + "content": "144a5c88eb25b414d0c382a05e099d66c042ac7d81e6c40c9f19252aa0ecb8d5" + }, + { + "alg": "SHA3-512", + "content": "7bd4f45d28fa34f1d00a5976e8d316626f40d7a4ca8fe330d69f15aac1f57983218b24ada3f2da66a5a4dfce2dcf4358b0fc8d87de8df683455266045e076a52" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-boot", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "description": "Camel Spring", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-spring/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-spring" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233693" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "0cda1ca263642035453dccaf8d35ca75" + }, + { + "alg": "SHA-1", + "content": "780a7b3d35c358a4f8e76639316d78596a2b5421" + }, + { + "alg": "SHA-256", + "content": "cf99a223303447022c390237f26e1e9f50ac6c599d16f6bbdeb105fb2a966b11" + }, + { + "alg": "SHA-512", + "content": "c0a715612931255eb63cce07e694bad34f28afde7a7e088cc539e93ff04b10b2702ae2765050150e37cfc48f8762c94629d1f1744f9cdb7e9d0a9f6abb831372" + }, + { + "alg": "SHA-384", + "content": "b9bb9a8a015b4f9a60ac8c8492e7db1f69a5d60a869b55b5479aee400af720bda5b9ccb041a60ed7e9cba2e8739296b0" + }, + { + "alg": "SHA3-384", + "content": "8b07830f9363423b7cbc68efd41445ca250e5742b92abff2431a66775217c35b73ad232ba5c232d6865a020123302bd7" + }, + { + "alg": "SHA3-256", + "content": "aed0613b735eb9c430217e0573d3ab5ea825b936503b04c3d889b19f9539d35b" + }, + { + "alg": "SHA3-512", + "content": "d7d40cc9379703aecd6cbe4f69c64e9a70c825ed530387295f08a71664aae3f2e2ea0e307a1291bbae05039c5343207ae3e430f95bf4441969e644b060cf6e32" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "description": "The Camel Management API", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-management-api/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-management-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233933" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "3a3fa3d74ec1dc3490857cc03ff05fae" + }, + { + "alg": "SHA-1", + "content": "c008cd4862466678a82295eb1c5b5edffc477e6b" + }, + { + "alg": "SHA-256", + "content": "6833f324463182e68361e57ffa21dd16769ef417d791d5423fadb72d2e8bbc28" + }, + { + "alg": "SHA-512", + "content": "e04f15b3634c4da6680dd9cec878ccae0fd993587c605026f0a7673f7507f347ea723d11e75c88f3704fc76b04b8dbb93bb9ac2ec9b595c04fb40894d7957665" + }, + { + "alg": "SHA-384", + "content": "4234e0995f4d59d9502b8bb7565478266e27583e362f4be6dbda2474b5c9511396857a814a63102db2c21655dfb0a0ca" + }, + { + "alg": "SHA3-384", + "content": "9b839bab26b8c1038e3010914e365ed118c01e08e6f736e2ea46e576873a39a0c7b8ca302fdfa77767712d21e714443a" + }, + { + "alg": "SHA3-256", + "content": "4485d62c45a0899c8bbdb3307a58e913b02a6b659a0e2f43218e64315df433a9" + }, + { + "alg": "SHA3-512", + "content": "c4b54e5e2671f1856242f77601355d43ea4c64dba2c1e41b43fe2d67efc5fd6a8face41f978adc42b28dbca39e649ba39659ed98085696ebcce9f486a46fb70a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-management-api", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "description": "Spring Transaction", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222457" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "4dac9a42de8af369385518e769ace35d" + }, + { + "alg": "SHA-1", + "content": "5b9eeb832d403f441f4b82da2bd583cc95c294b1" + }, + { + "alg": "SHA-256", + "content": "65b889eccd3cce4c1846d1ba7ef1441d11b156e0fc96d4c0eb7a84966fbab495" + }, + { + "alg": "SHA-512", + "content": "ae60fdbe5a20515092e0b735c2bc29634965b6511d662ec446f497a86fe92e2243a74eef92bf31f19931206295197f43cb0fab7ed7c3bc357b833c23ff923566" + }, + { + "alg": "SHA-384", + "content": "0a855c068a3b651a7ff9c56570477ee4d4195a288a1743224ad2512f3bc69034ef03f505cabf205fc0458443ddafcc36" + }, + { + "alg": "SHA3-384", + "content": "cbaf5ff12f16cd74357c97865c201fb021653a4d4d5ffa19a8cd6eb03c46691cf5349335186452636372fed753b56fab" + }, + { + "alg": "SHA3-256", + "content": "c47601a1c6da454c2ec8a7e57d83444bb98b15aea76e3645ed32290fb28db4eb" + }, + { + "alg": "SHA3-512", + "content": "5883ce9643797f76c836249c0438c0d34781d2b4861c3b97d43c400e22f0132e82bcd51e2ba9a93a4dd691fc31f5f538fcd3340425a9cd6c7faa56fe58c21c0f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-tx", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-spring-main@4.8.0.redhat-00017?type=jar", + "description": "Camel Spring Main support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-spring-main/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-spring-main" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234176" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "911486877d0af17f6b5a4f365ecd23ca" + }, + { + "alg": "SHA-1", + "content": "f76519796a5ff895a79b1996a5ed50cb84416669" + }, + { + "alg": "SHA-256", + "content": "2f56bf9b3515f99d0ecd1ffadce6e3417c26f021f2464d2499130522d383f9ad" + }, + { + "alg": "SHA-512", + "content": "2c227ba8df302e9107007d748dd09adae8d548bf387a5efc714c17c2ba871e1aec07bf6dd6e9d9f13c4b03ed4b5961cdf09ca05b159414def4281dbae97e60d0" + }, + { + "alg": "SHA-384", + "content": "1cb977cdc33bf191fa89cf6bb868dd4bce1fef96bdace171e0042052dd5e99d9d777fef29fe74cd6cdb418d19829cb61" + }, + { + "alg": "SHA3-384", + "content": "24c4c18c35a7e67d695695f8121add96e17b2075e65dabc0354abdeff386df8237208296e9bf1a302578bf98c6842fab" + }, + { + "alg": "SHA3-256", + "content": "646b27969d85853e527df225de4c68208ac7d8a2e71b5dfe5e45882b8016b16c" + }, + { + "alg": "SHA3-512", + "content": "d873d06d5bc147a84a615a1e5b35a6b5660a89d8f11e37a9e5b8d8df7ddc1cea8bab1ff6857ba203dd3630ff2078ba876d02a9215ab868c177cc4d80cf2d1369" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-main", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-spring-main@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-main@4.8.0.redhat-00017?type=jar", + "description": "Camel Main", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-main/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-main" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233786" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "8aad898104ef46c19c888f3e7e151c05" + }, + { + "alg": "SHA-1", + "content": "da39c4cdef56f1291c84b4247067252484e11e2d" + }, + { + "alg": "SHA-256", + "content": "92762bb5be72a34427fb49859924ccee4efabef6b020dc928b2bd2aacf60c60b" + }, + { + "alg": "SHA-512", + "content": "7b5f4073cc575332968a564f20806d619d7bcbb53f173c10605bd5986444dc2b6e2ff3795c67dc79e067b163006dbe93357e6c18f265be994450ea9ebebd3773" + }, + { + "alg": "SHA-384", + "content": "943c05b474970eb5c1e5c57c4c1249fae3e573bd63d27deb8fc556580bf2ec8d4c6b58c62aa84d9ce67da0dbc3a927be" + }, + { + "alg": "SHA3-384", + "content": "679be7fb20f2cef6b8bf33dfccf2f64b23231544231a7a0aa3294764be2b3d2314da5e12d79e7dfed7fcdae0c75adc3d" + }, + { + "alg": "SHA3-256", + "content": "ab2dd72b69c3afa2886d8dabce9702d956efb4b059980086ad5e20619c788585" + }, + { + "alg": "SHA3-512", + "content": "dfdd5f60b47a06513a6e6f7e64e085aca70b394235d930886a7bc39435828fcebd5bab7f7ea1c8e8d0dcfc7559236f70c3ff48de9152c0ae2e10288f545e9386" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-main", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-main@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-base@4.8.0.redhat-00017?type=jar", + "description": "The Base Camel Framework", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-base/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234192" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "393e1e1ab8e52d8d89c0ad4b0954c9ef" + }, + { + "alg": "SHA-1", + "content": "f302de9b0c656dafc2a11a5b0b6d519d3b66c4f9" + }, + { + "alg": "SHA-256", + "content": "64c3d18dc78d21c0368619ff2b5cc58895b7317207498fdc81478a98e549f8fb" + }, + { + "alg": "SHA-512", + "content": "70782ca407a9d0844bba62bb44f87f0dc15c7f3d8eae293df80b9f70d28addf209a57219555dec53ef3209374f966f31645193c98fc06fdf9ef9b6369f546813" + }, + { + "alg": "SHA-384", + "content": "6da698609d0159b283af18d6be3436fa4981d1fb6b970af6276894634134c9f574f63d6a069afd8e10e0ba820b0467e8" + }, + { + "alg": "SHA3-384", + "content": "a1500b909aeae7206e79bc6d7fd245e1b215bdc4698f4141fd7c898a3bc0ffe317f4e4c004adb832c4b4b69451390446" + }, + { + "alg": "SHA3-256", + "content": "784e60c131bb05ac4638c4476995fa20c3631ad6191bcafa90ae626f2d49486f" + }, + { + "alg": "SHA3-512", + "content": "a2ec8eee3ef3f7f66e57fc8e1eaf3902402f119e230b1bd8fd1648b937ce1e83dc8503d302948b74fba17a4be8def68c40bba74d3121bf8b7694b81cf7fd0d71" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-base", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-base@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "description": "A json simple parser that preserves the ordering in Map as read from JSon source", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/tooling/camel-util-json/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/tooling/camel-util-json" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234032" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "46b4a0156d820d454e0c5bb276844448" + }, + { + "alg": "SHA-1", + "content": "6ed27f906ef8355106df16555d025da8360187b8" + }, + { + "alg": "SHA-256", + "content": "cdedc0d15f60298006f5c2472d4accf6f7bb24d725ae2c9e0762e74c2209b07d" + }, + { + "alg": "SHA-512", + "content": "bad73b0118bf1ad81400022a211e8a88c72b12cb143e3a0b39dce38957dc5d789f65e9843fbfd5ddec7e8b711b722b00c7f12a59ed1df853c8e37ae7a82cf38c" + }, + { + "alg": "SHA-384", + "content": "58f78cb519b17fd8b39f9bb1b839e89bc8ec2806ad3da99a957ac5197ce3f4b01f78b00a712d73818c183ff58b589a36" + }, + { + "alg": "SHA3-384", + "content": "56b8bc30b6be41198880908d9a9f86ef973801cc3f53058f9d24eab7b529fe419a55002b688908b73576fbbc680d02a7" + }, + { + "alg": "SHA3-256", + "content": "287f0b30dadea13552e182c3be77fafa805c203129bd17495e045a1d0ff4a9ea" + }, + { + "alg": "SHA3-512", + "content": "4782b7ce2a92713bcc618d1a440bebe3f1d8e42c460441a5eb3dae04c8dd34d357ec0ba9796caae0d5a4e4231f6af8085c78121eb1820e16d1b6cd881748af21" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-util-json", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "description": "Camel Cloud support (deprecated since 4.7)", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-cloud/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-cloud" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234248" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "8960350a87d8b980d395d01c641103ab" + }, + { + "alg": "SHA-1", + "content": "38ffe2090e22fe0acb6c165f88e533e1b023db23" + }, + { + "alg": "SHA-256", + "content": "b8482c286a327d53b30fd53358474e6a73193181df6cc42824834614bee6b64f" + }, + { + "alg": "SHA-512", + "content": "5d5dbe17798c43e1dd26de312a8d65f6f71299cbad685ad614afb6b44c615a709e343f24704f18155f6221b86ef8d099e7c08f13c7752970f9cb616431a3330d" + }, + { + "alg": "SHA-384", + "content": "ffdf5715975f483eb9b0d0ed9c14a2ac4bcc28d37c009313732ab5257188cc10c2269ac7cab15e14808d1b5dd3d98bb2" + }, + { + "alg": "SHA3-384", + "content": "20a7360efc60c2b5ac6da2fbaab6a6a799772ed6572d33f32f319747b62e0161ac9926a66639f38e6705076301688200" + }, + { + "alg": "SHA3-256", + "content": "048db77add8c1157f8baf63c433f9b3e26d2c0c79d05323c43bb7502eb35856d" + }, + { + "alg": "SHA3-512", + "content": "4debcf5e941c1d1ed4eaae745644c90a76a130676b6a71b15b9f01732dd5ae8ef675bb39b94a4bbb3013d2b3972e5907658932f0257df38385970f91f27fef70" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cloud", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar", + "description": "Camel model", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-model/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-core-model" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233871" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "73f98305b7c9d7bd2d58770692d889dd" + }, + { + "alg": "SHA-1", + "content": "297042dec2e15e86e282b20d057f0403806145d5" + }, + { + "alg": "SHA-256", + "content": "45f2b7de07500f4d55e95ff9503dccf95c2d16d29d86f74b88ea0762a65a71fc" + }, + { + "alg": "SHA-512", + "content": "6f9dc92a2914b62dadbc786391e250ded8fe0ffb643ce11ac4d1b6005bf7a776cec3779fdaecaa2c9720a223067261785102f7c1b678f3bf37fc9ce10fe99d71" + }, + { + "alg": "SHA-384", + "content": "c1ee90b813edad4a2fc3c3df475a44877ca37cb1ea67d1461b55c9c1986900cf6d4cf1c0d9d324cae87bad4be308b4a3" + }, + { + "alg": "SHA3-384", + "content": "ef2bb8ac05a77ec338d84c823404d964a70478e5bd350532196c1a41bc6473de96865f5c09ad2869cb415640d1c0cd18" + }, + { + "alg": "SHA3-256", + "content": "54aeaf500e30be7067443394bbf1d7c86fd64e81eec3290b100f0f93d3a635bf" + }, + { + "alg": "SHA3-512", + "content": "b7e250f1290bae4239d44c805c6833690ae45d07df1e8b649439b10bd910e2b2029c24afb2f88ac63e85eeb85fad15163180c2eb3804d41a9bed87dddf93d217" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-model", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-processor@4.8.0.redhat-00017?type=jar", + "description": "Camel core processors", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-processor/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-core-processor" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234205" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "333ec7392a36c92ac4a8f57565b1da80" + }, + { + "alg": "SHA-1", + "content": "258ba7495157c87a962045c40f9d8bc274463630" + }, + { + "alg": "SHA-256", + "content": "db0f69b57f2193a76b7d3ae7ab54bdeeb54b79a2758b7b0a58927cbeed4057a4" + }, + { + "alg": "SHA-512", + "content": "c143eb0768bd4b596f4bf354024f01e726ea45f5062cf01ef29460326199808d38998a83a14137544ba480a177615d25fc5975571a3225a2e7e408df63144c1c" + }, + { + "alg": "SHA-384", + "content": "4d8630dec0ed97ee056d6e306dff90fce5f84fbea8d26b63c2dd821526268ead249425365ba6b27b2adcde580b9ebe01" + }, + { + "alg": "SHA3-384", + "content": "cb671771aff7f6e4fd1a05f4260500cd32f430cac4823a1347b53f40f632587868984921de56a081c36509b542f6b3e6" + }, + { + "alg": "SHA3-256", + "content": "5349640857a8b5b7e436f355c6a2c20373ae6fc435328d3de1494ed27774324b" + }, + { + "alg": "SHA3-512", + "content": "f26a88cbede0905295cd06806b3456c51d0ebc6004683d125595a345b7b92e32f33b770825b634c012d72e4c1e655c75c02af7fee767c19355cdc503b9ad4eeb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-processor", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-core-processor@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "description": "Camel Cluster Support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-cluster/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-cluster" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233467" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "53df38fc7cd9643640d4a3b2d4689726" + }, + { + "alg": "SHA-1", + "content": "1b30230bd5f74338fd2eebec906e17f8936b2697" + }, + { + "alg": "SHA-256", + "content": "563fb0955d7bac556fb4532990cbf1e68939ff8126cd7c94459dfc65496e0ca1" + }, + { + "alg": "SHA-512", + "content": "53d45b52f68ba6ebb8c95e53bf7621b27ecb24ff0c34f176a16d6974501d8daa947223b3bbcba1ab0220452bc420cb23396d87f273ce3e317f832a5127631a6d" + }, + { + "alg": "SHA-384", + "content": "2f14ec7c6b6a340fb3b0d9a4e0a45f86ffe1cc9bcb8547b1d96da19867b2ded57559d7cde63f9afdc37cba48e09391e0" + }, + { + "alg": "SHA3-384", + "content": "24d1337b1621fcd5049d317253f9bd799cf3eb7085a8f0aff1a1dfe184a0a2879f1c5f22b3efbd9ae9a4278aa39802f5" + }, + { + "alg": "SHA3-256", + "content": "7d120386de520d354c8f77ddfb0e115f5ac5de7c6ab5f07843a475466b074353" + }, + { + "alg": "SHA3-512", + "content": "77398720120366d4aa1b26f14dedad85810a391790ff217a80fc14b866beacb4ca33b87fda65f6e80060828af742ac66a97b3cafbdc49da608c9eacb7582f55a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cluster", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-base-engine@4.8.0.redhat-00017?type=jar", + "description": "The Base Engine Camel Framework", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-base-engine/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-base-engine" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234134" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "613b34cb59a685cad6829d994f57d2d0" + }, + { + "alg": "SHA-1", + "content": "18bd8675555faf16fd18603877130234f22f9ec1" + }, + { + "alg": "SHA-256", + "content": "c92981aa92fc6e0701208a6b1c6449c7c3044da6498251a7ef72616798977c81" + }, + { + "alg": "SHA-512", + "content": "24dd9785e6b4aee6a169ad764d71fe52eb2c1c01a1862ffe106a34f5aef897dc7f4d1b04584e2a9862805c9e7515734a6bf189752b6d63155690d4b23734f291" + }, + { + "alg": "SHA-384", + "content": "d952d9e2d15eb231df47f749a999d9cbe3016f3f845b3c3fc8fd3c9bc8991acf356cdbe17e38b6784391780e02df6306" + }, + { + "alg": "SHA3-384", + "content": "39c7a8281ac6ce92017ddc25cc21f637d851852926d5a9f090e5fbb50f4df90a4764d5f3e50b455e7f0bf0af7734e562" + }, + { + "alg": "SHA3-256", + "content": "ab9160651999b91f86ebf302ef59c4f37f2cd599d29710d79e9c475246673c3d" + }, + { + "alg": "SHA3-512", + "content": "38d3f6557dc6bb84f5f6a0054a43726bb57ae550a44484e8f18697920d0960e9ff93f26d87ac308f0741960d68dded63cf19171507b4ffee68c94380f5885efb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-base-engine", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-base-engine@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar", + "description": "Camel Health Support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-health/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-health" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234293" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "7897e4ef04aac69dc6ba438605b9b823" + }, + { + "alg": "SHA-1", + "content": "96b8e2f672cd058c9278239cdd98e0b31d674e05" + }, + { + "alg": "SHA-256", + "content": "4d95e67c1e5c6be6b85156a9af8ac5eb850f78401df30d1017ec5ae1ef7fc9d4" + }, + { + "alg": "SHA-512", + "content": "b0240774c865cf7f748fa576112ebb368f5ed346e145683280fb51542ca169c82d6069503af9e242e09191eb66832ad0f961873dc3b66293aa81785055fc4720" + }, + { + "alg": "SHA-384", + "content": "5ef4ef9d5a609544a345ec9e0369fbeb1826e03568adbb929bbf29105c8fb263ec0a8a24d4a57aee57edc25d3ccf9106" + }, + { + "alg": "SHA3-384", + "content": "0d335df5b12c46e26480dda565c1cf4bd2638eee8c1da634fc4c1111ded0205ee1b043a56dde81af570e255e0eaf6380" + }, + { + "alg": "SHA3-256", + "content": "be41ad69d99dfa0ae575c4c4b9464cdec83e2d57beb419df9c695d376f44b392" + }, + { + "alg": "SHA3-512", + "content": "42a38665ae21b9d01946786e11bd697049addd3eae1cfb493edd6049a09dfe1e65e4f58adb21dbb8d0bbdb6bb0318aca8507ccb08ce27e70340713735e5af4fa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-health", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for The Core Camel Java DSL based router", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-core-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-core-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234744" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "54bae0e8b7c9cb1d7ec46482c94aa085" + }, + { + "alg": "SHA-1", + "content": "d7b9689d24c0bc55f2d6409cb1031e53752bf897" + }, + { + "alg": "SHA-256", + "content": "b4b80e94d2144a7f3cc8d2a09fab059db64d726b1b02f0a5c05d3797644dfeb4" + }, + { + "alg": "SHA-512", + "content": "596956c7609193105e2277756966bedef188c9aac991abc1bc839676efa9c5136a3da64b571e62e46a0c654b53aa0263a89054a3b0c15717f156ae0b7e3804b8" + }, + { + "alg": "SHA-384", + "content": "f1e972c819ef3e35148466d593d7e06b98fcaf2ace00fee8ffac98fe200e6e7bc855c6cf7912939ec89389897b1e626b" + }, + { + "alg": "SHA3-384", + "content": "14a46d4811077da09fa50053932ef3d573f8d98ce3ff18e7c85042b0714e19cfad1de70e85a4c44a6ba4393e0ed8465c" + }, + { + "alg": "SHA3-256", + "content": "f83c3911c0f0c7500429ca1a88cc30324b618b485c0ae4c75f2b23041f4b3565" + }, + { + "alg": "SHA3-512", + "content": "229355d237d61abb29b3b2696cfecf3d493246cad693173687ae93124f10e6e69b56a7f0760353eaf844a7a54f9f351967aeef1fcce8eeedc1cace11f4084ba2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "description": "Just the Camel Core engine without any core components", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-engine/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-core-engine" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234001" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "7dfd08b5f10a96e83acabef952496177" + }, + { + "alg": "SHA-1", + "content": "4a057dcb58a6968d54c669e7549e945b47dfc01f" + }, + { + "alg": "SHA-256", + "content": "f3f85452df668fd2c929fc8e01436245967255f5c77c28cebea7669c57b81577" + }, + { + "alg": "SHA-512", + "content": "06c761551a0f41c040c643374ecc0ea481c440d4deef1769d8ccda4e9fde2897dab78439ab85b1036c6e8f3c0ce7a8712384d155750a244d478da455feca6881" + }, + { + "alg": "SHA-384", + "content": "0cb1673e009b78c0cd0bb3e9276905dfab8f0a16cc97a84f8f50d962d36f6cff09fe951cdde32777403223c7407d0f1b" + }, + { + "alg": "SHA3-384", + "content": "618c752db26b9f43de4dbb02137b9d66a7395ceda1492b1adb95af10c73c2c5074c37f976cc0ae920e9878ff8dba2dba" + }, + { + "alg": "SHA3-256", + "content": "e55a9ba9ad2cf1abdb9b7e8d315996f5beab8e28b73130f409fd1a12de92c287" + }, + { + "alg": "SHA3-512", + "content": "43b965c1c0a5ec09b46ea4888345817c48797baeb91057ecf14474c0600705aec2b416f58bef276a4b625ac26d070fa0ed6345185d33ef96cd2bdc99a79984a5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-engine", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "description": "The Camel API", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-api/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233853" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "786e24d3919896778b60f61cadcb78a1" + }, + { + "alg": "SHA-1", + "content": "768177a9e9c61dc2327eba87ef3c6c59e72b3f2a" + }, + { + "alg": "SHA-256", + "content": "e0375d6489b72be0effeb47638dfa6bcd139120667dea48d68f60b6e94a711e6" + }, + { + "alg": "SHA-512", + "content": "f6f084e978186b8e6890aef94e8eda80d7e426103c5e75ad4ef6ae425c5cab98c2e5c53e5873713dc9a5550fe0df5ed661bc9a83c1b974e7b42ce73f65b9ad78" + }, + { + "alg": "SHA-384", + "content": "7a45db62a1b122042474c48ff74bd034a5760f6062d573cdd5009234e8f6fc620fbd0963285f16d8533bba1943fd33c3" + }, + { + "alg": "SHA3-384", + "content": "4feb8f5dc77044f5699461b4fe7b9dc0f7bdc71e425f8a6fb0177610aef07dfb56ee94129ce72c1786b8f7437f401bdd" + }, + { + "alg": "SHA3-256", + "content": "a9ae8711496be3790a4c7bd6d9352c674fc101cf41126356312daa63be9949e8" + }, + { + "alg": "SHA3-512", + "content": "04911e18e5544e4ee71ffe1a0e05fe3f4c38e92d7f8851b8e88adb9345ebf53596641a323a97b5302a71d55fba9a55709479384db52864adb4055b9c756a9939" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-api", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-reifier@4.8.0.redhat-00017?type=jar", + "description": "Camel model to processor reifiers", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-reifier/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-core-reifier" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233752" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a5a0c9aca703102679c6b7c8d7ea1509" + }, + { + "alg": "SHA-1", + "content": "8fc844890032690c9a62a8f21af0c1504a837183" + }, + { + "alg": "SHA-256", + "content": "74bbdc39c1171c0642749f030dffb6fcd1f81d339104f18fc7b6062009859e20" + }, + { + "alg": "SHA-512", + "content": "ab08f4e2df3ac5bf4b0a1d037ec6325c4856f8ea0840aab06389e73fc2c7f5b537cf191e805b33df571bc34cec25f9c2e7298490947e0331377407736eae6f8b" + }, + { + "alg": "SHA-384", + "content": "06621989060c6a0ae2b81b183c5acf2d02460e9f7c79c264b1d7193d47a756d795fcc51d009b8fa7eaf5b298eab0c848" + }, + { + "alg": "SHA3-384", + "content": "0bac0ae76f0eabd657a8b36d8fec15c9b325ca3898ce02181be93fd3776b4c6a7f3f6ddfdb0e3d74fac5f722d14934f6" + }, + { + "alg": "SHA3-256", + "content": "5620a42519447de3f1c84e65c42e0d23744b0a2155f8ad4bc41e5f1449a01daa" + }, + { + "alg": "SHA3-512", + "content": "02795715fedd0d399c1e8ad357330e49f8ffb5d9a9e7daad2f208d43f7bfd7b15a3557d00a674c280234d6dae5d04aabcf2748f51764fd33b7e41685aa2d03f2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-reifier", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-core-reifier@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "description": "The Camel Support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-support/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-support" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233969" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "eff55e299a62015b57425f6ef5f86ca8" + }, + { + "alg": "SHA-1", + "content": "436c5b7f7c598689aaee23404672a76fd6aeff33" + }, + { + "alg": "SHA-256", + "content": "5bd2a3896e15383c845ba00c73934eee49cf3c29c2b2332c45aac9207c31d2e3" + }, + { + "alg": "SHA-512", + "content": "cf41d4fa96dcad50b6856dee60fe8d4948bcd09bce69162bd2bbcd0b14c2d4874a723548e5013a64877556085e800d24a39af798f888626cf55ac69140d20432" + }, + { + "alg": "SHA-384", + "content": "88c4ae11e9d51f811deed8cf6b3c53011902bce20306c1be3ec9ece1d855b7445ccce688e755191176c82180c6233a36" + }, + { + "alg": "SHA3-384", + "content": "c1ddbfb8fd8ffc498e625fbfbc56d7d55c78a6dfbc322b599ccbf326d3af549219a983f2b7dfbfe5a1e4241952e9be44" + }, + { + "alg": "SHA3-256", + "content": "cef778bea6473edd21732d1f39ce239ed6f9c732131543b97f2e748504e7b58b" + }, + { + "alg": "SHA3-512", + "content": "005d8b3fb69f243ed8447510bfbeb93a5587e761e707c4680e77244ee6c436e5dd02056147f51eacc798e2384cbd7c616a4b2d9e869e0d6d9a56fedb842680bf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-support", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "description": "The Camel Utilities", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-util/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233731" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "381912b37ab88d14d8569ff9ca474d49" + }, + { + "alg": "SHA-1", + "content": "db9ab88e3561409fe79bf02ca236d06f877dcd73" + }, + { + "alg": "SHA-256", + "content": "3b02c440a7493263ebb49d9fa9b50bf9e156fec848cf8d0360e36293df01ba13" + }, + { + "alg": "SHA-512", + "content": "5fd937255e803f7b1d30d16319aa7a2f93ca8da2985860c6f1128db4cfc34dc3943d11aa94c446fd580273b7061321904f371c9b77d70928f72884af218dcfbd" + }, + { + "alg": "SHA-384", + "content": "5b799cf19a43b73b67d945b0cd5eff5c28d4f904e2292bc5d798575bdafd25fb938c60835cf2c289c62788f412d49e80" + }, + { + "alg": "SHA3-384", + "content": "fdcf937c59c826a3e21bb96cdc65889fb801916e2f969cd012c78e07905a4f5824f4883684d9b8e53ff9dc5607fbf26a" + }, + { + "alg": "SHA3-256", + "content": "8d83eccd8deb57637fe92083aa4324762658eabd37e66ee8a4e7cd54b1d6eb91" + }, + { + "alg": "SHA3-512", + "content": "6af125e883ccdf190d3ef865e444c1431ae2430d5c7daff073a5ad4632a25397cbedd2ba94a283af8667c42c486348e752a76b51bb3c7c6e4cf3a21bf8d1d33f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-util", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Bean component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-bean-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-bean-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234889" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "ece9a5df8b345b15a41fa446a9875c98" + }, + { + "alg": "SHA-1", + "content": "3247defc92eea991da959a170c228c777291ba7b" + }, + { + "alg": "SHA-256", + "content": "ae44a2d740fb74eeeaa65e9011a6cdffdbf10bc585191c8c1f16a11f3d689e74" + }, + { + "alg": "SHA-512", + "content": "8f021ffcad88e720ddef31e4903013fe1cae017cbba7d324aeb8b0c1c796d8884d6204ff78b4bc0d547bd9f2dc807be8749212ae02a2854f125d6ef0fd1a5176" + }, + { + "alg": "SHA-384", + "content": "fa25d6170deab29afc49e4c46ead54c182e5ef0a729ac2afc04a829ddac23b8bc86c65b8adc7adb36afecf04aa2586a3" + }, + { + "alg": "SHA3-384", + "content": "5fa6e6ff24dc1ce5173e9c5925d51be68cf3572824edc3606aa3142945204938ad7204fe9f603127d4da61753a027dc6" + }, + { + "alg": "SHA3-256", + "content": "30e4f71a942e0ad239addef57a36ca577b90760f3deaeab758759f95cb58a82c" + }, + { + "alg": "SHA3-512", + "content": "8629e586a9e084e4930051286fde4068e7d6fed0d48d97eb254e4333a8a38004c793d562b96b4b5b8894d3a08e6664fa5f31c3a1cfb4759df25f1867db3a29e0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-bean-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-bean@4.8.0.redhat-00017?type=jar", + "description": "Camel Bean component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-bean/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-bean" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233463" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "55eff2fd818e2e22f1c034dfff7fca8c" + }, + { + "alg": "SHA-1", + "content": "f9462e80bf7464d634c8de50176e4ac411a4de5b" + }, + { + "alg": "SHA-256", + "content": "1afe8fe468261bb418e87ff74462c12e0025764ca36931027da867e3fd1b9de4" + }, + { + "alg": "SHA-512", + "content": "55cd4d588bfff996550c95e881456da9461fccc7d9b0f8d3b31a1b47f0b65979a95d0f2cef431b472e52934ee9512bb42948f62cbd572126f5cc2e9715e975c0" + }, + { + "alg": "SHA-384", + "content": "a23fb423ff227bdf88a621be59669d204cedd41cf350984818c931339a7b10234182844cde214ab056fe6b85f2a08ff7" + }, + { + "alg": "SHA3-384", + "content": "e95383458b2afef701a4d41ff2a0e8dd7fcabe4b519c4942a0c37717faa38ad37c657d012ab9e69b5545f287112df9c3" + }, + { + "alg": "SHA3-256", + "content": "602db60bd2b568a96817325b146ca6bdf5ef8d8016dc434974a969c924ee3d51" + }, + { + "alg": "SHA3-512", + "content": "61f33d30167ed3e97773bfff88ececafcc757e164eaabfc923915e4e2506ceaf8a0e6ecaa781a311e2291886c16a4fb20dfe20d019e9e82e272cc0328b424fa7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-bean", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-bean@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-browse-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Browse component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-browse-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-browse-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234950" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "d3a7e7ef53b72b329c2f66fa65966af6" + }, + { + "alg": "SHA-1", + "content": "88a2af77f4ec91640edae0a3d351149bc48d9292" + }, + { + "alg": "SHA-256", + "content": "ce9c316a091a7a4fa26af13eef502dfcd27758296d965874eea085d104227925" + }, + { + "alg": "SHA-512", + "content": "746233e817cd83cdde29046ec82c218f93968cf24ce411305ec1f0540af01e965f31e8e84e3e6e688cb00a435688389394757994098605cb8ce061cf4d289a67" + }, + { + "alg": "SHA-384", + "content": "d45122336a429a84e349570a0ad6ee82861dd7275c99e784ff90beb2b8fec433e08569773d6f33daebb6fe4a809f22c2" + }, + { + "alg": "SHA3-384", + "content": "29be75ca4332ff2c4da070775a5e2e21cd6021ba75d69bf77ad0113138eea74251d391ea47ffe1e00463607546d709be" + }, + { + "alg": "SHA3-256", + "content": "f851272d7f06eeff1a89488c95168f1757e2e965b723d5e9543ec08016438e2b" + }, + { + "alg": "SHA3-512", + "content": "32e4175fb92d5c810227bce8deebc6cb7e383717f37004bf174f769cdbc0843eac0807c8b9e92e4dc63e72cd24d2fe1ebe5837d42174114859dd88c1b92162ea" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-browse-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-browse-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-browse@4.8.0.redhat-00017?type=jar", + "description": "Camel Browse component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-browse/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-browse" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233465" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "2e4dff96bebb71b9bdc1bfb5a1057a50" + }, + { + "alg": "SHA-1", + "content": "9e4325cf4d146f91b311690adf50f411866fbc83" + }, + { + "alg": "SHA-256", + "content": "cb646c4fc5d7a64d8d6702b1e447fff8a5468c8fa139826ae905dd58c535d225" + }, + { + "alg": "SHA-512", + "content": "78ad0a57e131cadb5fb9d22dd78581965f513b52fd295363b236b02e735313b2ceec7f14810adea7ce641c6094dd054e15ab0d596cbf41b41c193ad39ee80ca1" + }, + { + "alg": "SHA-384", + "content": "35dbfedad45bc689c60d6ba72d4993eee313a985ceb4082775c107f5cecb89e101b0c645bc82a092cc2b0e2216bcb26b" + }, + { + "alg": "SHA3-384", + "content": "d41168c06737a2ca092884d8af8f90d2871d0b00d3a297135685b1ca8a65cd73165264b45d36f55062981c3f55077071" + }, + { + "alg": "SHA3-256", + "content": "71d33bd1b3a0117e6096c596a3dcb69a613b459f0ee48b2c8fd0f0d9b11e30e6" + }, + { + "alg": "SHA3-512", + "content": "dc70393ce145dac7ab4b5a297a997f9717beb77926fa5087b6a299f99c7cb56889379ce1e12b1338ed7fed505ee457e8e32e46802a9f5f8d92fb6978ea18e9f4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-browse", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-browse@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-controlbus-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Controlbus component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-controlbus-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-controlbus-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234923" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "73167025a7ef858590eed4c38c1a41a7" + }, + { + "alg": "SHA-1", + "content": "2ec71fcfc2edc9bef999bd50062dc29d5a520536" + }, + { + "alg": "SHA-256", + "content": "bd605651d96d05828c082103dd954e6ed958b1ecafd52f1da49ab5e7c25c8e5e" + }, + { + "alg": "SHA-512", + "content": "f9c1859635fbb0c7828f1a8b66b1e0480f4874b602cacd53b650fc9798c82313db02bf7d349ae4880034737678c7e5d102c74bac6067265eac0ae4a640e6ac10" + }, + { + "alg": "SHA-384", + "content": "726c5ca83439f700c05b17c0b9bea96f97cb4f24d1ed1ee17f166901866066235a3d2162c8cebdfe0880dee5b5f47db6" + }, + { + "alg": "SHA3-384", + "content": "9304080a1d1dbe7c9ac2f68ce0c2bee214ebfd740b8a3af919138de51a16a003064a195c43a340c1ebeae3a87fd9ca90" + }, + { + "alg": "SHA3-256", + "content": "2c3d5d545e1dfa2ebf7428d05fa76829c2fa2c576793eaa2d0ad661d3d8b5851" + }, + { + "alg": "SHA3-512", + "content": "6d8da6f8ff1beb57d8ae24a4f98a8271436b7ab639052fcd4d29e74981342dc1fad0c574acc7acfbaea22b9085c88c70ffdde1911ce2003c6698c3bcd8448009" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-controlbus-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-controlbus-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-controlbus@4.8.0.redhat-00017?type=jar", + "description": "Camel Controlbus component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-controlbus/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-controlbus" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233736" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "9df7c035911060b26c608fca7caaf593" + }, + { + "alg": "SHA-1", + "content": "8a557603e409b77c9adcaa05607afa201c612467" + }, + { + "alg": "SHA-256", + "content": "e1e5453f231c70f44aa209624de86c9e9eda1877c1b42ee34476edcfa09332e5" + }, + { + "alg": "SHA-512", + "content": "b119e6e2e0ddbcb3d957861cc2e7dc0a72d30d8bbf24c0eecc6a33457379fe4bca94246e5e57754b6840a48303dfe31453a073d18407b1e26358ce34899fa083" + }, + { + "alg": "SHA-384", + "content": "c30e403becd5be8444afc7ed4645083c97142a6c526c96d2207b261f81ba662cdcf12a86b006cefbde6df999e253c114" + }, + { + "alg": "SHA3-384", + "content": "80488e3f4e71ccca253bf570e642f704987dd8c06872576764b3880127900af93c7d957aa9cf6c08fb22f011107f6f33" + }, + { + "alg": "SHA3-256", + "content": "269ead52d68f50bc15ce13318cc2a9a44eca1b51257d9ec4bbe14ca02bed1507" + }, + { + "alg": "SHA3-512", + "content": "c8b157d0c1a5ea1442ffe79acdce7b80ff5bb0816c52659e2a71b6515a45c485b19e736f803244cd38fc022fed5daab4e421021bf1c5a97aa9e6daeb01e99a6b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-controlbus", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-controlbus@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-dataformat-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel DataFormat component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-dataformat-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-dataformat-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234522" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "8aee2b9d01f1efefdc063282be907bd9" + }, + { + "alg": "SHA-1", + "content": "f0268344f574f745e35a57f86f726b4be58128f2" + }, + { + "alg": "SHA-256", + "content": "f842155618d6597f74ac8d7edaac500415c3e1e940d6945c945f0bb3d2bc47b5" + }, + { + "alg": "SHA-512", + "content": "5b12ac769a2af84153757bd1e058c81aeea04f2109a2c03bf0ed4c4bb668304ac4764476b88523235fc6a808072aa690ebae50801e61e860ab1cb61ab8c0a466" + }, + { + "alg": "SHA-384", + "content": "a5ac28fa82632d21d15d71559d864a0f7d82852691c6ed98916abd9c2481a459f3f37d62944e9d78794c6506f378c711" + }, + { + "alg": "SHA3-384", + "content": "320a9a74023c83bc69f5f68a37f1fa6ce490c2ee993bc60ac6303a044f1e1ba335588a2b2fbc2165f6d55011142e8b06" + }, + { + "alg": "SHA3-256", + "content": "2d369cb2acc076fd5ac6bacac285bad1649dd5e1d6ec04a8452b756d7d04ab67" + }, + { + "alg": "SHA3-512", + "content": "a9c2e830da3916ab8e53e06897aa1e35e45e98c808df6505d08f1fa973149d8a138a215609e44659a26d4ca93a2d6d23b23a07c4dfae109af995301581f1a680" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-dataformat-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-dataformat-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-dataformat@4.8.0.redhat-00017?type=jar", + "description": "Camel DataFormat component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-dataformat/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-dataformat" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234022" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "6453f14941270aa78e4603475803d7c9" + }, + { + "alg": "SHA-1", + "content": "12bf7ec2e5b878c2c07f4f34e393cb16492fdf5b" + }, + { + "alg": "SHA-256", + "content": "cd43dc34e32b124efae2848376a898f9fc2c02c49f7b2b8d2de3f92085df77ba" + }, + { + "alg": "SHA-512", + "content": "fec5f12367ff86417be5630c8417720aeda296f42540463a172cffa823ece44055827e854fe252028240c0ecf2f833b73a2fe6aa061dc07fd25b53913f085c2b" + }, + { + "alg": "SHA-384", + "content": "2f3d4133726f4dfeb932f7ef90cc843bba150d958033562a823d3558dcde21fe719e02c4e562d296c2d96b8b9cb98f66" + }, + { + "alg": "SHA3-384", + "content": "3ba23b35922be9d6005ddc9e9edee7737019119e6a97442874420c6faf11a0a29abcbdf3e8ba45f02cee458795e4fe43" + }, + { + "alg": "SHA3-256", + "content": "54530f482107d9d5080618f5da8122562d0fee81a845b6331244169ec3fcb368" + }, + { + "alg": "SHA3-512", + "content": "c88b6cbb99dfcacd3301e8d8181967704a72cfb60d9d7d7fe4dbd415bc6c3a4eab61d0a2b99e1da14d54375da2a57ce699611d806902057a6e43527b7d567dbb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-dataformat", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-dataformat@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-dataset-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel DataSet component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-dataset-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-dataset-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234547" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "9a0906f9c6488e10d20b0629702ecb74" + }, + { + "alg": "SHA-1", + "content": "7e117911b09ba6df58885707f23f3b0822391a30" + }, + { + "alg": "SHA-256", + "content": "a72e876e95e9c673bae7b5ab3967fa72ff32ea411accd97b5abebe4f9bc36617" + }, + { + "alg": "SHA-512", + "content": "28de525106beb0deb1e896be66e327d8bb8b7c47c16b52c8eb8cd99ef868d70a8dd5e9239b999e6c4353bccdc948ec8f5b145305e9f6addb96c2074dce85567d" + }, + { + "alg": "SHA-384", + "content": "099f484c07f7f34e3cf4657aade8db9d3befbfb14e2f3010b5558f4bee9aa20790e6e167a180a80fe6e755570cd3f231" + }, + { + "alg": "SHA3-384", + "content": "8f0a2eb6619810b5a235eabb523b2127ebdc2e0d5a2b90e656cb4cf1332c5db1696be5bc015c67543e74bec68a094269" + }, + { + "alg": "SHA3-256", + "content": "513d714f7225c34b57b13758a246915ecd2aab113a487c67bde1749d896a63a0" + }, + { + "alg": "SHA3-512", + "content": "29cdeee462ac4b80fc9918aefef045e2ad7d73013e5bceaf3e6228a8e36cf72e909c3dca7a6e7a86dbe75ef48979d949126bbc37082ca1876914204174b90f64" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-dataset-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-dataset-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-dataset@4.8.0.redhat-00017?type=jar", + "description": "Camel DataSet component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-dataset/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-dataset" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233470" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "580f1156d84d759ba2ba73f7669373b2" + }, + { + "alg": "SHA-1", + "content": "1de421c359f8d7336a3d9ebd458842f0826ea640" + }, + { + "alg": "SHA-256", + "content": "a1c39146ee58fa91bd9ae295b549df93bb1ecdda4e922f1708ab992baa5c559b" + }, + { + "alg": "SHA-512", + "content": "4689c1f081e2b6295d72ebfbaec1302dc02ef1e1f54fc5bb33271bb3abd2bab997a3d8af002f8357049cf41a95f560ac2a4738292038c030259735dca3255497" + }, + { + "alg": "SHA-384", + "content": "07b54064741dc191471474d36e7505af25c16d131255f61e55fa60fac66938c769ceeddebf00d16f67a8528b026b98d0" + }, + { + "alg": "SHA3-384", + "content": "2e32dd89ee331c1fc3d50df7ceccb4392772ddf0cd621163935fffba98c9593738e1d2afdd23431fc46301e94ea6aae7" + }, + { + "alg": "SHA3-256", + "content": "e72c4ec280c1fa287a322ad2df6ce6d0655a6692490c80bb94899b7bef72e9f6" + }, + { + "alg": "SHA3-512", + "content": "12df2c1b4b29c2df3823884819f5a8921a09c9c0732d14ffc09330ac5c397193965c52e638b44a330b2ccfb7c52d1456f266de9f64bf035c0bf082599a270823" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-dataset", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-dataset@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Direct component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-direct-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-direct-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234648" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "c7096bd46237af942f5721e17e1e01bc" + }, + { + "alg": "SHA-1", + "content": "c50e4343db66c7a44b400c14c9d2d724e02d27a9" + }, + { + "alg": "SHA-256", + "content": "cd9b1848066e9c3ade972dc6c3442f2a438b5e00a4ce1a0a233caad17b0bd6f4" + }, + { + "alg": "SHA-512", + "content": "812b8d1caf5c9d398a75a108fdb018c43afcc13d7dfa19f1500b3d26a8854c141b218915f80614ab8b7d760fe5cf4fa104dc5ffd508baf26cf9599680e797e92" + }, + { + "alg": "SHA-384", + "content": "2d6b22fcbf63dd832628e133fb401b17d47225d6ae4938123049c4edffe17de2f62577a12cec408de1082cb9a5c124e9" + }, + { + "alg": "SHA3-384", + "content": "a13822efd5d2b81bd3fbd4dd107f5937cfcda2f7fb1b173ffe30a1613cd1b7e343cf7945179360199fd4391f628e14d6" + }, + { + "alg": "SHA3-256", + "content": "7a61bb33a4235d44167a6a27765aa9c0f2a44ba588a1f78f3249a8962096395f" + }, + { + "alg": "SHA3-512", + "content": "a8cbc13273b882ce1b3abe08b0cf279e52a6bbaee7c633efbdced621ef88ceaf0a7a8907fab9202d94b74b19b4033f75f1ac2ef835df1b2cee572c90c5cb328c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-direct-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-direct@4.8.0.redhat-00017?type=jar", + "description": "Camel Direct component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-direct/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-direct" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233442" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "32da6814a64a91ef1d1c6ca11dc9bbf0" + }, + { + "alg": "SHA-1", + "content": "6acd8bf418a9bd1ccc20292912e8c429a27382f3" + }, + { + "alg": "SHA-256", + "content": "0c940088c3166fab129e2a91152d5084ae4a087cdb6dde3ac55fb20358aaf04f" + }, + { + "alg": "SHA-512", + "content": "f48b9a61fce8f91ec54ad6c2e3a76f6b807ff11f234d03c4987f314cc29fb9d64558ba67fba20c955c554f8592b72f5141426a818cdd5d1379e0381826c596ce" + }, + { + "alg": "SHA-384", + "content": "4e1ffaf7d06421451addf73217a36ec99dc547e9b07985f4a6a2f631426f82422104efb2223715e67e4254ef2b072b48" + }, + { + "alg": "SHA3-384", + "content": "cd9cb9147060c089c1da1d8806ad440fb72662e271e81917af05e1e5294dc2cd965a3e7fe84da8c3fdabb8a25e399b5a" + }, + { + "alg": "SHA3-256", + "content": "171e2dd446a253936dc40176a71b312e19cd17fd200d36e5a46b907511ef9b28" + }, + { + "alg": "SHA3-512", + "content": "c6279221c78ce4a63ac3aa9c9a599de1798f521f23dca61feb28531a7fc0416c1670426a1ba9096a195943e31f0a311ce58feea875fb664b19665013f007580a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-direct", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-direct@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-file-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel File component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-file-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-file-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234818" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "74bcbea7e1f2625f9dac48997ca16cda" + }, + { + "alg": "SHA-1", + "content": "de0c157dd1fd9ad75546e385667800a70a8c3a44" + }, + { + "alg": "SHA-256", + "content": "c07f6730b7f918796895855c451e7f3beb350571d4036af9ae645dd323107197" + }, + { + "alg": "SHA-512", + "content": "1a9b9558c2b9df76e88d8e410335151ee49ab51f13981ec7b32fd1bda97858172d6b5f7a486c57f11f8254c8c628952cd96a0b53413de8dd9135a3bc564ae4a7" + }, + { + "alg": "SHA-384", + "content": "0af0198be248a11fa0eb99dd7333398ce8ce46cd46fb362564809981c689d200786826cda65e3d320f34674fdfd3c138" + }, + { + "alg": "SHA3-384", + "content": "26309d1cc0e2090e48babf57fa2f44b9be9b0cc09a06d46ccc52194a68d708d186c2268fce750fbf4553c1df1373e30a" + }, + { + "alg": "SHA3-256", + "content": "ef0f44e31f641a8462ab17b2aaa8a096250713fc0060605659690c9ea6588fd4" + }, + { + "alg": "SHA3-512", + "content": "0e92a7a225b47b8e4d3425bcc24ebbc8a9d274ebbba46440f90e4e7e0b424bdd8596464b19cf0bcf799cbfc79efb9402ba2206f2fe0ad0565afa10a8910a4137" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-file-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-file-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar", + "description": "Camel File component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-file/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-file" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234245" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "1fe2e6ab7504a5814398caab98861eb9" + }, + { + "alg": "SHA-1", + "content": "d87d5d0d1b626318dd288dcf507165f9118807ff" + }, + { + "alg": "SHA-256", + "content": "ccfcfb765fea8de27352c45942374ffa583ca56769ee07ad3154d543d4d5feb1" + }, + { + "alg": "SHA-512", + "content": "b3d495b745f23ea691655427e698e7fc221f36a38174c2dcada30b6fd8bedd7e4ca9f35afe741ffcbbbc471dfa27d41ac0de59019f351d8307eb4e1ae95fae35" + }, + { + "alg": "SHA-384", + "content": "8444c7fbad563ed441e614e8207376e00477475d2534e43782ca96a680adb41c2101b360fb2298858e127b4c5a34307e" + }, + { + "alg": "SHA3-384", + "content": "8d886b67740e3cbda4714989d0331a27e6c5b651ee273f0348845d39bec0516274ed52851efb0e59f14aef1d5c73c2b1" + }, + { + "alg": "SHA3-256", + "content": "8a1396fd02ad4e57cd8bf997b2c2d0b9b17970efa8490393db823240bb590152" + }, + { + "alg": "SHA3-512", + "content": "cd135a215ff714a9d923402eafec2eaec5d6213c76e131c4c90760fe205f083bcf03efc1b435a29755e3c118ecd06ba0da0ff2c5b3eb69f68a5c656db6f2c422" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-file", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar", + "description": "The Apache Commons Codec component contains encoder and decoders for various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-codec/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-parent/actions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CODEC" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/commons-codec" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12932016" + } + ], + "group": "commons-codec", + "hashes": [ + { + "alg": "MD5", + "content": "6c5be822d8d3fa61c3b54c4c8978dfdc" + }, + { + "alg": "SHA-1", + "content": "47bd4d333fba53406f6c6c51884ddbca435c8862" + }, + { + "alg": "SHA-256", + "content": "ec87bfb55f22cbd1b21e2190eeda28b2b312ed2a431ee49fbdcc01812d04a5e4" + }, + { + "alg": "SHA-512", + "content": "bd33fd5340757ea0616a8c2a48760cfc9932f93b8e067701f4a122fd59735083468a016d8c0fd65973dd3fa4fc3537855e71a1fae7d14e1777e31ff1c47708ce" + }, + { + "alg": "SHA-384", + "content": "ee7f4c3e5c01cf77f4d82b09c358087738e6e79507ced9f2c82fdce3b32825bb62b2d66b30ef897e2972d3253478c525" + }, + { + "alg": "SHA3-384", + "content": "c200875af6359f6a584b108ecae3d83496942e1216dfacbd86e3c22e54b90b9519a9b01a229e71552111b10c8734c327" + }, + { + "alg": "SHA3-256", + "content": "81cd8a4c12e0b7ac84222e33b159cbd6f658b3e0f48e5fd8075d50cd03b05837" + }, + { + "alg": "SHA3-512", + "content": "c821b99a5b4a3fbf052f562d60479bc252aafa8057fcbe095e09e96cf01594a23455658f9c666866e1937910ff44a1a891760d04c22d5187cb98be9d0d58952b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-codec", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.16.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-language-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Language component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-language-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-language-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234711" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "af71d0dda0bc765933fd5c6cd92432da" + }, + { + "alg": "SHA-1", + "content": "0cd09b3eea869c8ab6afafe42e340213531dbb84" + }, + { + "alg": "SHA-256", + "content": "5d4cc52289dc54fe585f5672176497e08398e3a7902c56777ecbc44e20355be1" + }, + { + "alg": "SHA-512", + "content": "00a49ed1cd8c1dea1c4ba5aa035da2ff27ddd1dbc08d6653029f8409f776c219d289bae0f90d3e3e4f9202e3b95f1de1e0167b349eee95344784a194cdbd610f" + }, + { + "alg": "SHA-384", + "content": "1f1f01a008e9c83504f1c20ead3ae4599d3047a322a4022c687e0eb730535e1ac1a550cd0d31ec67517a60206f68c561" + }, + { + "alg": "SHA3-384", + "content": "7f7ca0ec86f5950285a387eeb3bcb7dcf82259cfb5af8f1304dbf115217385876831bb22c3ce8577fc0b176e066f1bae" + }, + { + "alg": "SHA3-256", + "content": "8e15b0e70bb3ad06e7b31e1e1148557fb15155176ba2c676e11d27069afed795" + }, + { + "alg": "SHA3-512", + "content": "938baf379f123e495329becaad9ed951db58d6a8613e187e53d77fec5f5ff865d468d59277c09e94813e9b1763881254f37bc6351067770b50127fb8a7a67bbb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-language-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-language-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-language@4.8.0.redhat-00017?type=jar", + "description": "Camel Language component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-language/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-language" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233561" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "e5ca99b92afdf844e12204229ab0728d" + }, + { + "alg": "SHA-1", + "content": "5c50c7e1b72f93636ffadb40f9df104da67578aa" + }, + { + "alg": "SHA-256", + "content": "b7d12c5c8e5cbc638da8d3e8c1e3d3d9f076b897bfe6659a4aa9562f09da2e40" + }, + { + "alg": "SHA-512", + "content": "63237632e54363a31160732988965e7bd461af66e36606d9d2422cb5095dfbfcffa1abcbf414a8dce03098c62144bcd1acfacd79ae67bd902f32c5b1e96eacd8" + }, + { + "alg": "SHA-384", + "content": "d20c33c645dd25caba4dcafb83f462c785a59b4f4329a18539c20a990c87f57a4fdb93e0a565a6c37d5f5b3587049413" + }, + { + "alg": "SHA3-384", + "content": "7f91a67db978a9bd0e35b347ded51ddcf3ebf2122f463c7e1bf5144482ba8d2860a0e1084feea08ccc4bdf3949dd20c9" + }, + { + "alg": "SHA3-256", + "content": "557a5e469bd26e6c8f9437b17e3208c45eedab3bbfb6f9772613d0df84fb80e0" + }, + { + "alg": "SHA3-512", + "content": "e6943cd378ddabd331b1973da218bc72e7de4ef0ecdcbaa2d5f5463477fe5bf27649668781a831b0fe7ee53723e5e0a8947dd60a1d804f623581ed45c9d2e8f3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-language", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-language@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Log component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-log-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-log-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234474" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "b40724006669d363352e57f4a3baceec" + }, + { + "alg": "SHA-1", + "content": "59a99c9573ccf57bce83d645ff020452a74bd639" + }, + { + "alg": "SHA-256", + "content": "21667e95c64dbfecd27627ff1a882e28c2b0ba4455a0653fdb04e835ebab39ff" + }, + { + "alg": "SHA-512", + "content": "5f794fbdff69bf6e534e0c941c0bab2d12a37779c1150777c55440e03a23326e9a8636c5f8f560b949c8d2d946e667bc31fe80452b4fec5c3f89c9ed07949ab0" + }, + { + "alg": "SHA-384", + "content": "2d0295aeb41d307112b6d806ed21b0262d1b95553e4c8c9cc8aaced4cc8c47d1bd9f3ed8be15b475205f9916955df5bc" + }, + { + "alg": "SHA3-384", + "content": "4e69e08ba336c8d017466153a0bf3f51c5037faa291ffb45351808f7b5dfc021ebfe3d7dd83efd62b5cff425f18dbf68" + }, + { + "alg": "SHA3-256", + "content": "be5bb572fe50c5bb63e5d45ea80a68e3b63a77bfe78c54e7a50d3abc29bd8af8" + }, + { + "alg": "SHA3-512", + "content": "9e63bafedb7844fec775828597bd573cd468a4f56eab4d4e833b893573d0d7d2823c3cad742f5e4ec67427e5853d4cd4eac7369e99b55d92e04b78aad2b3d39a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-log-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-log@4.8.0.redhat-00017?type=jar", + "description": "Camel Log component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-log/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-log" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233720" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "3a4df9e96a8fd958edb84fab312c2c3e" + }, + { + "alg": "SHA-1", + "content": "55f9899fbaad54da73951ef640b7b34520c75584" + }, + { + "alg": "SHA-256", + "content": "6bc042d9569064364b6d4af0fecabd59d011bec8d6960a7504246ae23cb2f284" + }, + { + "alg": "SHA-512", + "content": "63a341eea8b09f9145ab495f285c89fcdf45664b009c665e3b446b8c1965a88e4ab4d0a3d6828cc3b19dd9bfa0370fad0d8ab923df9617c3b5a9ec2203567006" + }, + { + "alg": "SHA-384", + "content": "9df9887e830594cd299e1e6777c247de680a074fc2b0027bc8a4cafacaf1040d5e1980e8e79a4e8c0782c38d10c853fe" + }, + { + "alg": "SHA3-384", + "content": "924e41bb5e8e21a7d5b4b64777ca0c53b4f1ace387f235c4ffa2911e42b6e497d7d8143f26e84f71713b1bd9320779a9" + }, + { + "alg": "SHA3-256", + "content": "d76c17039ebf3d46b78a0d14b4333689502c2ce98329a22438128ca8472e8e2b" + }, + { + "alg": "SHA3-512", + "content": "054322f4fdf22fe60ae86a643483dd70cfe33a4aa9507df42fd6510e5fe52ab51d999c747c95419eaa00c857ce45aeaa94085985a4dc368763a726797eb161ea" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-log", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-log@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-mock-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Mock component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-mock-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-mock-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234560" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "db2cae31fce51a433fa0dabac1ddbac0" + }, + { + "alg": "SHA-1", + "content": "370a4002973ae7952d79ccd9bf9c828b9588d844" + }, + { + "alg": "SHA-256", + "content": "17a11eb00c0c81c9149d1373a8869412c46ce846902b38a54144ef4660fdea8b" + }, + { + "alg": "SHA-512", + "content": "1351056888484af759f29ee0810779f17076f28af0da2271f2696be0ce38a14399922c2ccbe35792e2e337a420c614a4d3e23c271e9f9c099fc8bbf75b09b3f3" + }, + { + "alg": "SHA-384", + "content": "8ca0690c91c3120e2437759399ac28dbfa6b5d71ceaf344c97ccd1b0c2cb14abf996182773f8f011646478df7c8edac3" + }, + { + "alg": "SHA3-384", + "content": "012baf2021c4a9e54b7bf75399edf5b2a48772f7c1cf2d3734174655705e01011c9636e835160c4bf2a9b852a9657f74" + }, + { + "alg": "SHA3-256", + "content": "0a40c099ad9c4127d05202de83e00b13368d063687cd73b126eebdd0a9d1aca0" + }, + { + "alg": "SHA3-512", + "content": "3f7620a3db7da925e2b0a1c9b43993a488c9c52339be07ac279cacc6a71ea6040c496a55da05d14527fa257f87ec750a03be35719a9e2f7796c7c733f2c5ea7b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-mock-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-mock-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-mock@4.8.0.redhat-00017?type=jar", + "description": "Camel Mock component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-mock/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-mock" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233768" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "73dd7368ac9f8202d34cd6e1cbd9f18a" + }, + { + "alg": "SHA-1", + "content": "ddbb0e4c23cda8d86017e57e609c0787afafc5d5" + }, + { + "alg": "SHA-256", + "content": "287e1f30ec17a77cf60058e23310cec78ccb0364aa0e88a4de7149b3fc3a7a77" + }, + { + "alg": "SHA-512", + "content": "04abed2ff70dfffc6b56cc18c24da425bcfca3021e3c6a0779a07852dc4d1157c75a418685e9667687228235310d1f6f5db494779d0f4659cd7bfbd0fdf3937f" + }, + { + "alg": "SHA-384", + "content": "cd07d1834a052b3504c80cae76cbd78b72cbc046df4790464db2f198804239bf6d06246f8b1c1128d8676c39bbaad71d" + }, + { + "alg": "SHA3-384", + "content": "f664e353de67eeeb007fc39ce53070f902810457feeee592d5cc922bab7e5895c727a2899161555fff2d0d7be20364e3" + }, + { + "alg": "SHA3-256", + "content": "a78279ef0487a9cf52a111109a7bd79b863ec73dcadca3b5c2d4a82fe84f2788" + }, + { + "alg": "SHA3-512", + "content": "6e74828f0b6c86a2304a9071dc9b992cd5500f150ccc314ba781480fbe3ba643f89613949791646cd76f862512a50ef9b53ca7dd5a8ae5b325cf26da9bccbb6d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-mock", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-mock@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-ref-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Ref component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-ref-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-ref-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234670" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "19c4ef76d33584062b1d0b9fad1a32ee" + }, + { + "alg": "SHA-1", + "content": "cc6b6d40d589f005b277f2b4e5075e6228c96f35" + }, + { + "alg": "SHA-256", + "content": "626b2f140110259a77319b5442b376b9ba3ca422d1efd5719b65422c088b57ad" + }, + { + "alg": "SHA-512", + "content": "7a4c28390698b0b3096637b85e4d597712793bf0e0dff62e1c810e334e566f06d911cb8dbc5b938f0894e3a99b7ce1f4f10f447fc2fbcda98524748d9108e452" + }, + { + "alg": "SHA-384", + "content": "2b64512b3fbae1627c08fbb24af7c043b920323d574dd956ec053144c47bd3c93ac389ae646c174bc302fc4887ad4aec" + }, + { + "alg": "SHA3-384", + "content": "f9b72ed2ae326aebbf3801a93ee325a997d1fe636ed372bbc362517943e90f3eeadd6661a8d1e7aa9e9a43cfc9977fab" + }, + { + "alg": "SHA3-256", + "content": "6f02e8cef5ad7172481f1614b52cd4fb7b4c941fe978ad0debb5a909677f19eb" + }, + { + "alg": "SHA3-512", + "content": "a13ce79a2b13fa7b8c16e0b813dd8d180f2f74053a0805a563e3a6b0c65363738752eba2f86742b7d7092e57c54d16f7f1abc2a06fdce53f73029fbf33eb2c27" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-ref-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-ref-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-ref@4.8.0.redhat-00017?type=jar", + "description": "Camel Ref component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-ref/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-ref" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233899" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "241388cf27f7b7473b43f11bd097a602" + }, + { + "alg": "SHA-1", + "content": "c8e0540ba132ecbff7eb3aa3fee1bb47c9639960" + }, + { + "alg": "SHA-256", + "content": "1281bb40ce7d3246a042b042c5d8360565d8a0f6972756c82372522ec04872d8" + }, + { + "alg": "SHA-512", + "content": "8c811196185f906efd6bfd91f75aef9c14582a36271c48c29af1affca9241fc35dc698b9bedb7cf2f90da60a53d23e56d73a32cbeb1294790e939203f583ac98" + }, + { + "alg": "SHA-384", + "content": "f7b49ee62d56db91993a07c84e3bf45b7e812e89837564f154768c424239ea6b613c9e0f879121a583d5d1b3a4ed1c9a" + }, + { + "alg": "SHA3-384", + "content": "26b39559d2f38708fadfa1db7a221602fe77871c0a319dedfdb574883e0f1d46f792dd04c944974e8059f5f97fc73e81" + }, + { + "alg": "SHA3-256", + "content": "873e0a2348d28c3eee98d02a93c07e5abbf5208c08ba0f796755f4c4eafd8023" + }, + { + "alg": "SHA3-512", + "content": "f214804ab0da57b189ec98e32bffc4f05bbf519f085fd06c1b2b27687780b380383ac1e0323600d458a0db4ee1a97f427564243a4f143b6ca624e674122525b7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-ref", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-ref@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel REST component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-rest-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-rest-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234597" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "84fc7c27deafc88f95430eacb8607c1b" + }, + { + "alg": "SHA-1", + "content": "0fad6d2d8616491a3bf528550b8b4870b93d740f" + }, + { + "alg": "SHA-256", + "content": "c48cd4788de7dfd0729290a1313d27efaa124cb5ac394645eae36a45fb0d01ba" + }, + { + "alg": "SHA-512", + "content": "c34eb0f7192ad3532330e546e714d34538b2a6771207cbcf82d1f31e41a674a5ced2dd59fe8ca60ac252d6b987cb93fcf426d23174bd434ae056f86df56fec83" + }, + { + "alg": "SHA-384", + "content": "5ae9706b206a05869df10cc30b0d8c188beaf97dc5803fd96e31ff456c95393aa8580b0212b8088d6c38926e85446b30" + }, + { + "alg": "SHA3-384", + "content": "2931e7049ad1925d1e41ea51717d743250679fdc505ddf29dadb5080490288cd88ef57867fbac1f41147c0c1ec5fa1ca" + }, + { + "alg": "SHA3-256", + "content": "b9ceaaab9c04dd12b35c8c350c7f1914b0723c244514dc9dbffac6c2358b17f1" + }, + { + "alg": "SHA3-512", + "content": "f8670001b016ad6714c3a5e53222f074581b9425a1e4872634093775c6d9ce8b4dec8c3b39f87416671a9a43326c0ca435d5da016c21875176ee2398230191b0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-rest-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-rest@4.8.0.redhat-00017?type=jar", + "description": "Camel REST component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-rest/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-rest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233667" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "4a10634425f4269d528d4fe97b71f321" + }, + { + "alg": "SHA-1", + "content": "b6840ecbbdab3707c43cb5e5671f2a41ada989e4" + }, + { + "alg": "SHA-256", + "content": "d2f70e4d2155cf839c92927861b993b5aa5657d1eb1e9161a63d17062b1e18a4" + }, + { + "alg": "SHA-512", + "content": "63e14d0c24607a69f9c4461e8645ed8dff6a090733e9b3d6d814bd0c514fac65198ff6604154e4142652c75609c349899bd423418311da3d9850af7345ad36b7" + }, + { + "alg": "SHA-384", + "content": "47dbcf7f454fc1dba1c9c57d48c7edae115e01810ec4c021af39304ad314035c2f60f54e2269dc782a6d3f386aca3adf" + }, + { + "alg": "SHA3-384", + "content": "0561f279c4c6f7c831d786dbea259ec8cd1c41aac3c34079c1fe00cbbbef6bee18eeece7ca4acf613f52db28e48a06a8" + }, + { + "alg": "SHA3-256", + "content": "32e6f8ace512b1c6a3498b7c55ad70a777fc3b1d963279127bb02b57e414a03f" + }, + { + "alg": "SHA3-512", + "content": "dd63bbe3856fdee415de8b5bbf2c41144d93cced728f581c8713dd66d4b821049ce4a2c15901e0f8ff2570725956a7666eaf227a4aef714a728bc24df830d30d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-rest", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-rest@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0.redhat-00017?type=jar", + "description": "Tooling Model", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/tooling/camel-tooling-model/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/tooling/camel-tooling-model" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234239" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "fbf71f4b02dde4b597bd26bf240a5813" + }, + { + "alg": "SHA-1", + "content": "b2b4f5fa91084c5aeb7c7048ec6301b33b0e27e2" + }, + { + "alg": "SHA-256", + "content": "d64ad483f23e9b9b5d702edfa470b9c50a267334a4e398c108375af836348a0f" + }, + { + "alg": "SHA-512", + "content": "85ee820d08265d29a24b6efb5193f1a6fab44c9b720e5839693fb68f96c57afb524da1ffd4333b726a8022385d075875c435ced60855309ca49902dbbd32f731" + }, + { + "alg": "SHA-384", + "content": "487702848717b234c839f097420a300e7e0756c9e8661181b99438e1cdb8ff93ff6dc6fcbe16df69be625cd0ef8d2778" + }, + { + "alg": "SHA3-384", + "content": "1834bfae19f37ca7697fefad69d0ff4f2e1997cb68ef9f135af19e4794d65b21cea2ae3cf9b9fc563501441f861d2873" + }, + { + "alg": "SHA3-256", + "content": "471ac72f02271e2a650d77d89794078840039519c5f2bf9af4789be8b44a2191" + }, + { + "alg": "SHA3-512", + "content": "a283dcfcb9fca2994b33d614f5d9d905133c4ad9244d6f3bd1b4a1c24a7770696b75a6fba065b42ed8dc5b6729cef6fee38dd7c49d2307202c8c0a1d0a34b817" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-tooling-model", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-saga-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Saga component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-saga-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-saga-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234770" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "4de1c7e5f6798fba5d2fff93e1f8a3d2" + }, + { + "alg": "SHA-1", + "content": "358b2c5d156705777136dbe77fc8d6109aefaa4b" + }, + { + "alg": "SHA-256", + "content": "20a4fc0cf2c384adb49b9a69b46e7d48a43ef12f1280d235dc235fdee6dbb4b1" + }, + { + "alg": "SHA-512", + "content": "33c9a48ccbc534e16294bb0ed4ed0dcf2944e8a595c297ec9a3b18c527b11bad4c057c041660d5a9eec7f88504ae06d983692e2cd58442069097584d0de448e7" + }, + { + "alg": "SHA-384", + "content": "a343500ef2e3c553cf4c131244b25765d0a081c72807c0b5b38235f6394c7919b1605c85671dea6ae77d60e79d55ec93" + }, + { + "alg": "SHA3-384", + "content": "4b25e6aa975c17d204859a330532af291c1026f99cf1cfd05882b79c3aefedaabfc57817e1d2b23c8f5dd520b9299b79" + }, + { + "alg": "SHA3-256", + "content": "75a2d113c3bd696f5da2aab49b7aef2e52546d7e307f907e71ee44f20fa0f662" + }, + { + "alg": "SHA3-512", + "content": "114fa5a3718b61f67064d6edce0113bdb45319ce3f3488855345bc71f7e8916ba8cb1dcd535df00bfd52cc43fbdb70c6a9e11dae3c8ab09f82926e92dceef255" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-saga-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-saga-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-saga@4.8.0.redhat-00017?type=jar", + "description": "Camel Saga component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-saga/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-saga" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233840" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "685ce3e599d6737dbd2e0caea85be63f" + }, + { + "alg": "SHA-1", + "content": "f7b31b9b706bdaadb11c46b41ec8ff900b5bd684" + }, + { + "alg": "SHA-256", + "content": "de8fa89a739d99f472f0a4fc0d219da192dd13804fef6e93848af64b03dfaa35" + }, + { + "alg": "SHA-512", + "content": "7fed0a21ab4f7f4bd95dd8ecce97ccbfe9bec455db5744218f507a0ec4409f8ac52974cc5d6b48fcc7e2808ffa2ced206647005f06da1f7675c17d96419f014b" + }, + { + "alg": "SHA-384", + "content": "b86807bee4d9310cd8ed1360c987c76bdcf400433d27a249fcbf4ab65e245ab73423a22d10ba0f90cc50571bfd867e32" + }, + { + "alg": "SHA3-384", + "content": "cfd218a86a8638598cc9406af79cfb633465721472efc17ea62821262b6a493a4158a866225a44425e18b952fe02f625" + }, + { + "alg": "SHA3-256", + "content": "ebe1bef57f28684a10ad0cb0b45179e70d156df6b1b61ce6ae07b4b8fd873cc4" + }, + { + "alg": "SHA3-512", + "content": "3f4965eb2119f0bb171bb280229d3eef92b037aaa67fa94f11a101bce77bd21f5cdba4e39c3894f1d60088529c32a5d1fc1067402cbb5ac1df4f0d32a2e3ebf6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-saga", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-saga@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-scheduler-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Scheduler component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-scheduler-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-scheduler-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234531" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "fbd17a920e7ae80eed225cfa011c5e23" + }, + { + "alg": "SHA-1", + "content": "83660e6402d56f4e987e95e9a8f1da49c977ec3d" + }, + { + "alg": "SHA-256", + "content": "4e5b1117c4a32671db818b4f21042a0a740c8c10c57e3dc94adb8b4a95840398" + }, + { + "alg": "SHA-512", + "content": "e3b7c48c315df190af683f7d8555f3e191023a7f93c4722dd45387a4611f21914c43b09b22e553146b3955cdb1553164233d4ff7981e676d0ccc85d31048d9bf" + }, + { + "alg": "SHA-384", + "content": "9bfc32fc40b2d0be0a1e9be240632f4de8cf97ee50e41e28a262bbe0954cb5eabafc690d61b6f73bacf12afd77806d31" + }, + { + "alg": "SHA3-384", + "content": "2a0155c816a62869ea386057f41c8d6ffa23c7da564652d64ac68b161b2830c2a3f881fb89a4652a53d35491cdf03917" + }, + { + "alg": "SHA3-256", + "content": "d1a5458f120d7061ce77503694b090eaca6a5dd41f07579aa7a2224cbdbce7dc" + }, + { + "alg": "SHA3-512", + "content": "296bd2c01994ae8dbe35735265ac6fcee6d2483e3fd102d2aa3a23ed37483bf3e4f6d847c8806cfce5679df8984abd9db5ad254483f10dbba97a418233d5f4f7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-scheduler-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-scheduler-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-scheduler@4.8.0.redhat-00017?type=jar", + "description": "Camel Scheduler component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-scheduler/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-scheduler" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234130" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "27be488c8c936b171df1f09c951bf0c4" + }, + { + "alg": "SHA-1", + "content": "51bad871e9472d37cd718251495c7b4a060f7548" + }, + { + "alg": "SHA-256", + "content": "0ccc03e00286c2d9c2912f7da35dd2048580146f5bc65fab214a7c2c99cd876e" + }, + { + "alg": "SHA-512", + "content": "4342173b41b6f2f4202183dfd52d3dc5e75bdb7729a5b5bdca4f743a13f03e3bc6a3ada3bfd932aee52ab601ff18ba39542dfea1af2065e6ff97291b639d9c5b" + }, + { + "alg": "SHA-384", + "content": "2f43c03d5be022ef3a69765f456e9244d33d631401030adc63c7ed4e8d4fcdf5ae2b1030ea3e08e1ca7929d4aec2fdd2" + }, + { + "alg": "SHA3-384", + "content": "ae741fbe6bc2235776aee541d189bb83418cfae1257dc4cabe55a6dccca5a581630ed98f2da48026f128445d39eed119" + }, + { + "alg": "SHA3-256", + "content": "f7c39fb3b0e822c4649e9775c0f1b00efa4d20e4df7cd3f5ff2fb27e2595a7b0" + }, + { + "alg": "SHA3-512", + "content": "db50a5488c77aa42b048c987667ffdfe693936fe9273a24c56a5537fd891797e6243edcaa1f6d5c578c7426bf52fe61b58a1cc00007a1ed6b9a02be92a72146e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-scheduler", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-scheduler@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Seda component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-seda-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-seda-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234735" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "98b7a5a615394b4e25f9b52ae8a96b1c" + }, + { + "alg": "SHA-1", + "content": "4f961c9896f7404e169b60ddea6d877f64afb4fd" + }, + { + "alg": "SHA-256", + "content": "9399374cf9b7f3cb6ff49853df0b0ca4b67cf40feaa64206610b6f587f6b1961" + }, + { + "alg": "SHA-512", + "content": "ba7eb031a5b34e5465b7080ffdab292de68d69ede16aab0aff84df42dc79032d3bb8b298a629af358575b091894bee5d00c3cec4319756b04479dab88d37fb45" + }, + { + "alg": "SHA-384", + "content": "073a0dbc9d9539e93b07a029a5fa84dc4a749ae1fb06cedd6ed18bb2b6b7167015e21e5c20b3eee9bd2dd057a122e005" + }, + { + "alg": "SHA3-384", + "content": "f51dc53fd4682f7db40abecc965ed8606227214b770253698132a6b0623144163ebbe01b4d764c8ac017851a1428cf39" + }, + { + "alg": "SHA3-256", + "content": "37d5470619e90c12e3271154e1949fc2dcb005212882472677bd1b277f40eaf7" + }, + { + "alg": "SHA3-512", + "content": "ec081e60cdb5b9b4356f9a7633219e508a421b0fed195153148b7f1e201e9da04f7e8013ad184394176538eceaa09fe61f4133e44287341466ee02c44bc01fd5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-seda-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-seda@4.8.0.redhat-00017?type=jar", + "description": "Camel Seda component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-seda/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-seda" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234017" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "0ac05875ec1646a0064bc293cc02a64c" + }, + { + "alg": "SHA-1", + "content": "5e93598b6ed2f71899c97641d359f4a986cc316d" + }, + { + "alg": "SHA-256", + "content": "d73e7e351a1a2eaed8e6a76c386c87103dd2a826a90b805338fe7e847189397c" + }, + { + "alg": "SHA-512", + "content": "395c558d5738076a01e1d4f00d1fc9b31ca505db4824cde0ea732bb0b87c10951208ca230480cbaef62c7305cf48dd36b278d4cc5f9a2a16afa5c099835ee177" + }, + { + "alg": "SHA-384", + "content": "37f56868b8a63407bf9f0af73186338c962b68d087055ab8e256d42a45760cc495fc3631168fbe3dc1f9b1b3a7305907" + }, + { + "alg": "SHA3-384", + "content": "36595aeb30c7e103b0202a54bcb937dea5c4a5590764b779f9fc7a0dbff7d2c91a7050044913bb9abfa90d9c73a6ecea" + }, + { + "alg": "SHA3-256", + "content": "382bd19e8f022ca03955eb55832d5cb87914835535cdcdb24bb36fc39badc35b" + }, + { + "alg": "SHA3-512", + "content": "9c562977ea7c735c052b42add4e730487d801a91a038c079a53c6b33f30d5007cabf895c2a143aab4ee5ca47a717d2719a2ab4b83bde0968a9c4f0650bb384c4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-seda", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-seda@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-stub-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Stub component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-stub-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-stub-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234655" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "c2ad038289c89967b4cc0179b8a4abe7" + }, + { + "alg": "SHA-1", + "content": "92af31c36a0ee3cf542f9992e2e0a56712c4edfe" + }, + { + "alg": "SHA-256", + "content": "b21ee38e7211c173979f880a264bbcf627e0eed89b75d661ed9fc21c6e2d2a8a" + }, + { + "alg": "SHA-512", + "content": "2874626ab2048f48a881cafcadb6c00115c6e071faf19d3b9554d0420c1550478ac689101076f8cb88e2833f6a21a6108dbb11880e212cfbb1d46edad6bca195" + }, + { + "alg": "SHA-384", + "content": "5f1023207596506ff01785ae76007a87b8b9b76bd58b41ce186c052a2aef3d6a7d3c4f4e21f3546906f6371f1505ceb1" + }, + { + "alg": "SHA3-384", + "content": "1a2d927d0c8d4f0e0a3bb6a434a14370d398ee64e290bf8c482323febe1c75c9ac72e8bd3d083c310f67dec7b24c92e7" + }, + { + "alg": "SHA3-256", + "content": "00103969937ab5d37ad05ee69505bce9e0742dea3cd72b480318f31cc52d912d" + }, + { + "alg": "SHA3-512", + "content": "4bb137dab2cad7846254e78de652666f31592be368ea9f72066793316b56ce14ce06f6c74eac3441004870470e4075f5a8f3b386f8033a62b895377f20d808ce" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-stub-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-stub-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-stub@4.8.0.redhat-00017?type=jar", + "description": "Camel Stub component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-stub/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-stub" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233975" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "60d7c659e5ff24a57344641bcb1ca40f" + }, + { + "alg": "SHA-1", + "content": "15f830a92f481f1ecfabdef9b95ae439ffb89c10" + }, + { + "alg": "SHA-256", + "content": "ab958d904733fd8ed713a921a8424243821c3ff54e6bfbf1487a0701e9cfa7f2" + }, + { + "alg": "SHA-512", + "content": "c569651b665324d4c6612b84d636880edae51ca8ab7b6a468f97022e3b194d7c748d457978a1929aafda58bc45a2633f40384c278eb6613ac60b1f82bf79d56f" + }, + { + "alg": "SHA-384", + "content": "821ff1373fa5709244f43306cfc859ad50bbff716dca537e46c36d0f976a779428836197f63a7ade6bb2174695f7c085" + }, + { + "alg": "SHA3-384", + "content": "25adec5630a924246bf871c88718c794da0d55b67d734d4095e4a4d753d501cabfc6892564428ae2b861bb297c2a503e" + }, + { + "alg": "SHA3-256", + "content": "56d708afb9ed4aa509a298da09a644982dcb2ca48c1c17a68dc20fc7dc8a265f" + }, + { + "alg": "SHA3-512", + "content": "33a96fb98f04c898afd5f12e348d0ffbcf4013b16802b64452b6616da43c5ae3a716e2db74ab9fa885dec4baf58aa7792da0d9b22369a22b3dc5924fc5898838" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-stub", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-stub@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Timer component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-timer-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-timer-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234671" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "91642a751766930ef4c39bfce8cba734" + }, + { + "alg": "SHA-1", + "content": "de93b870a3fe52a223ed811d3b055b8ae71be201" + }, + { + "alg": "SHA-256", + "content": "108f56e09a657b50cf29132f1438ad4b254b26fda14b2c8d87dadbf88d6bbf2a" + }, + { + "alg": "SHA-512", + "content": "51df9c603486df39da6558cbe21d6ff9e8052efd836351f615a076b8fe5df1fce318376d2fe05068de0af4deea440af734900fdf373b67861f7128b6b7c8c207" + }, + { + "alg": "SHA-384", + "content": "5a97d0f451081ad3bb4aa1814b6be834309d8ad05ce7e8757e7912e30b89c22eac57094bb97e22b930c6e727a1502243" + }, + { + "alg": "SHA3-384", + "content": "2c1aa99261ac3c2f208264996af68072b611277b89f414612e4c891e74452d98171909e36ecc2c66e2d01b44e019afa9" + }, + { + "alg": "SHA3-256", + "content": "4d5e4f2836724e703adf84361aaea118801c031696148fa841e0d6b6738502c1" + }, + { + "alg": "SHA3-512", + "content": "a9d2b915a582bb5497457190ad0c1d9be9ecce3b56d52326c2d3c0367f98e57db661c575205c6af5a61730a6b95ea6ff7b1318a01f555358f0da8e7bbf26dfd9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-timer-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-timer@4.8.0.redhat-00017?type=jar", + "description": "Camel Timer component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-timer/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-timer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234308" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "41f7513a0cfe9ef19cc3ae624049fe75" + }, + { + "alg": "SHA-1", + "content": "9a3c332846ef45df08d6b367b9b565020d3f4a66" + }, + { + "alg": "SHA-256", + "content": "dd89d12d6c03cefb760272deffcc649273dbe15e4346855b7341669f29847f86" + }, + { + "alg": "SHA-512", + "content": "642d9af235b281efc0d13be277474f45634e3f96651506ad7534c3d5118874c6d2f922a02de031aa07072f9689dc54139212477dd740cf829b34b905e595c27e" + }, + { + "alg": "SHA-384", + "content": "875ba9ba63893d4fdfb4c91af410c8287d5552409dc8d7e0025747690ad1f0633e2e853195c00178f57960367f2b79de" + }, + { + "alg": "SHA3-384", + "content": "a062ec983a3de4a290425c61c35fdc427634c7b06fe56b90e18e0766e9011100058ec8061b4f157b38229cb91b514fb5" + }, + { + "alg": "SHA3-256", + "content": "fae958c707de9207a2521b6354bed9a1de5de832848dcf1eb49fcc0e817781db" + }, + { + "alg": "SHA3-512", + "content": "18b7a25fe5ba42693be347b4332e98f862415830f410465991002ec322c74699ca2e5159cce8fe1e941cdf85744b6b3aaab503d3653873c75ec06b09c058387a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-timer", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-timer@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-validator-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Validator component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-validator-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-validator-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234935" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "2cc8271456ef61cff6a997157571a946" + }, + { + "alg": "SHA-1", + "content": "64896fb48de5663e44967f3cebb5c8ad4b544eea" + }, + { + "alg": "SHA-256", + "content": "a42b06f85e11b1dba589bd9092743746680305ccd9f13f51a6de2708a87f7110" + }, + { + "alg": "SHA-512", + "content": "b7842282504122f5ce0f6bfb7339beaeecfb5c57f53d0411e7e9439d56a302f7af7c28ed3c53d16fc09e9d05cecbbd6ac82ddd797601c801481911d09e26d768" + }, + { + "alg": "SHA-384", + "content": "ac22a43a64dc4194b2e503e047ede88450359243d96700edd905256019b408b88401ad588ddb57a7adc8f753a0a71ff0" + }, + { + "alg": "SHA3-384", + "content": "f8c02dff48f56fc29b2d2a2c0e26c5c41a7af671f4e5593b42c90e916c8a83edf98dde7a9b74cb5e48031828d204c236" + }, + { + "alg": "SHA3-256", + "content": "92ad89f2b782bb6c25b860719ef4a714839dacad894d48b507004024a77dca60" + }, + { + "alg": "SHA3-512", + "content": "3a9de07317b4bce6b26178859ec3477732b3e595fa6e4b74566bf282fc6e0e2475f15e76c8bdd69d1df1135c459efe1ada06e85c1b043f14578651b6b9345db6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-validator-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-validator-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-validator@4.8.0.redhat-00017?type=jar", + "description": "Camel Validator component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-validator/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-validator" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233671" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "6d049d5ee5f6e4f2e41b06aaf148d524" + }, + { + "alg": "SHA-1", + "content": "78d353203fc0ce397249852da644e657305691fa" + }, + { + "alg": "SHA-256", + "content": "bc2b8364db687bf8d4a1ab9786bbd7bf656b01f5d80293d5fed986d1cf22db92" + }, + { + "alg": "SHA-512", + "content": "37b6fe6cf2a6b136456f6bc2f32f95bb866c74fc0c75a717188c62f7f86a7b64595ee85a0c5207a642efce04838561ff4733ad186d83f1fa508bf7fb0759192c" + }, + { + "alg": "SHA-384", + "content": "7aa58d8307ab42ce101ff564a31e5b6e94394da4090a22d8a122e8666d2c865aa8d0b2355fa955ce574d4bd518195f5b" + }, + { + "alg": "SHA3-384", + "content": "3925898f8206d4847de737b709cb67c8c96c64d49e20d86ef98507b43717cb4c5d5378aacda1eb85469a77b86d25a62d" + }, + { + "alg": "SHA3-256", + "content": "0b3d729a674c4459a2e6299730402bfa647115328579f6254156e4e4acd49828" + }, + { + "alg": "SHA3-512", + "content": "07f7fae2eb15c43d7abf650fbaff1c40e836fb8a6735ea62a6da08d043bfa8c80b278de1f84120fde4add92483c5d23564c0c88039a056f7b30d9309af4e0109" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-validator", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-validator@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-xpath-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel XPath language", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-xpath-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-xpath-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234651" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "23761c3bf9c3c6c84861b4ea8e445a77" + }, + { + "alg": "SHA-1", + "content": "d5b0a43768d8b4cb8dc68a310a8a3271692aa20f" + }, + { + "alg": "SHA-256", + "content": "0ac2f628789d5252c5c715ed8b353b3b5a20fc287f6903a6acf2bfe451316049" + }, + { + "alg": "SHA-512", + "content": "657ff8c6be2dd06e49dcd31272835f8fa53af0cbc408352e098c2806ddd237466c6937d35abd4c00c7afc7cde663ce64f6c8832be67cba7be38dc9bd493cc6fa" + }, + { + "alg": "SHA-384", + "content": "c82c00ec341f92e90be11939a1bba718f448c697b920c1b0d7e20ee0ecd4bcb76937deda760cf60e9f1bb7193114e8ef" + }, + { + "alg": "SHA3-384", + "content": "bca620349b85a40cd05ea69f4e67649037184fa9d56b6d460a7eb59f051b93a4478da8fee3ea3f2c3ef7e79a56b76f78" + }, + { + "alg": "SHA3-256", + "content": "e65ce0d9b11a7e9613edbf6d66308793310704fd86a066eda6e5730a33fca584" + }, + { + "alg": "SHA3-512", + "content": "5c3ec4cba9d78ee6f2b9af4ff1818dda0dcfabb039656f9a24a88a94bf6849a8609b6c8c71658055aafabfced2fdfa4512f2899aa7ac596b919e7e214ed50df2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xpath-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-xpath-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xpath@4.8.0.redhat-00017?type=jar", + "description": "Camel XPath language", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-xpath/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-xpath" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233964" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "27d8301eac37f56f9b425fc4d79b5fc5" + }, + { + "alg": "SHA-1", + "content": "072c7eb3cce8ddafb69fe2665f6a772234173023" + }, + { + "alg": "SHA-256", + "content": "12f91f2d5e759c22426493af6a9d6fd1dd854d744db7a7ecc77393ce740a74ef" + }, + { + "alg": "SHA-512", + "content": "8fb02cf4a541fbce8dc1b406c19f82821386fdf97ce6da1c1265b758790f4ed999513e72ff57d646ec2b3d4efa4dddf1487919b6aa26077b615e7d05951267c9" + }, + { + "alg": "SHA-384", + "content": "41bc5e59763f201d887e82afd9f5986b6c636baf79a56a7d410b79ac1bf562d074fd9280d9f6e178549df303501f210d" + }, + { + "alg": "SHA3-384", + "content": "a042e92582b724b774ab41f8837634df3d21cf88b8aed1042ed7a301ea8f0d98e2596a58481945da2ed9c32759cf6125" + }, + { + "alg": "SHA3-256", + "content": "4cae05f5f7814d3547ed8be60240c840e934dd21db06410b00ffcfd61c981ca4" + }, + { + "alg": "SHA3-512", + "content": "268d176f6184a4c8d16a2d086b01d1156a0ba9d7d1d527b02538540130a040ee6d409cae5f3f7f546bf5157c7986d365c594f18a95a52a6c3f080220cb9ba7ee" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xpath", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xpath@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-xslt-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel XSLT component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-xslt-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-xslt-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234994" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "05d097dc93fb31e388c9567e6095611c" + }, + { + "alg": "SHA-1", + "content": "d6136fe78e72fe77b2c08cec4437593bdc7a37e9" + }, + { + "alg": "SHA-256", + "content": "79396915991f66cbc825221e3eb3eb5da05a52c822366c146a92b3d0a2b00bec" + }, + { + "alg": "SHA-512", + "content": "e95b767e905215a883500b63481d99cb6accdf253b3abef397acf6f964b5d13ac9c7938f11ddd9dbf218bc09a70cbb9fef393aa7ca44f7db208cba8c3a0c7712" + }, + { + "alg": "SHA-384", + "content": "706895ab29c6fe93a49a658e2ef923982e342fac496148e013d28d47fefb2958be7f4365086145dcab3092320e0d5f0e" + }, + { + "alg": "SHA3-384", + "content": "7c4c805499592603e3007c759af852bda6b3ac3044c9b45ab7be7eca0d126fb6584862e2343414cb3e702e0f242a7813" + }, + { + "alg": "SHA3-256", + "content": "b950d527957a3304b81c12f8ec546b4fc0645c2a40c18dbf2c8e516d8459f36d" + }, + { + "alg": "SHA3-512", + "content": "2f0cf857f3bbdd96980700d4c07249b2fea25f624d01675e9943b6ec58ad2a651816a4671634ee6dd0795251b075a0009f20728e8fcbbeb269eb7883370ebff0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xslt-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-xslt-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xslt@4.8.0.redhat-00017?type=jar", + "description": "Camel XSLT component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-xslt/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-xslt" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233486" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "9143dd2984f7820e401ec50de7367728" + }, + { + "alg": "SHA-1", + "content": "fb2eeb7a59ac5a3e2426177b0aa60b7ca765446f" + }, + { + "alg": "SHA-256", + "content": "c0063b155123f9eeb8f9bfab1e562d2aad2c4ada24b9700a55c2d6e90750277f" + }, + { + "alg": "SHA-512", + "content": "3e2924f8ad3900e1930007e1b00daaba6d7020f081526eb96959e5578ad129d86a59f7e439ebd151180427d243fe2924a90f7955c0600a87cfc028c5f6cc0752" + }, + { + "alg": "SHA-384", + "content": "9cf10e3737569d2ce8133e697e4fc922a2ab499b328ea9d48dc0e85788d9118d09a4ff97f3b9febd98ed22922692e72f" + }, + { + "alg": "SHA3-384", + "content": "510bcefa6c8984807465409921b14e1d673fa17d2bc6f079a23ebc7e0fe7692bbf9bae104b7117ecc11afd0cfe4ec5eb" + }, + { + "alg": "SHA3-256", + "content": "ad81cd3a655243241f88b8b5830df6aade106558cd8c716e1ae3fe30088c23e3" + }, + { + "alg": "SHA3-512", + "content": "56d4f2feb183557e08f19be6d1c27963256b9a99901467fe433fb5fad6c283589d0434c167c01927ae5b77fc700a4b63b9483587a60fa21f3c2cefca372c0ea5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xslt", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xslt@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-xml-jaxp-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel JAXP Support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-xml-jaxp-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-xml-jaxp-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234993" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "dbcfb3e0a065f623bdb244f27c037b09" + }, + { + "alg": "SHA-1", + "content": "4d94f3c3af6362a13a2616dccf4f1fdfe9b0bbe4" + }, + { + "alg": "SHA-256", + "content": "7020446aff6995e132c868eee4a6781c78239cd44cee8635dbdc4e83fee056fe" + }, + { + "alg": "SHA-512", + "content": "44918a899ec6ab78e11c73764d352d2d59f73ff08c448b162c55fa5feaf443f74f215e8ad477d77ec05fc4c55340717fe33d49cf673af2c735e4d1d816126981" + }, + { + "alg": "SHA-384", + "content": "3cd5307b328bf678257f5c6c550ab20a8a47930c860e5ab2a1b03f9a212b23eca4e836b00a9e391a6cb411d2ede5d74c" + }, + { + "alg": "SHA3-384", + "content": "05b1b954f4a3b7226873ba0ffe9bbca3c94d00543d46eca0e7f1eb8f8c22b7d5f55fbcd5ea77d2438c5f8c4ac31c707c" + }, + { + "alg": "SHA3-256", + "content": "16be7c84378dd1c62a5ea0653279940915020e7ce15276cd33313c89ff613a95" + }, + { + "alg": "SHA3-512", + "content": "20de6855901f145b9147131a376434e739f77165f35b8c69cd72bda0fc58f8250c5639500783792758d3b6cdbcf6b943d4f4914e665346a79369c8eca9a1e0ef" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-jaxp-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-xml-jaxp-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar", + "description": "Camel XML JAXP", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-xml-jaxp/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-xml-jaxp" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233744" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "7635ce6194dec69b965196da83eb97c5" + }, + { + "alg": "SHA-1", + "content": "cb2756c993e9d605518958309670d21196c95af0" + }, + { + "alg": "SHA-256", + "content": "45a0a9cdfd450d647b5fb7b4fa558cd601566d33a496e0ce0d2940c7c924b0b1" + }, + { + "alg": "SHA-512", + "content": "84c97c3babb34ca425d10aa1b876f11bce550473c32578ac95b518247cea83d59eae97cc03699316fa331c38ef61cfd383089f68e34dac5468221f0b8cba7a37" + }, + { + "alg": "SHA-384", + "content": "624141bc9e632e1327d2ef7e36a0de9c686a7a064596e78a4ff09887eadcd2f79dbc7b7dd8e402cf53fa60bc20cb324f" + }, + { + "alg": "SHA3-384", + "content": "d9a193e3249c42874144c8490fbe64f0ab98547887ec9cd7b1caf4464240a20ac2f35aa253366e979e416d228aded919" + }, + { + "alg": "SHA3-256", + "content": "bed6934c0ec751d6c1c25c4b63d88af2cb12f846a80cc4d3c40bf152328fb7b1" + }, + { + "alg": "SHA3-512", + "content": "2873bba438d46adb28925a910a2b1bddfe2749f4b400b01244ebbfe38434a9b49b6f639e612997d1683e089b23e5e74edca81926cd313898bfaf1fdf01b0a6ce" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-jaxp", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.8.0.redhat-00017?type=jar", + "description": "Camel XML JAXP Util", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-xml-jaxp-util/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-xml-jaxp-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234081" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a88ebe2013cdd67fdd1306e2d6f00f46" + }, + { + "alg": "SHA-1", + "content": "c71ae812efe29a431b7417690568cbc44ea54128" + }, + { + "alg": "SHA-256", + "content": "5baab6669da89551286707c19e619f4923ea5a8af3c9695eccaba12167d488a5" + }, + { + "alg": "SHA-512", + "content": "e7b23ad658b50763148db2e2d6693a3d2e8522ddd656179c21ed601a5919e7c3ab11f81782cdd89c71c8098deaa515f8a54ae15a9c5b0851265435b508d3b22a" + }, + { + "alg": "SHA-384", + "content": "d26061962f590d06c066b9ade2435c37b61194c6f9bb30f14a1eeed4c259164db4bb2b49bfb149502e5cc4cf12a90f91" + }, + { + "alg": "SHA3-384", + "content": "d28e4279eda5716bc2c2dee4adbc6e4337259ca28102f0d7f3a05b05cfaa15098be0ab1ddbafe07eb10ca0cb68712ecf" + }, + { + "alg": "SHA3-256", + "content": "0679b3be7b236f0ec4d31cfa3e04bd9c7859c08a6f67970ea3a6dc125a69c84e" + }, + { + "alg": "SHA3-512", + "content": "ec8c8ea4b5c80dc4a796a18b8daf6efdd141f807743376c577016ad2c3f4d3304c28298ff58e32d4c921fb15aea08a0b6e01ff000c96f9a16f989a10445004ee" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-jaxp-util", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-io-util@4.8.0.redhat-00017?type=jar", + "description": "Camel XML IO Utilities", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-xml-io-util/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-xml-io-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233488" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "d323d21b161db5264d8c5412e6331560" + }, + { + "alg": "SHA-1", + "content": "0f174ab47dd7ec45f180d2b8d69db5939917872b" + }, + { + "alg": "SHA-256", + "content": "6749c8efae643cfbd901060cf7371fcff68b914eba493270628b6e442585c05a" + }, + { + "alg": "SHA-512", + "content": "f1998e7d85620077175abedaa5c9701f70480eb856655df7aba95aab46cadf6302b007fa2d976afc442eb12cfe86b6cffac24afa3e1736d82e3bcc28ba5f3cc8" + }, + { + "alg": "SHA-384", + "content": "e9913438948ccf06facb6e1b72b4be7f6a1b7e26b97d595d33f5c3558a6536c2a3bf8da97c2c14f932ee9fe7e75c2855" + }, + { + "alg": "SHA3-384", + "content": "1db4be63803542abcd3a0df38d9280ab62ffc8622f8d728a5fd3f5382166d8e90c3a34e350818faaca4b87e86296c8f1" + }, + { + "alg": "SHA3-256", + "content": "2342d6f38a90394ccf1bff086e0fc71deac0fd18ee0a5291c14d5322ca81152b" + }, + { + "alg": "SHA3-512", + "content": "8af4b0e137d0a8751bc364add954defbd5ff0e0f59f2d7effcf4838a86ec40e0f91997573fe0636e82383a30b8e7c1109c8166ab0c201117f05d087605b77a20" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-io-util", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xml-io-util@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-activemq-starter@4.8.0?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-activemq-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-activemq-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13218404" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "369fd0eafb6a4e21dd41afe6d0abe13c" + }, + { + "alg": "SHA-1", + "content": "564a22f915b3511073c330edfe1c839747298b29" + }, + { + "alg": "SHA-256", + "content": "3281ccc4178002e605bc5a31953d18874b163f15d169587ce6bd8cda9504be66" + }, + { + "alg": "SHA-512", + "content": "2b4ae51a3b25b38234b5fa9f9b497dc03fd59112a0c006e597f25dc7f4d48db60396f706f177627979bb477b6010435a1062e517af41ed039dec8797474c1469" + }, + { + "alg": "SHA-384", + "content": "04a19b25022dc45cbcba891d16b48efe2284f748d8a79f83467225539d27625024111cfae7ee4c64b7ff6f211d6f8924" + }, + { + "alg": "SHA3-384", + "content": "14fc151c9b6d90de31d183034ee41bea14e0101406a0206809cc0065a204f6e121fd16f0e31e80230fa4fca1a4343ecb" + }, + { + "alg": "SHA3-256", + "content": "cba17ca1463ab6a4db30fa8235ae6f2b8f5c423850bd395f9658a10c8279bb0c" + }, + { + "alg": "SHA3-512", + "content": "3d4081388a96403f9c15a3a0b9e347d7152f614d223c49247d84c440ccc3aad65a5b80b0155fe512f038bf9f860ed82d8cfcb04ec8c4e34c6db0fb017e299006" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-activemq-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-activemq-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-activemq@4.8.0?type=jar", + "description": "ActiveMQ 5.x component for Camel", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-activemq/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-activemq" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865700" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "2462743dfb1c3e9a7caf479ee9bbc688" + }, + { + "alg": "SHA-1", + "content": "1f21319ad57ee84a9a8fc5dd527384e5881857d9" + }, + { + "alg": "SHA-256", + "content": "9a1055b822206eb231957828b1546cc6dbe1e0fd5ab4d082c785cc8bafb8dfa7" + }, + { + "alg": "SHA-512", + "content": "76e89fe9cc4b602dfcc73c15ad83410d6eb92ca0332d555ff37b2b55d714a79a7d9cfdbd8857f6d4ad9b02ae6d5d43ff4977362d5279c60e0d07cae1e8864ac1" + }, + { + "alg": "SHA-384", + "content": "3d86c48f3d33a4bcaee96d0b705b8c73a2d5283161cbcaa8247bcc65fe8b377c2ac4c692be3daf06a62b2da1b033c4c1" + }, + { + "alg": "SHA3-384", + "content": "6377e8ea2dd8539e41ee52d8b31bfd6158eaa222db88be6d5405f701c0597d1822f4f923f9825c77acc3c7865e2a8add" + }, + { + "alg": "SHA3-256", + "content": "0664e2da405179bb837a92e5b213f61a639273a100e41c328e60850244f05c6c" + }, + { + "alg": "SHA3-512", + "content": "fd4669c3618aeac40ec088bda8d86e1ec56f126ec9370c751478a798a25d1d06693b9a80360456b83ed8feb4f61435e2e90befb84417ee3b68b320153d99d3b9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-activemq", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-activemq@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jms@4.8.0?type=jar", + "description": "Camel JMS support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jms/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-jms" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12956274" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "4cb4eaa20e70ad32780c8ab2228ef37b" + }, + { + "alg": "SHA-1", + "content": "6c1dfec3b7e49b82cc4973a84a2e0d2061cdeca3" + }, + { + "alg": "SHA-256", + "content": "c32f23fd47b47d50305b827e33f69d8cfae3f858bd1053068f4d3cb8a0562e58" + }, + { + "alg": "SHA-512", + "content": "b2d10b082ae45bb5630a16bb60629c2d8be374bc544fa3b0ead7ada4957acc034895f6c225ab78e51fc1042bb0837ca1bb024370104dc55364e2e34325891091" + }, + { + "alg": "SHA-384", + "content": "32bec1d34d282418b18db799c539ff9c1592187e050959cf33844ff223cd1bc81b03b4ee091c28f68454b9a3a5103701" + }, + { + "alg": "SHA3-384", + "content": "5a1de141aa355d8a2033d593450d323fd3b4ba28a951e83c45a89f1cf9bc3d6ad89eb087cf5371811e6b4c2fbd99197f" + }, + { + "alg": "SHA3-256", + "content": "fb308ac7c7a984e3516c3da570e55256832e32d6a3b98c0be3b06b20d5113efe" + }, + { + "alg": "SHA3-512", + "content": "705c36744cf7633cb118dec7afb8fb7c511a70d443a2179d9307c514e890b334a1c1a1d11c5ddc5035ccd81225eff0ed93ed3a6ecee95f4decfcfa0f232943b5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jms", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-jms@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-jms@6.1.15?type=jar", + "description": "Spring JMS", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222451" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "a403749059848f086b27c4ffdba2bd22" + }, + { + "alg": "SHA-1", + "content": "85d0ea1b4b05a72c0f34107bc82e58f0e6be3310" + }, + { + "alg": "SHA-256", + "content": "8e723e1db10d16af2efd1ea0a9fc8da70dc37d6f8c1025b96c56749418e1bde2" + }, + { + "alg": "SHA-512", + "content": "2709613f16ef754f9ca94648f1d7f567e0d374877c785d88be9ee4f9127974d7636e2f0a9ee4edb2be05821420dcf20b9b3ded5c1cbc3bf66a74964447bf2c84" + }, + { + "alg": "SHA-384", + "content": "05e7f5ab06a7b7922d2c851a999578384dd50957c142e53d90b91eadd0a9a78b71785f5edd1b90a7f746cd0e482321be" + }, + { + "alg": "SHA3-384", + "content": "85d64957f6a8cbd4c87675a8bb08903de6121b720b28e04a2d6cd669f3bf18046f590df726ed3e8db73295e93cf9d66c" + }, + { + "alg": "SHA3-256", + "content": "61ff3d3bd2421b02d7c2fb94cf69d7c3ee41cca6b4deab1e6098b90ca783d1f8" + }, + { + "alg": "SHA3-512", + "content": "2429a6c6670533e7394eff8d588064f447b83e8fecb8a36b05a22bd7c7c6bdcf6c9186c31ea984821ca19778db2068d2efbfcbb71c6a15180d0f90dcf7a6e7dc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-jms", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-jms@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-messaging@6.1.15?type=jar", + "description": "Spring Messaging", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222453" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "fb7c9169c95cc6819aad6fa664b87075" + }, + { + "alg": "SHA-1", + "content": "ae2cf860a8bd4acbfe1c36a3c283365a96e25343" + }, + { + "alg": "SHA-256", + "content": "4c85a23c361642968108ec4ca27a78c6178035d5259276fa382d861094f4af94" + }, + { + "alg": "SHA-512", + "content": "eb077b6c841afd3765d2551e9bbb22627cb5c6e959d03219a466e7b74df3a2f7058f259c840a26104300fa63092f6cee769cd79b92f7ae86eb1fc631aa3267be" + }, + { + "alg": "SHA-384", + "content": "69376cb7f23cbf8505811aa0e7667820bdd3c06a8f694eff58fce4c74815386520170d9431f3beeec7fbd10089fc4414" + }, + { + "alg": "SHA3-384", + "content": "d0878a300e89d80e93cc0ae6b34acba0b5d2f091135ce04027432a4a4853701cce1c944b664bc1f4e011bfee70314cb3" + }, + { + "alg": "SHA3-256", + "content": "6c44965b7433c2bbdb6bb2a390204195c6b082f6c3369c96e879258f0f511ac8" + }, + { + "alg": "SHA3-512", + "content": "1194f4db88c674caa32cf9551eb4a6dc62113b13c7ac7d97438314cb71515e27a188926361ad8efd0139376d200c181233f93c43a9f28ea66905adad2668e2f4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-messaging", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-messaging@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/activemq-client-jakarta@5.18.5?type=jar", + "description": "Jakarta transition module for ActiveMQ Client implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://activemq.apache.org/activemq-client-jakarta" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/AMQ" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq/activemq-client-jakarta" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865654" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "6cefa4797d7bb61441cea18d9487b7ae" + }, + { + "alg": "SHA-1", + "content": "002af62e1b8902615f8db0edebb579d775a0d9ec" + }, + { + "alg": "SHA-256", + "content": "14f4aeb6b67d73a16bce9992e9968d2d1655086defab73c6819ce62b3c5e1bef" + }, + { + "alg": "SHA-512", + "content": "ede7c684995073091db7a607245ea87cf51693edc7184a843890cfe878ba6015bd4556a563a2c1a4430d6ebbc0f42bb6d27734784286db87a0a32a7f0bc92bb6" + }, + { + "alg": "SHA-384", + "content": "a20a189dfaea3ef5e83d3d9ea9c1343d4a65c52fd4e978826cd7ba514be0e2214ffc7394da310c059283d0721c987e28" + }, + { + "alg": "SHA3-384", + "content": "a1ee386750bbce0c4a22a2ae9f370bea430a0a54627dbb9c2de20a486e01e47c4838b5cfa657a74a4d4933e976b7105f" + }, + { + "alg": "SHA3-256", + "content": "29de7404237f0810d08b7d31a2014dc4b75624c6debf47c4f4faa487e75bde95" + }, + { + "alg": "SHA3-512", + "content": "10587c832d1dfbaa0f69ed45d1034330a2ec7c34733843fc0974e8064caa8b0755a830e53bdf8dc4df1deabf7cc98735ab4fd802920b7170c7e83762675f52c2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "activemq-client-jakarta", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/activemq-client-jakarta@5.18.5?type=jar", + "scope": "required", + "type": "library", + "version": "5.18.5" + }, + { + "bom-ref": "pkg:maven/org.fusesource.hawtbuf/hawtbuf@1.11?type=jar", + "description": "HawtBuf: a rich byte buffer library", + "externalReferences": [ + { + "type": "website", + "url": "http://hawtbuf.fusesource.org/hawtbuf" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://fusesource.com/issues/browse/HAWTBUF" + }, + { + "type": "mailing-list", + "url": "hawtbuf-dev-subscribe@fusesource.org" + }, + { + "type": "vcs", + "url": "http://fusesource.com/forge/gitweb?p=hawtbuf.git/hawtbuf" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/20594" + } + ], + "group": "org.fusesource.hawtbuf", + "hashes": [ + { + "alg": "MD5", + "content": "a80061bd945ca0f13072861777ff27b1" + }, + { + "alg": "SHA-1", + "content": "8f0e50ad8bea37b84b698ec40cce09e47714a63e" + }, + { + "alg": "SHA-256", + "content": "c6b45db967f3b2b3e28fd2f0724b1730a89d3f5aa9eef3664de29caba219593e" + }, + { + "alg": "SHA-512", + "content": "396966adf3e8cba09ff75297915d41ba6a7c60c327575dfff153f6617a1bcafff4a1ac0baa19d93b4ddcab511c5e23a6fd95aadf45e55e2057700da3b8991af0" + }, + { + "alg": "SHA-384", + "content": "00cdf737bd5ec91e094928a5e7a17eb2277c61c58374c5ff707debfc2d88bf83cc81d36d15cee6150e184cec19976e3f" + }, + { + "alg": "SHA3-384", + "content": "a2b982a00ff5f6f4c40651e47622f165dc19afbad8381a759a2ec809a137b65f944622ccde3dd7cd30457833bddc57d6" + }, + { + "alg": "SHA3-256", + "content": "a1efa4b49a277072841059cba60cb6605ad0af69c2e9ed834d0b8da4f5e15a05" + }, + { + "alg": "SHA3-512", + "content": "f0a5741c6e297b03fb24755d0377c8d25122cdab6d3a5bdfe2dd8acc481d2d2ec13331ca674de4f0ed562f2385ae892555d308dfb2bbf653067553f5fc4dbbda" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "hawtbuf", + "publisher": "FuseSource, Corp.", + "purl": "pkg:maven/org.fusesource.hawtbuf/hawtbuf@1.11?type=jar", + "scope": "required", + "type": "library", + "version": "1.11" + }, + { + "bom-ref": "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "description": "Generic JMS Pooled Connection library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/messaginghub/pooled-jms/pooled-jms" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/messaginghub/pooled-jms.git/pooled-jms" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13097751" + } + ], + "group": "org.messaginghub", + "hashes": [ + { + "alg": "MD5", + "content": "56960f85545c671e27f37ad129439420" + }, + { + "alg": "SHA-1", + "content": "4ce84ba246377bfb925cc09030e5c00a8e78304a" + }, + { + "alg": "SHA-256", + "content": "be65cf46d0aa2385c37e9694e3e1005a859f92039a80e596969940da1cb6e321" + }, + { + "alg": "SHA-512", + "content": "cbc42c9d2a2d77d4824644d2b3b0526faa10684efcc011ae6b9a650a848ff1f18a5285fa5815a1e077ca159a8420633b510de55390ea641d2f380a4d8cbc4c68" + }, + { + "alg": "SHA-384", + "content": "9317693791c407d27f5dadf893c94860b57db242bcfc7a66b99a235ba6bc49f9c0dda9c5161ed91b3b0e2efd7786474c" + }, + { + "alg": "SHA3-384", + "content": "fb2f352507eeefd8fb7c0fb6b3737fb91d281866d737c0e1078a1df8429d929c9c89ac97fbb8629eecb50ca5a86810c9" + }, + { + "alg": "SHA3-256", + "content": "9df2d1fcd330a6896111fcacd204dc9b3cc158869e23522f4117093cc59612fe" + }, + { + "alg": "SHA3-512", + "content": "e0ab59d29ed10a23c958db52253d93b8dfa9ea0cd186ac4a4668495611f844b1eaf85adc48bc5be216dd486d70f73a0c40257d2edc7ffde7bc3c6437cd5589b9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "pooled-jms", + "purl": "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.7" + }, + { + "bom-ref": "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "description": "The slf4j API", + "externalReferences": [ + { + "type": "website", + "url": "http://www.slf4j.org" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/qos-ch/slf4j/slf4j-parent/slf4j-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13215076" + } + ], + "group": "org.slf4j", + "hashes": [ + { + "alg": "MD5", + "content": "c8de8f5d740584cb24b5652cfba8b3c4" + }, + { + "alg": "SHA-1", + "content": "0172931663a09a1fa515567af5fbef00897d3c04" + }, + { + "alg": "SHA-256", + "content": "a12578dde1ba00bd9b816d388a0b879928d00bab3c83c240f7013bf4196c579a" + }, + { + "alg": "SHA-512", + "content": "91c2e7b30f24649bb3edfc7f138c2b7dc715ad36963af159defb80a71205eb7e4c5bcc80d779ef993b567a56724064f190c93985f32665a8df85198a03a2f1bb" + }, + { + "alg": "SHA-384", + "content": "ed0cc7ad67343b9fe4df03ea534025bf9d90c112b33cd8920f29890d923c349b69820c9c42b9e8882047af848b74f99d" + }, + { + "alg": "SHA3-384", + "content": "331ac707cfa4b2bda44deffce7d2a640abb9ae12968cb1ac4879ba1b45542e3d3ce1016c812ff1f2449336bc7ea6bebb" + }, + { + "alg": "SHA3-256", + "content": "3f68204951bb4baedc34fdd7194d0801042268aba0c58ac5d760779510743fbb" + }, + { + "alg": "SHA3-512", + "content": "d7a2f7359e7b2cd6ae3650d28352bf8789acf5855a3596a3be2a236a94931abf8bacf0d6a457afa43164be53abb19cc223ef4f030822a3295c036c078527e361" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "slf4j-api", + "publisher": "QOS.ch", + "purl": "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.16" + }, + { + "bom-ref": "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar", + "description": "Jakarta Messaging describes a means for Java applications to create, send, and receive messages via loosely coupled, reliable asynchronous communication services.", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.jms" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/ee4j/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/ee4j/jakarta.jms-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8094935" + } + ], + "group": "jakarta.jms", + "hashes": [ + { + "alg": "MD5", + "content": "68b9809056047472375bf10441b2a26f" + }, + { + "alg": "SHA-1", + "content": "e194cf91a3f908e4846542849ac11a8e0b3c68ad" + }, + { + "alg": "SHA-256", + "content": "6605e08075ab389c359451c7854808cf4b1575e1ea6317e534e9d4df088096df" + }, + { + "alg": "SHA-512", + "content": "78ba421dc5f80fdea795ad2b384148e54073d633a16c7f37e8b81edfe4c4727f01549a763f1641ecc928c44c4db6730d9a9a51b7ef54e1ad70d995be87affb95" + }, + { + "alg": "SHA-384", + "content": "9b6ba0dba2c2fda4d60ed5d2925300ba283c2ec82eb25c9be2a46ce3a42fdddd2acae0486f6cd5554ed3479e22ac0d04" + }, + { + "alg": "SHA3-384", + "content": "3fdac47868f46793d134d1a8cc3a080b6bfce47bd68bdf9e5f3aa9eab513e872085a6dc375a54233c26bd7330fd80091" + }, + { + "alg": "SHA3-256", + "content": "b8f1ff7a840e3b27854b9bd6488d8d79266e24b565ecf367cc0c48efa4648af5" + }, + { + "alg": "SHA3-512", + "content": "7cefb000255a09642a781f2cc2b14a25effecd09019e7d55791c7d9d16ba50e93591ee7d2695f74e47460c0c992e773bdae0348979608661740473aba57a9dd0" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" + } + } + ], + "name": "jakarta.jms-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.0" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-pool2@2.12.0?type=jar", + "description": "The Apache Commons Object Pooling Library.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-pool/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-pool/actions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/POOL" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-pool.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11222574" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "0516bf5ac1549e8ba78f6b7c49d09ed2" + }, + { + "alg": "SHA-1", + "content": "458563f69fbdaebf7daadfe10dc3a22e42a7de50" + }, + { + "alg": "SHA-256", + "content": "6d3bd18df8410f3e31b031aca582cc109342358a62a2759ebd0c4cdf30d06f8b" + }, + { + "alg": "SHA-512", + "content": "08fb9fda3eddfb9c2ba85df3ae882225f9974fc43c18f4cb45de0483fde8a99b59683dbc8e4696eea1db671cb0686dcf0fce66f58aa45d63786f8362ec3c5ac2" + }, + { + "alg": "SHA-384", + "content": "5319c1fa371d7a0cf8b433f17d2ed7c839d0144d0d56f6fc95cf30bfb27def98d2c5ad394e97a237e4c8bbcccc1d2d48" + }, + { + "alg": "SHA3-384", + "content": "a0ed1cbad968837ca37f5ef821526aabd12a2ca5cb4c1296f5d1b7bca02157df17668d4610258581f9a9b8e588a329b6" + }, + { + "alg": "SHA3-256", + "content": "36bdcea6a7dd8d6470944bfec9161eb486bffe6ace0e583246c1a75590897a2f" + }, + { + "alg": "SHA3-512", + "content": "8bf326f7939801963655a61b13caa36f5983abfd0604d6dd6cfb5c9ea076f044335849de3e46687208c8a5c95387dc11ded5d597927456ae2da3c1ee607adbd4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-pool2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.commons/commons-pool2@2.12.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.12.0" + }, + { + "bom-ref": "pkg:maven/com.jayway.jsonpath/json-path@2.9.0.redhat-00001?type=jar", + "description": "A library to query and verify JSON", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jayway/JsonPath" + }, + { + "type": "vcs", + "url": "scm:git:git://github.com/jayway/JsonPath.git" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11773694" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A53TQIDRKTYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-gradle7.2:1.0.4" + } + ], + "group": "com.jayway.jsonpath", + "hashes": [ + { + "alg": "MD5", + "content": "4111246bef45f70cd1c52971bac6fd9d" + }, + { + "alg": "SHA-1", + "content": "61b73c881fa8487272f18bb86586b8c66dd06b3c" + }, + { + "alg": "SHA-256", + "content": "3c9e4e549e36d13d38032786b0afd26c89cab0627140e15dfe13cd23e8aaa17b" + }, + { + "alg": "SHA-512", + "content": "3b99c5ab450d1a38c5575cbfad73870183573d3372937e40fb440022bdd825f04291c3e1eee5475269c2915145a2cb6149527ba9831d5e40ef00a0dd6a32dc23" + }, + { + "alg": "SHA-384", + "content": "5b933b72ccce126f0f96fcca9286098f00fc65cb025751466c1f24f0432e8b7fdba71c55842a8d8e6d1c73d9c7cfe33d" + }, + { + "alg": "SHA3-384", + "content": "a2ee26ecb7b1ca94f86529759fbe78bb933a022ab91d6f5a186e96979f369a06412f3e324ecf978b1355ce8f84995049" + }, + { + "alg": "SHA3-256", + "content": "2ca84e16490f8c4575244dd2177255c43faf3f1b65e02eae4409947defd6647e" + }, + { + "alg": "SHA3-512", + "content": "77267acf839c6a8692c042427bd26b1b685e1019d4e3f2c54714f970e569791e936d67297ca4bfb6a06995b6b75efcc289b666feffbb7ab5f23c4a8cba760fa3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "json-path", + "pedigree": { + "commits": [ + { + "uid": "bf685b0279df186202067b467ce05f68dd5821f9", + "url": "https://code.engineering.redhat.com/gerrit/json-path/JsonPath.git#2.9.0.redhat-00001" + }, + { + "uid": "af7e516c69df680a6584fca7180ef082eb67c96c", + "url": "https://github.com/json-path/JsonPath#json-path-2.9.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.jayway.jsonpath/json-path@2.9.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.9.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "description": "Jakarta XML Binding API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakartaee/jaxb-api/jakarta.xml.bind-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakartaee/jaxb-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev" + }, + { + "type": "vcs", + "url": "https://github.com/jakartaee/jaxb-api.git/jakarta.xml.bind-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12110212" + } + ], + "group": "jakarta.xml.bind", + "hashes": [ + { + "alg": "MD5", + "content": "0c8f9991081def819435c3ff36e4d93f" + }, + { + "alg": "SHA-1", + "content": "6cd5a999b834b63238005b7144136379dc36cad2" + }, + { + "alg": "SHA-256", + "content": "0d6bcfe47763e85047acf7c398336dc84ff85ebcad0a7cb6f3b9d3e981245406" + }, + { + "alg": "SHA-512", + "content": "2e57ce867ae3592959243ab9d7d064b09d9587933c98f89f5d5eeb8fe70556a53fea6db91520a2e086555684e8917f4001741bd8ffb07d26c59fe95c13d71fa0" + }, + { + "alg": "SHA-384", + "content": "7ac5da337fccfa426b48691febed0d874a8e9a6a230bb7a53169f902e5b499778106f7b710afbe133dbd7bfacca693a0" + }, + { + "alg": "SHA3-384", + "content": "fc952425a51459a5d18dc7b6315625c55889e1b92e700450c84205506e5107ca4c7c8bc449190220bf471db3dcbf9c8a" + }, + { + "alg": "SHA3-256", + "content": "a78dd7c5883b16cf899495930e653650005c71b4d9b509e56cac4665778d715e" + }, + { + "alg": "SHA3-512", + "content": "bdf9db79b8ade9421c3f5fc497ebe13a552be5852d99cedfa38bb6c760c8bf190f88204ab6e02442db5fb24378afc6112297c5a582d4e721de71285405a6429d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.xml.bind-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.2" + }, + { + "bom-ref": "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar", + "description": "Jakarta Activation API 2.1 Specification", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakartaee/jaf-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakartaee/jaf-api/issues/" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/jakartaee/jaf-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11999753" + } + ], + "group": "jakarta.activation", + "hashes": [ + { + "alg": "MD5", + "content": "76e7b680375ea9f40f3ddbd702efcd25" + }, + { + "alg": "SHA-1", + "content": "fa165bd70cda600368eee31555222776a46b881f" + }, + { + "alg": "SHA-256", + "content": "01b176d718a169263e78290691fc479977186bcc6b333487325084d6586f4627" + }, + { + "alg": "SHA-512", + "content": "aaabd4d6085a07035eaaae7b5a81aef429fea76e7fe1c8d29971e6595f0adad6bcf1088cff8a1c8936d739b0e3fce4b845323032f046b7edab2eaebd0e10a2ad" + }, + { + "alg": "SHA-384", + "content": "4c4e73f59bf09342ca7691fd4855b41d3466da80618a5b7df059a2d89cf6d9779a4af751a6c4a9c48e5025c3ff75f42e" + }, + { + "alg": "SHA3-384", + "content": "20be816700c87778e9453d41b6d8cb9dc992a092a308a9b7f2dfbf72e2393940a7d666c46625f130a2b57bc414df85ca" + }, + { + "alg": "SHA3-256", + "content": "8a574b0a249842ea1b397d4cdef9b6d00b34ce8a849ea34184cdf45ac5aafe67" + }, + { + "alg": "SHA3-512", + "content": "69cfb7dddda70ac1fca272ace0a3d5551b85dd60a6dbaf987ee777fbf573b420d13f06b8990ae70e8fe063f92b78c8a447cf9309ba516a5e993ba2d49cca8d23" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.activation-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.3" + }, + { + "bom-ref": "pkg:maven/net.minidev/json-smart@2.5.1?type=jar", + "description": "JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.", + "externalReferences": [ + { + "type": "website", + "url": "https://urielch.github.io/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/netplex/json-smart-v2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12310098" + } + ], + "group": "net.minidev", + "hashes": [ + { + "alg": "MD5", + "content": "88a65001b616c2e7796f9263ad97bbf1" + }, + { + "alg": "SHA-1", + "content": "4c11d2808d009132dfbbf947ebf37de6bf266c8e" + }, + { + "alg": "SHA-256", + "content": "86c0c189581b79b57b0719f443a724e9f628ffbb9eef645cf79194f5973a1001" + }, + { + "alg": "SHA-512", + "content": "a7ead3758b105b2750ce7a19865799232a177a3373ed1e72c553c98955ca911c2d8224fedb0261099b506d5b2c5c203e2edabf24f8eb4aab75c0522affac366d" + }, + { + "alg": "SHA-384", + "content": "9464cc76829a212caab314c0ec23ddb738e516f42c7ef345a5d507bea363d7f655c3fbf70287aee5e1241ba770cd91bb" + }, + { + "alg": "SHA3-384", + "content": "48e1f7eaafc02c3bc644374d23613487d617d5723a892f93ce1305cd2b22931afdf0b9ecd693055ae7c4ecba61c9a08a" + }, + { + "alg": "SHA3-256", + "content": "541e3245c19bf583ca53e606fa309d9cadea5192543cd155c471b4e9aefdf158" + }, + { + "alg": "SHA3-512", + "content": "44ed703a3c31d43feb4d767039e6d0412769ff121d26c1f06973286d59ceb2f90502db08117390baf7f64980f8210fcfb981230b026c3938f88bc0b82ddb79ad" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "json-smart", + "publisher": "Chemouni Uriel", + "purl": "pkg:maven/net.minidev/json-smart@2.5.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.5.1" + }, + { + "bom-ref": "pkg:maven/net.minidev/accessors-smart@2.5.1?type=jar", + "description": "Java reflect give poor performance on getter setter an constructor calls, accessors-smart use ASM to speed up those calls.", + "externalReferences": [ + { + "type": "website", + "url": "https://urielch.github.io/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/netplex/json-smart-v2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12310096" + } + ], + "group": "net.minidev", + "hashes": [ + { + "alg": "MD5", + "content": "51e60dbf9ac51f6666f0077317990944" + }, + { + "alg": "SHA-1", + "content": "19b820261eb2e7de7d5bde11d1c06e4501dd7e5f" + }, + { + "alg": "SHA-256", + "content": "2796ae857d0c7be4bc3580daa4d3828d555212355f4c83d38dd0af0742b3c812" + }, + { + "alg": "SHA-512", + "content": "01db07e67d7902726739f83606df4fd99945682486903a8f27079d2e15b2d79059af209ae19287e10b62d54d2763f4fcaf90478d402957a4f76c90db31bf466a" + }, + { + "alg": "SHA-384", + "content": "a3d613de87fc94ddd60cfb7244ecbc300ac48f1f39d5a5f714f17b057e745f2bffa42089fff71b99ab60ceb73b022b2e" + }, + { + "alg": "SHA3-384", + "content": "126995f1c9f490f71ad455992ca75ea41c97ba94787a2f568ca95f4dc4ae13a55c9a39c7bff071d8ce1b5860248e8de0" + }, + { + "alg": "SHA3-256", + "content": "6b3f28824a6ba164fc9446128dcad927928e83f7ee13c7ad8aaf8d7fed89f389" + }, + { + "alg": "SHA3-512", + "content": "7851f5e83d5a65a859080f099147bb5f5da6227a4c778b094a88041f844cfd49e151c28808bf6606720c18f41698e321dc661d51a47ede3ea987d37c003191da" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "accessors-smart", + "publisher": "Chemouni Uriel", + "purl": "pkg:maven/net.minidev/accessors-smart@2.5.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.5.1" + }, + { + "bom-ref": "pkg:maven/org.ow2.asm/asm@9.7.0.redhat-00001?type=jar", + "description": "ASM, a very small and fast Java bytecode manipulation framework", + "externalReferences": [ + { + "type": "website", + "url": "http://asm.ow2.io/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://gitlab.ow2.org/asm/asm/issues" + }, + { + "type": "mailing-list", + "url": "https://mail.ow2.org/wws/arc/asm/" + }, + { + "type": "vcs", + "url": "https://gitlab.ow2.org/asm/asm/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12914549" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BC2NCY72FVAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.9.2-gradle8.3-gcc-cpp-make:1.0.0" + } + ], + "group": "org.ow2.asm", + "hashes": [ + { + "alg": "MD5", + "content": "53b0625275849a6ecad12580181f837d" + }, + { + "alg": "SHA-1", + "content": "86dcb5ca358bb9785d3819a4fc4ab1d19093bc7d" + }, + { + "alg": "SHA-256", + "content": "757161f8aabf7b46902bab54a0698ec842856bbe30217a9d793e648d58b7e29b" + }, + { + "alg": "SHA-512", + "content": "186c6c1ecd62060e9b49d5f7e11f70f1aecebdfc4d121c927d5d1c9301fdf491b4620ae2bbd67e81a5a0335c11e7671f3acbdcf1fa4fee7537e2942db0e5f035" + }, + { + "alg": "SHA-384", + "content": "737fee473e9110c567fdbec969940187e35ad33a0421f69cc1a112ec805f30e763edaca2ef3f76db5c7e7603aa2db1f0" + }, + { + "alg": "SHA3-384", + "content": "216890f58e6c4677a00ebc1428c2104d4906880e6802d32c876634e44dff39c32adeb0ab2179416ca708bd18ec43fda2" + }, + { + "alg": "SHA3-256", + "content": "ced498a18407d7fa3d8b734be05f07ad9602fc6aba94c042844ca94178dfdd90" + }, + { + "alg": "SHA3-512", + "content": "803d12076862b5ca78c840e8aa97b3ada93b3481c34d1b47f38778aa40354928db59c7ed9dea17ad85c9e5b850570e35c7c9f5833d36a4d44250bf2fcec6747a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "name": "asm", + "pedigree": { + "commits": [ + { + "uid": "6bd785d7afbce69e8a979f9d1aa3ca2c0c9a35ff", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/asm/asm.git#9.7.0.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.ow2.asm/asm@9.7.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "9.7.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/net.bytebuddy/byte-buddy@1.14.19?type=jar", + "description": "Byte Buddy is a Java library for creating Java classes at run time. This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.", + "externalReferences": [ + { + "type": "website", + "url": "https://bytebuddy.net/byte-buddy" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/raphw/byte-buddy/issues" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12722411" + } + ], + "group": "net.bytebuddy", + "hashes": [ + { + "alg": "MD5", + "content": "745f8db2db7678ff12cb654343cee830" + }, + { + "alg": "SHA-1", + "content": "4c0c637b8f47dc08f89240e6f59900011752c97b" + }, + { + "alg": "SHA-256", + "content": "8415a44d841b2cdecdf5d73a05c29a8cf92dc2b60fca7ff7b3f21cd431b5a4ec" + }, + { + "alg": "SHA-512", + "content": "b3b438c51836b316d504e30ec2d76924fb1961a25a0239c0c99ebe7a07d4fde3ffea8c64b91200c7f1d471302fcbf7e4eb4e3612642ba1518f4c87efa0d6a79c" + }, + { + "alg": "SHA-384", + "content": "52e2eafd77548784c802a5b6f2cbdeb8ea10292d9ac319168125f6559689f5f2d4acb93af5664d06af82939c1bf86599" + }, + { + "alg": "SHA3-384", + "content": "a1dbc484541ea62d096d82f66f01ca0ea19d35e91219059f151521d292dc8e68103f7548eec06f325d443cbc5fb56617" + }, + { + "alg": "SHA3-256", + "content": "0dfad9e0a763a9a3d6ca200c2c556d2746003be708dbfdfb18f77a2e2dbb0577" + }, + { + "alg": "SHA3-512", + "content": "926b12b2d87d46d97c636bcf42ea85f5002d02bc1d9b725c2ad16815f1faf04cd36865ffaf4dfacf0bbc3f3c081a1b6a3a08d5abd1819024a0d7eea21ea5ea1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "byte-buddy", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.14.19?type=jar", + "scope": "required", + "type": "library", + "version": "1.14.19" + }, + { + "bom-ref": "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar", + "description": "Core API and libraries of hamcrest matcher framework.", + "externalReferences": [ + { + "type": "website", + "url": "http://hamcrest.org/JavaHamcrest/" + }, + { + "type": "vcs", + "url": "https://github.com/hamcrest/JavaHamcrest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12905733" + } + ], + "group": "org.hamcrest", + "hashes": [ + { + "alg": "MD5", + "content": "10b47e837f271d0662f28780e60388e8" + }, + { + "alg": "SHA-1", + "content": "1820c0968dba3a11a1b30669bb1f01978a91dedc" + }, + { + "alg": "SHA-256", + "content": "5e62846a89f05cd78cd9c1a553f340d002458380c320455dd1f8fc5497a8a1c1" + }, + { + "alg": "SHA-512", + "content": "6b1141329b83224f69f074cb913dbff6921d6b8693ede8d2599acb626481255dae63de42eb123cbd5f59a261ac32faae012be64e8e90406ae9215543fbca5546" + }, + { + "alg": "SHA-384", + "content": "89bdcfdb28da13eaa09a40f5e3fd5667c3cf789cf43e237b8581d1cd814fee392ada66a79cbe77295950e996f485f887" + }, + { + "alg": "SHA3-384", + "content": "0d011b75ed22fe456ff683b420875636c4c05b3b837d8819f3f38fd33ec52b3ce2f854acfb7bebffc6659046af8fa204" + }, + { + "alg": "SHA3-256", + "content": "92d05019d2aec2c45f0464df5bf29a2e41c1af1ee3de05ec9d8ca82e0ee4f0b0" + }, + { + "alg": "SHA3-512", + "content": "4c5cbbe0dcaa9878e1dc6d3caa523c795a96280cb53843577164e5af458572cde0e82310cf5b52c1ea370c434d5631f02e06980d63126843d9b16e357a5f7483" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "name": "hamcrest", + "purl": "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.2" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "description": "Spring Core", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222444" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "11071d118a4ab8f0b8f381887feb2797" + }, + { + "alg": "SHA-1", + "content": "79a68346b37cbf055b8a1124836b4c65eccf97c6" + }, + { + "alg": "SHA-256", + "content": "958f5596c6e3170b28cf4e963b54c82dbb6ce3424d5eecca86090652a6c1152e" + }, + { + "alg": "SHA-512", + "content": "dc91acc199b7bc311c78f84f314c7525acfaa14aacf5f38673deac02f19e2f73543dae3965f8f6aa06ac5c185c09127cefe7e74d5b9265f693475af52959fbbe" + }, + { + "alg": "SHA-384", + "content": "eceb2cf93b3d5e452abe929b5853fd3e921cd35a49675a798c0170dcbc3b42e5aa719a9b51f650a52703b7de0f5c6a02" + }, + { + "alg": "SHA3-384", + "content": "059e05b1a0b30e9940dac3cc3d4015ca33cd8e60123935aa8a84099b34ae369a36ea080c3f817fcc9817c8183011ea7c" + }, + { + "alg": "SHA3-256", + "content": "1ee9231638e0775ddfd271e6da99f72aca1718943181efaffda3c60d7c9b9a91" + }, + { + "alg": "SHA3-512", + "content": "04efb22535c1c9d7f75f68bc148fb053b15e76172cf1a1b9646965197c1ab14d405f1c2e6d2e34ca0881fc111d5824db23088f02080fd50af8477789eeb47273" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-core", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-jcl@6.1.15?type=jar", + "description": "Spring Commons Logging Bridge", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222449" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "dc2501300f4c9b52d54e7e751285f81b" + }, + { + "alg": "SHA-1", + "content": "8ea00bba140aac6408d5b07991def838e4bd9e2e" + }, + { + "alg": "SHA-256", + "content": "19c569d8b730618a1b3d64feb12bb6a24dd70f5bd1175a77250faf62b3b92f2e" + }, + { + "alg": "SHA-512", + "content": "8f69fef1a97a284c8ea806921b6d770365bf01d502d3b283468c15a01f0145bc2a300c61f794747928cac9a1f55215024bef96fa0ba8ad6e4a36aef4c4b0245d" + }, + { + "alg": "SHA-384", + "content": "6fba8c1ee7c0dcec4096cc0f19b5cc71c2d0f77d70925ceabcd873a79ea0fc5cf310a1db2fa4ca45305c9d5806a07a7c" + }, + { + "alg": "SHA3-384", + "content": "88f5efcfd61c82bfdcfc7ee9ef63150abf006e8c37a7353807d010154940f028c7ebcb12e0b54f82eb031857cea512e1" + }, + { + "alg": "SHA3-256", + "content": "3d70a670a52ef75264c8b374845b7cadc397dd9c51f8e1d053905b6c40ea5fbf" + }, + { + "alg": "SHA3-512", + "content": "942fc1393c960a36daff8f0b7fd0165119a5083c4a162d1878c073128409bf5cb123ece9840de5d1798383004e8298fb24903c9f5fd36028b790c8b319070711" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-jcl", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-jcl@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-languages@4.8.0.redhat-00017?type=jar", + "description": "Camel Core Languages", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-languages/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-core-languages" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233595" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "5c7b14fdb8f7861ee177639955385d73" + }, + { + "alg": "SHA-1", + "content": "7a7e36ac4f1da1b482025fc6b64ec1a9796a4d85" + }, + { + "alg": "SHA-256", + "content": "49badaef135d8ecba1987f558ab074fed4e7c67460162bd46a26698fa8fb2199" + }, + { + "alg": "SHA-512", + "content": "30564f3a01edf0acef3ff31966e572d3e29f959fa1963cf004d07bcf721b8d1118d0344f909d3115fe00bd6ebd8030499dc74cbc9bfeb5dfa7fcef36fc88286c" + }, + { + "alg": "SHA-384", + "content": "3ad8c362e500dd6c58f214aca66ccfe1e79aae65a6fddcbe6b199c54433cdadb2223a80504f38c4ca4d1880a8828d5ca" + }, + { + "alg": "SHA3-384", + "content": "74700bcaae9ef1938a6195ef1a9816f06151342f80b2182313c44f8ffb8784e984761b5651b1a2f50eb455c8ae5ae344" + }, + { + "alg": "SHA3-256", + "content": "ad72ada4a4f75d7f5fa2a5731bb5b493614c9e4fa1b0a1144a7ccf176baad9fd" + }, + { + "alg": "SHA3-512", + "content": "8c94ef85c7363815fbb2debf02410a5416cddf84bcf7cc66aec28f38e8f04038f1a08f9fe6d990b6172093d914dfecbc18ce25a2b8d0cc712835d6c82bb6e4e0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-languages", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-core-languages@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-spring-xml@4.8.0.redhat-00017?type=jar", + "description": "Camel Spring with XML DSL", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-spring-xml/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-spring-xml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234047" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "bbb1c70e7e6d8d8ee76ee72316a337f1" + }, + { + "alg": "SHA-1", + "content": "31bbbf12ce28a609da84fe9ba38556385bfa396f" + }, + { + "alg": "SHA-256", + "content": "b800493c6454e3fd0b6b7f9b55184dcdff41c4d5d8196adca1bb22a209a4c3a5" + }, + { + "alg": "SHA-512", + "content": "10ca620f034f84b32b2e328fb14a431922b2ccd32f12ebe4889d8a9178dc3c0ed8e4fa84c99a2fd5f13890c577cf565986ee25b94d3f87e8afbdb3f422cd187c" + }, + { + "alg": "SHA-384", + "content": "9927e312b74deef4aadb87ccf24f3aea344ad94ce107530fd3e540876157f3a5d1f73a2b5e0b07c2ea9dd3d5da30d395" + }, + { + "alg": "SHA3-384", + "content": "eba737d07fe6679cd83968c1f29ef1402900ad50fe577dc2f4cff64d177522e68f7de4f08c7f96b6d845d03075dff91e" + }, + { + "alg": "SHA3-256", + "content": "b22ad73c76efd503fe720198cc55af10e729ba0d61ab7f0900190977f51d577b" + }, + { + "alg": "SHA3-512", + "content": "7125cb489c9c15f483a82fda2fa509d25e8c31260734399bade31a90ff34a9113e104e87a8ba647e01795d5aa27ef14d8cd98fd86470831e94b89db335405290" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-xml", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-spring-xml@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-jaxb@4.8.0.redhat-00017?type=jar", + "description": "Camel XML JAXB", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-xml-jaxb/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-xml-jaxb" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233983" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "69391725f8f74ecf7e836005ae0226ae" + }, + { + "alg": "SHA-1", + "content": "2ab65d4aa4acfbed50527a81a50ca1c36857be5d" + }, + { + "alg": "SHA-256", + "content": "b52cb6f6499048175124f6f6ae10048552b55b62ec74a504395e9d178773e925" + }, + { + "alg": "SHA-512", + "content": "4dd50edf319041ed28be51c07d7a5e26dc9d556f8e666bcaa56e1ad620c3aaef875bd79c07a3a8e4f4d63d837f0f3e5ee959a2f5b5f5cba0cd3badab96b4f4a3" + }, + { + "alg": "SHA-384", + "content": "795a9bea5fbd3412a9ac9a918b2b195f029b9bfa24dae5317ade8d5518281b309aaefa4c02863032a7d4c8c771ddb4a2" + }, + { + "alg": "SHA3-384", + "content": "298e8215cfd5933464b38f8d9dd1ebf3b47bc096e1efe44ca3579ccfc24f745597b723a86660d74760d3d1c5418d863c" + }, + { + "alg": "SHA3-256", + "content": "34d0d6a5bccb752dce9a7b833daa7e4abffb6999d1004aa63a67e79066cce034" + }, + { + "alg": "SHA3-512", + "content": "f645938a8b0f69381a1e9b18fb05d9509e130660266f4e26d11cbf5efee751fbe993da6ed9edfad8a8215e1874f9ff61bd7701513c72648b83e3f70141be5cf5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-jaxb", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xml-jaxb@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar", + "description": "JAXB (JSR 222) Reference Implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://eclipse-ee4j.github.io/jaxb-ri/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues" + }, + { + "type": "mailing-list", + "url": "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jaxb-ri.git/jaxb-runtime-parent/jaxb-runtime" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12106020" + } + ], + "group": "org.glassfish.jaxb", + "hashes": [ + { + "alg": "MD5", + "content": "c7384f1f95b8a8e15291485ff9dbe4f3" + }, + { + "alg": "SHA-1", + "content": "ca84c2a7169b5293e232b9d00d1e4e36d4c3914a" + }, + { + "alg": "SHA-256", + "content": "485d8940e76373a7f300815ea5504bf5b726c234425ad30971019d133124cca4" + }, + { + "alg": "SHA-512", + "content": "bc38b19aeeed6bf4c10e06aa047e3cffab91f94ff5bd86feb78e748814152c8185633f244aec986d98b6688f38c6cd41abbabb8e8a901fc44ad313fe1b710559" + }, + { + "alg": "SHA-384", + "content": "2e4babe0411d6e894aa1a00521755d3e250f04ccf42f582a7dfad7c7d5f9257b68b31fb2e5b00fd88ec0885efeb15fc0" + }, + { + "alg": "SHA3-384", + "content": "56de25b667f12502fe6147c3fffbda8941a31aebf5ead598826ecb6f035f7e8a81d7c34da8e6af2c411071a59aaf7a0f" + }, + { + "alg": "SHA3-256", + "content": "2f03cc3ef3f63e0effd4f2744dd8080fd7d79a5f9f0debe02c9da808fea466d1" + }, + { + "alg": "SHA3-512", + "content": "137c19afcbe030cdd69bebf5ecd5a2060bd22892e690452ae6c02f187ba499bbbfde8729256fa3b4ae09b21350acdb9e1bbb53db948de873f7b6887dd58a0222" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jaxb-runtime", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.5" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jaxb/jaxb-core@4.0.5?type=jar", + "description": "JAXB Core module. Contains sources required by XJC, JXC and Runtime modules.", + "externalReferences": [ + { + "type": "website", + "url": "https://eclipse-ee4j.github.io/jaxb-ri/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues" + }, + { + "type": "mailing-list", + "url": "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jaxb-ri.git/jaxb-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12106018" + } + ], + "group": "org.glassfish.jaxb", + "hashes": [ + { + "alg": "MD5", + "content": "ab09aef6bebd4438b0a02707881801e4" + }, + { + "alg": "SHA-1", + "content": "007b4b11ea5542eea4ad55e1080b23be436795b3" + }, + { + "alg": "SHA-256", + "content": "ad3fd9bf00de3eda9859f70b6cfb011e2fe9904804e16a2665092888ece0fdca" + }, + { + "alg": "SHA-512", + "content": "8798f8106541c9fa28507c8f77356830cf16d9f2dd22257c782901b17f7f79e73af1912d07dec2efff236f0e0f36723b3e61faaabd34442618b0d7fa970a7a31" + }, + { + "alg": "SHA-384", + "content": "cf9131a3a3b2f4ad240fdcbe6f631c8cae84df133801697a0ea5b28f76b871c6a07d0ee78b7b3351b052c9694d7a5c6f" + }, + { + "alg": "SHA3-384", + "content": "f223265e04dc5807ad4d6a8a2ac852c1cbaf5e44e524bbcc22a3119bb13d1c31d47d7d0f47d9911238f5364b1c17427e" + }, + { + "alg": "SHA3-256", + "content": "720e1373c6dcb1986665cb3a5b20c2623825a29408bef8c28475b3362926146a" + }, + { + "alg": "SHA3-512", + "content": "beb8b255947aa465ae33d3adc2009745fe4466f123514e26589245b166bc07408022640ebb2284662be7c259a800c9e5bc78fd599441e088c2156a6531dd0217" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jaxb-core", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-core@4.0.5?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.5" + }, + { + "bom-ref": "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar", + "description": "Angus Activation Registries Implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/angus-activation/angus-activation" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/angus-activation/issues/" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/angus-activation/angus-activation" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12019610" + } + ], + "group": "org.eclipse.angus", + "hashes": [ + { + "alg": "MD5", + "content": "42bba74155dc773eca277ee7a16f74be" + }, + { + "alg": "SHA-1", + "content": "41f1e0ddd157c856926ed149ab837d110955a9fc" + }, + { + "alg": "SHA-256", + "content": "6dd3bcffc22bce83b07376a0e2e094e4964a3195d4118fb43e380ef35436cc1e" + }, + { + "alg": "SHA-512", + "content": "1482c759843c23e0343ca554194862d53ac18a04ab4691b3bf05145abb77283617022a895c5ba2e33f62b77c2cfb906b90d0cb690623621b11f35194b54b1180" + }, + { + "alg": "SHA-384", + "content": "0263b0f42e56f9cbf4a2446c26a29d6397477561c2149f7b7d0e62fb28ab4315d50faf4e96aff088d3ac204b16f90892" + }, + { + "alg": "SHA3-384", + "content": "e77e5bf8be9f98ed06a652e2317253bb29e8f79b26910075332823987b2e1bd3dfbb2d7aeb5a57a454c8632241abcc0a" + }, + { + "alg": "SHA3-256", + "content": "41d7d300d1399e4706a0ead464e13702d85023598a0a81899e40ee8eed847826" + }, + { + "alg": "SHA3-512", + "content": "dbdcb824069f0dcf9f9d362b8db7c2efa77f28d77e07c204a28e56b79ebfc478d9c5f9e5f01c7269d3afc0db0e6126d74237cc5a51b5e9ec6b6664580a06de8c" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "angus-activation", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.2" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jaxb/txw2@4.0.5?type=jar", + "description": "TXW is a library that allows you to write XML documents.", + "externalReferences": [ + { + "type": "website", + "url": "https://eclipse-ee4j.github.io/jaxb-ri/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues" + }, + { + "type": "mailing-list", + "url": "https://accounts.eclipse.org/mailing-list/jaxb-impl-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jaxb-ri.git/jaxb-txw-parent/txw2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12106022" + } + ], + "group": "org.glassfish.jaxb", + "hashes": [ + { + "alg": "MD5", + "content": "2f5aa7dbd5e326562cff6ce720a1485a" + }, + { + "alg": "SHA-1", + "content": "f36a4ef12120a9bb06d766d6a0e54b144fd7ed98" + }, + { + "alg": "SHA-256", + "content": "917355bc451481f30d043b24d123110517966af34383901773882810dca480e5" + }, + { + "alg": "SHA-512", + "content": "d130f42d36661b536d96bcc15f58b34a8b7bb7a55260a4c763b99a34576fde946fc18f2d28fdb7a5eabe8162e90a1e71308f9a34341fb7cd850a41aa3b88bd49" + }, + { + "alg": "SHA-384", + "content": "079acdca257a1462fe0332baa25e3f61078344dab4373a4509792d975bb236d592337a011f4230fac606658edf190112" + }, + { + "alg": "SHA3-384", + "content": "ef0875a42b7781410d46493f91e48fc51493d8488ede3e6f519fe8f25664022ef1ca9fff4a76834eadc55cad4add7f1b" + }, + { + "alg": "SHA3-256", + "content": "a4818a127bef0476caed634d9f11636085049b4072a48ab6f69b7c493c75aef6" + }, + { + "alg": "SHA3-512", + "content": "021fdea3e5e583e8c06d2d07971231c99d82247e89a2209dac0b92ec88667bffae28c413a663a121fd13bc88d28fa35505c51fa7b782b98ad28828742fb484f8" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "txw2", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@4.0.5?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.5" + }, + { + "bom-ref": "pkg:maven/com.sun.istack/istack-commons-runtime@4.1.2?type=jar", + "description": "istack common utility code", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j/istack-commons/istack-commons-runtime" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jaxb-istack-commons/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jaxb-istack-commons/istack-commons-runtime" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10393157" + } + ], + "group": "com.sun.istack", + "hashes": [ + { + "alg": "MD5", + "content": "535154ef647af2a52478c4debec93659" + }, + { + "alg": "SHA-1", + "content": "18ec117c85f3ba0ac65409136afa8e42bc74e739" + }, + { + "alg": "SHA-256", + "content": "7fd6792361f4dd00f8c56af4a20cecc0066deea4a8f3dec38348af23fc2296ee" + }, + { + "alg": "SHA-512", + "content": "c3b191409b9ace8cccca6be103b684a25f10675977d38f608036ffb687651a74fd4581a66e1c38e588e77165d32614e4b547bff412379f7a84b926ccb93515bb" + }, + { + "alg": "SHA-384", + "content": "9b8e20b08b109c485c654359ede00fcef74d85ac18f9c7978acd47bf630838d21ea193f79d144e66cf0f6992efd82ff8" + }, + { + "alg": "SHA3-384", + "content": "81c4cf19a5d0f078263cc8f9320d4208da28e25b93c1f45885e237148a3a7c7266ba7586a1eb5cd3efc86be6f90082bc" + }, + { + "alg": "SHA3-256", + "content": "218aa7dd7bca7cfdbee752bb1c2737a7066b47058a42b4ee466a14350bcd2741" + }, + { + "alg": "SHA3-512", + "content": "74770476681a130a3057fdfa2df3977b8aa9bbf1a520d9481694d0e9e0635c2e88d74ff73bbb870de34d93d0a4b6eae7f030e4ba12fbcc51debde58897fdcb6c" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "istack-commons-runtime", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@4.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "4.1.2" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-xml@4.8.0.redhat-00017?type=jar", + "description": "Camel Core XML support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-xml/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-core-xml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233999" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "ff1a7a6b9d767c1b32b002455ac97d28" + }, + { + "alg": "SHA-1", + "content": "173d51747bc214bc11b7af3be5da3593bba216ed" + }, + { + "alg": "SHA-256", + "content": "0d537cd9a71d8b8f0143c6950a2113fa3f1b50d80c7a6215b1159384492937f0" + }, + { + "alg": "SHA-512", + "content": "b98d197cc6ebc518254983096c34751dc5aacb336245cce1162662e9b7fd1cde9a582c28f19555358f380f0a38bedef41ec88e74764410aa646042383cf7952a" + }, + { + "alg": "SHA-384", + "content": "709508d80087ee410349c4fb36e426e982227bca4cffdd7959b2f37845e1d0923f05857484c74cdd3134edcd34de0162" + }, + { + "alg": "SHA3-384", + "content": "688897ede274882d82a9a80c8c428c013e2aa1defd0cd077975804995787851496e38f3f5726ef6f7abe4afc458de84a" + }, + { + "alg": "SHA3-256", + "content": "4356faa018f99d7af9088b641af34083176e388b437dca93ff04814c6508fc9f" + }, + { + "alg": "SHA3-512", + "content": "a933d0cac1e33c341be448807d960237c1d1f61b0f97650cecff5fa3d0c1b7a340a1987836975b9ee5d56faa2da18e370de4c642a18dbb42dd249a93af010655" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-xml", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-core-xml@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-actuator-http-metrics@4.8.0.redhat-00001?type=jar", + "description": "Example on how to use Spring Boot's Actuator endpoints to gather info like mappings or metrics", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-actuator-http-metrics" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-actuator-http-metrics" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-actuator-http-metrics", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-actuator-http-metrics@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel HTTP support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-http-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-http-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234633" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "0273868f04134314d0a48539527702bb" + }, + { + "alg": "SHA-1", + "content": "544cb3bc19cc07e136dc2c8b7bccb601e0c6c50f" + }, + { + "alg": "SHA-256", + "content": "be7e6c165920849e27e94c34cdf202ee8ad6ee242a24952787d8e3969b8b9eb7" + }, + { + "alg": "SHA-512", + "content": "9efe11ddc42b05e1be6a4694429f5e01bc7ac619296fa3777564895100f4d9f44093c9ecfc362b60aec361b9657ed5caece81f0c376cd51022c8705584705a40" + }, + { + "alg": "SHA-384", + "content": "fc5d783fefb6c46b0c0de01a85881e5f0ce1b436b862e5089cd90e8043bf48b10a71a9bffd6b368745d232ec589f47e6" + }, + { + "alg": "SHA3-384", + "content": "e84de11faa4867027741d1b983c7964892532f0a76c4df10a30aa5bc584fb482e7180911a39ff85897b18b6a49845c53" + }, + { + "alg": "SHA3-256", + "content": "d4a5775d9e917f77ba4a8b7175dcfc1159690fd58320c358da3856d39aa68b3b" + }, + { + "alg": "SHA3-512", + "content": "ae219e43e608438b11263bcb5a43f55a6616210bd05e5de56471f74f1a6553b36f940d716e51dacfa5771d92e7a5e6fc0361f20f737c743f9355cc5410d4a6a1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-http-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-http@4.8.0.redhat-00017?type=jar", + "description": "Camel HTTP support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-http/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-http" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233740" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c3317a14b1263e7eff9a3029c53eb143" + }, + { + "alg": "SHA-1", + "content": "52385f266443a8b5a508d6ca6d613f2d684096de" + }, + { + "alg": "SHA-256", + "content": "5cec3261e302196a68d7ec684b832386bedafc093e9e8a79dc7e01ac05127ef6" + }, + { + "alg": "SHA-512", + "content": "3c16da3aca40ac9b19e905375edfc83447e95b25ab3427b2f5d5e7e59dde711bf205b487e7015c1757d93a4cfbfae5067a827b015843c6acf60b947c7717200c" + }, + { + "alg": "SHA-384", + "content": "d05ce91d2358784316aa5bc7453ab8a44193ec7a18b64fd0bd3a1dbc24f3a678f4755e7e1a6f3c5b52641224d75c0b63" + }, + { + "alg": "SHA3-384", + "content": "3b5915d20fce199f11af8a29e027e2ee2969f6587bf8578fcc90a4a5c8f393ea22451742a595bf2bed5b596a96c8d786" + }, + { + "alg": "SHA3-256", + "content": "4df3cf74eaf0adb2f0fc5ebbf0d11439de384b77bb68f25f194ecee057987032" + }, + { + "alg": "SHA3-512", + "content": "60d4aa7389389f6509727a95941e50411838d2502b6604b103f367d9af86716aff54e4952b134ef59d59ed207091fea77507c08395ace8444ea68b38ea2c718f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-http", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-http@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents.client5/httpclient5@5.3.1?type=jar", + "description": "Apache HttpComponents Client", + "externalReferences": [ + { + "type": "website", + "url": "https://hc.apache.org/httpcomponents-client-5.0.x/5.3.1/httpclient5/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/HTTPCLIENT" + }, + { + "type": "mailing-list", + "url": "https://lists.apache.org/list.html?httpclient-users@hc.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-client/tree/5.3.1/httpclient5" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546492" + } + ], + "group": "org.apache.httpcomponents.client5", + "hashes": [ + { + "alg": "MD5", + "content": "de1810a606b27192cbf5bbad9c25a648" + }, + { + "alg": "SHA-1", + "content": "56b53c8f4bcdaada801d311cf2ff8a24d6d96883" + }, + { + "alg": "SHA-256", + "content": "08346a757c617f6ecc66af9f099260adde1f3a1351fa81cb22fc17482b31f823" + }, + { + "alg": "SHA-512", + "content": "4c2d75106af8470789f0e08305e64ad86528f2f737da230e561892d33dbca0b6e2dbced2a075f0744cee7801c06ef174481540661b3c9a1bec6d6f93938b05bc" + }, + { + "alg": "SHA-384", + "content": "27470f74660b89f8a0af562a4edbd244afff4947b0fa7364c61e53ca49713efbca49e661214590f532c4acf9cfd66eac" + }, + { + "alg": "SHA3-384", + "content": "d25be0f1c5e0c02de0adf7113e591f10bd7fab20c168a20b7d15c859b252a6dc3ae3a24098e838d95c179ab3107f07b6" + }, + { + "alg": "SHA3-256", + "content": "9e22ce6935e71d12d1be70ef0b7cea9a87191c767de2904cb82fcb6e58d0e9b2" + }, + { + "alg": "SHA3-512", + "content": "9d36e201e469dd357ef715bba7beba62dbea98daefcea3b793fd285c2ffade97d72b35a07f05015fbc2d5b4fa5db58ff5ecf40e1269582a6c3e53ed62cbf97f4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpclient5", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents.client5/httpclient5@5.3.1?type=jar", + "scope": "required", + "type": "library", + "version": "5.3.1" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar", + "description": "Apache HttpComponents HTTP/1.1 core components", + "externalReferences": [ + { + "type": "website", + "url": "https://hc.apache.org/httpcomponents-core-5.2.x/5.2.5/httpcore5/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/HTTPCORE" + }, + { + "type": "mailing-list", + "url": "https://lists.apache.org/list.html?httpclient-users@hc.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-core/tree/5.2.5/httpcore5" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12629771" + } + ], + "group": "org.apache.httpcomponents.core5", + "hashes": [ + { + "alg": "MD5", + "content": "419f7b3172ebee12dd64af978feb4351" + }, + { + "alg": "SHA-1", + "content": "dab1e18842971a45ca8942491ce005ab86a028d7" + }, + { + "alg": "SHA-256", + "content": "9552b9e06cef3170e37046092de115c33a7cb48ee7ef0d87f1d5650dee7e1b0d" + }, + { + "alg": "SHA-512", + "content": "b23e90b4b891378c2e4ff35b16f4a1dd97d2a11ca10ee15441e82ccb3d1a7589ea50fa277e7f557db472e3946cf46f371a265a3bbd0ff70801d99a6c90f6bbf3" + }, + { + "alg": "SHA-384", + "content": "01259db34f52668fd409912b49e8370a4916f0bc4e7e31a7219facc97041d842d06d8b9616273923775c1e28cb2aa257" + }, + { + "alg": "SHA3-384", + "content": "844e77f78dbb01e36758c61bbad37c6e63d5cf2bc351788d649bdde4daa60b9a1fe2eee7bc8d105d3f4e95f822dfe9e1" + }, + { + "alg": "SHA3-256", + "content": "d033fdbdca628a9c69aaf684766d039a663fabece75900064b3543d089b46573" + }, + { + "alg": "SHA3-512", + "content": "1d46155ae902360a4f267ed08165f1424a0cab440b66d429b716187a96125e7bfcb90a71af7266ef2fd5a81d75ead59dbeacf4b943d404750487ff01c4c84903" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpcore5", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar", + "scope": "required", + "type": "library", + "version": "5.2.5" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents.core5/httpcore5-h2@5.2.5?type=jar", + "description": "Apache HttpComponents HTTP/2 Core Components", + "externalReferences": [ + { + "type": "website", + "url": "https://hc.apache.org/httpcomponents-core-5.2.x/5.2.5/httpcore5-h2/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/HTTPCORE" + }, + { + "type": "mailing-list", + "url": "https://lists.apache.org/list.html?httpclient-users@hc.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-core/tree/5.2.5/httpcore5-h2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12629768" + } + ], + "group": "org.apache.httpcomponents.core5", + "hashes": [ + { + "alg": "MD5", + "content": "4b2e61bdbf5b4611d75933b078f7379c" + }, + { + "alg": "SHA-1", + "content": "09425df4d1365cee86a8e031a036bdca4343da4b" + }, + { + "alg": "SHA-256", + "content": "8b9e2dd6d5cf174220863475f0c648152c531370d4ab41abb6035c41fd336f92" + }, + { + "alg": "SHA-512", + "content": "a6c3412be01156924005165df8eb23301147253d70db8f9435127184f2357b65b433c046653d65a13c9a3f49e4c78435932e90c985fe611ec7cca64c441db582" + }, + { + "alg": "SHA-384", + "content": "36b33d83c98b8744b135e765aeb200b4e797009177e2360b0841efbf6a15a14b16997c18ca3140682ed28cbb0c2ef00c" + }, + { + "alg": "SHA3-384", + "content": "63f2c417831d0b7d2c081e6d4278317078800c67d7c46df6e8ca603c1b57aae36644b04e88719f5ec94382b4fdb2a006" + }, + { + "alg": "SHA3-256", + "content": "6c142841d856d6385b74a244a1dd99ec075cafa632d751e737080580435bff6b" + }, + { + "alg": "SHA3-512", + "content": "5955928c6b9f8ef7474c98836f25a96bff0ca703adb26c797fe72685817216a996d40ea1de9141e16bf1846424b2195eff75c12fc6eca5a7d7e2569ecefad61d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpcore5-h2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents.core5/httpcore5-h2@5.2.5?type=jar", + "scope": "required", + "type": "library", + "version": "5.2.5" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jackson-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jackson-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234618" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "9330b1288e42703025d83041c4b6437b" + }, + { + "alg": "SHA-1", + "content": "770fef39dda6051b9060dfd87cbc61e25a331794" + }, + { + "alg": "SHA-256", + "content": "9fecabdd8ba1d1b4497f4ba8c288e640bcefd2a36945f7088d54b53e5f6d7f95" + }, + { + "alg": "SHA-512", + "content": "b37255a3fadd15fac598a4e05436280e10af82dd0faf88f605e3c9e2e6ad248f04bdfc7b686539511a63fee3e8e89b44337a0b267d9e22b8d3ba264f568d5daf" + }, + { + "alg": "SHA-384", + "content": "25451d30b6ffbfaf375b5f6ba0951558e6e71557ad514be236f23276a7c4479721393e39691cd41a784687c00db91902" + }, + { + "alg": "SHA3-384", + "content": "b374117a6dd655571820e13c63a70824c47e8b7e735349b12cf0b0927da39223d664d5afa1f0a0052c92b86b8267b9ff" + }, + { + "alg": "SHA3-256", + "content": "9c2f3a830469f24c57e0ce1aa5649d73ef611edeb796aa71ad6fe5ece6fbcb75" + }, + { + "alg": "SHA3-512", + "content": "ceb1a35c5fbdd3a9361463084fbbfc6fe8528a54ac4459cf141b2315e8db14df6e6f37be364c9a3efd704749e26c081d377461382b870e2a550dfdefd233ff3b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jackson-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jackson@4.8.0.redhat-00017?type=jar", + "description": "Camel Jackson support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jackson/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-jackson" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233597" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c66e5917a8d2657b623a3bad57479db0" + }, + { + "alg": "SHA-1", + "content": "188954ef2fac11c44af111b2c650afd18fe2446a" + }, + { + "alg": "SHA-256", + "content": "eec4cfcdb45c15266ea87908bb82da7bdb30b04c14a094c324d8c828e81addfb" + }, + { + "alg": "SHA-512", + "content": "fc105c32d464499b78f728e18374eadc9e1ec4790d9cf995eed49894666e2d2c8659208aa594cefe7c418edd56f8ffe8b9b86506a219b34fda15c2819f937602" + }, + { + "alg": "SHA-384", + "content": "ed226a8ec8c3f4daa00454dcb248a4e8f46124181bd6dd0ea7f39fbd7a03b629a98ad238b2ee513761e51c74afa87347" + }, + { + "alg": "SHA3-384", + "content": "13d3ef9eeff6859c16bd84e69bf38c61758b3da266d49e02c4a1eeb680c049d7d5517372515f03fd0c8405d41f66eb0a" + }, + { + "alg": "SHA3-256", + "content": "33bcff2d17900a70b98678f71cea0bc7e6c862db42cabb74acc055ce092d64b2" + }, + { + "alg": "SHA3-512", + "content": "5bb99f3a3598a551f3d4485fc0e35b2af130a0edb3b47e6c791354d594af9fd04f98dec1dbe7e5bdb6e6d7e4eec3f189bb28635522b17a80d9c7c0f091a2d6a0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jackson", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-jackson@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-management-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-management-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234723" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "f01d5961c6906a43c38d57ebe42f5b94" + }, + { + "alg": "SHA-1", + "content": "4229b24b43e2e41149c16659422bb2eface62c53" + }, + { + "alg": "SHA-256", + "content": "de06f77f98a0c689dc48ccacdf0c93e6d33c6e32867c0e109aa02fd2a1f5ad4d" + }, + { + "alg": "SHA-512", + "content": "8e075fa2a0d9ea45f0c2a338256df18807aabbc1f316ae1f8a10da77e6b854be52afc1347c929dda1a8786a899a18136fea5ef935a49b7476418bcbbbbad7504" + }, + { + "alg": "SHA-384", + "content": "ce3fab5e726dafd703e462263d7014a24ddadcdca8e2e544d97f4e982f1cd10ae318b6ab68ff8b32dd8dfcb91fee058b" + }, + { + "alg": "SHA3-384", + "content": "ad0856ee7a61cf12ed0b590c4fc8ea651120c3364995b26ddb64b0d69cdf71030ec34d068820c2a8917e69ad6603a02b" + }, + { + "alg": "SHA3-256", + "content": "1b60a39423db3e0470ead0287b7c860f1790a2d4d281a7b1bf1c42aeed0cce68" + }, + { + "alg": "SHA3-512", + "content": "16985c54e24d3e18b290351d3187c3009fa4c80ed3962a6628c45d5d6106fac751e9fc0a7b763530d2afda7934790f0b57f1f621334515966bd2022094ce3d62" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-management-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar", + "description": "Camel Management", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-management/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-management" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234233" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "ba58b9b7bab5a1717572b6ebfd202ed6" + }, + { + "alg": "SHA-1", + "content": "7e371250639f284184256e3aa745384cbe341249" + }, + { + "alg": "SHA-256", + "content": "368e9de9efa956ff47c22a2aab24db55e25fd23541e9b0f212d4413354fb99f8" + }, + { + "alg": "SHA-512", + "content": "2c7a16e35f409f1df6486c14f6686c9f06413f302d267036324e2e5600d4eb495d62fe1cf817c2a79790b821bfd3337fb2c69ba2aff6ece96c715ce14c3687f1" + }, + { + "alg": "SHA-384", + "content": "99ca0b93b99f869b387c3ae59e309bb77b105068b4cfc1b21a4fce61496934e51d9780ade5b4a7fa0faba64ae734f5ec" + }, + { + "alg": "SHA3-384", + "content": "b427ff94234791e997e82abcbdbd2b2699de98cc3ec7031c26e534dc6f8f62e612fb2f9a79a9a010c841e1b5ba661ebd" + }, + { + "alg": "SHA3-256", + "content": "73a08b10c3c5546503516fa639afd9e91c5c08f5826bf0274f69dd45a665cc19" + }, + { + "alg": "SHA3-512", + "content": "4756b1828d3b9d6b6dc0d7cf469308d1e68d4961d75c771f24e0736ce95b7a149ef1c9f8a19aa00e68b0c21c8fbee35095fd227a055d96c31370f4fef3ef0d00" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-management", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar", + "description": "Camel XML IO", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-xml-io/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-xml-io" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233770" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "2b99c4d3b3bc23a6ce3d5cb167daaf51" + }, + { + "alg": "SHA-1", + "content": "a88448ddb5044597030fbe8f6fc30bcd8642978f" + }, + { + "alg": "SHA-256", + "content": "da796f31aff18abf136b598c3469c3dd38d3d156b78a3d0abaca78b7b5f35b3e" + }, + { + "alg": "SHA-512", + "content": "dfab0c82626dd11fef4656463fc7d50068aa8d265d99720ac3e974c7999636d08a4ac56b619bf97f800a21cbe8df62c34d8096bfc1c82e963ec074f969a7581b" + }, + { + "alg": "SHA-384", + "content": "86ccfb712dab286d1ed8d8d12347f82bae5717f0afdb2491e0a9b123350d740b65815856b424bf15105af067b47b35c5" + }, + { + "alg": "SHA3-384", + "content": "01aa119d42638ef787b1e4c586be1dc92682720a99416140c5c4dacebf7715aa408cdd6296a66ef8799a123094f1c160" + }, + { + "alg": "SHA3-256", + "content": "bea39c0ad2b57cad169a719f71c43e18a302c86e80d4126a224d8562bfb2400f" + }, + { + "alg": "SHA3-512", + "content": "7c3c2c790f2de44a19da644d5e9854ef8aea6288b02a276ea8759235f1baf9ef38f66586b7952d9f481580359ccd8213069f530fc5ddd2a8c9733b89412901fd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-io", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Micrometer based monitoring component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-micrometer-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-micrometer-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234777" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "bca71d9cde8d6135f55ee57a29ab08a4" + }, + { + "alg": "SHA-1", + "content": "d6a7aaa4db1c339da35a03d796203974ee04f7e5" + }, + { + "alg": "SHA-256", + "content": "777acc1886aa8c62c136f3400713eac9d77ddd3824d3be233f5c9a3d75a0fce6" + }, + { + "alg": "SHA-512", + "content": "354ed0dc54d7660d56f130d6b24048bc017da8142c27723ba7ffb13a46ff03a5e8ba6d7e6a61dbcf43bec21730cfc48d6fdc7cc30a1d417e269b003eb5d2eccf" + }, + { + "alg": "SHA-384", + "content": "1c4a646c4960528a0282d2e40da6117156c5756c9dfb8a5071d6dfbbde9b633725f13a947a070b88991059ce6179329b" + }, + { + "alg": "SHA3-384", + "content": "ca5aa1d519d5b01a472ed3394c765a10d15403dc6c1f91241b27ee827398529670aa3655a3ec4f47b26815732f93f71d" + }, + { + "alg": "SHA3-256", + "content": "2fc52481b1eae24b252d05071d81e711351783b80d24111c004d37b682a1bc38" + }, + { + "alg": "SHA3-512", + "content": "59bf5e2a34ec0dd162543f67719e001b22103fdeffb0a800d5119788e78ce3bd5f039111c8995257dde835bd6895fa6a88f9c0970cd8d0057c06820f5b42814a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-micrometer-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-micrometer@4.8.0.redhat-00017?type=jar", + "description": "Camel Micrometer based monitoring component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-micrometer/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-micrometer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234090" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "728b135043a937162a1740982fd86f3b" + }, + { + "alg": "SHA-1", + "content": "f443303fb3e8115a8c08193336dac9edbecfe31b" + }, + { + "alg": "SHA-256", + "content": "27703159fefb7d9461d6bbd7bca34649a13f7c7234ceb9462d8ede96a3a7ba3d" + }, + { + "alg": "SHA-512", + "content": "7170d0cb652aaf020db3164215d597cdd1fb1f8bd92cd9eca141caf1836717407515833aa93b36f489763ed4323f84fee494a54e3976100c25125bf6cfe4ea01" + }, + { + "alg": "SHA-384", + "content": "e75cdad6b5493fb494a5feebe295a1d7a828a446fc0a6395a042b85f512f7517c380d2390f894e812229cc287c2cb7e0" + }, + { + "alg": "SHA3-384", + "content": "a90836617dc00aed63668ccf5949f32b12770e99b8200cd140721b9ef0eab4a8b6533203352dab0053b2fef0f7068eb6" + }, + { + "alg": "SHA3-256", + "content": "6884a365beaf8853b5a6e7411ff022e6dcc59f79c0d5a7af48de756d532eafe8" + }, + { + "alg": "SHA3-512", + "content": "bca269e8121f3e9f093036a0d31cb4a75b0ab972fafff0c81c87a607a47bcebdfc5b3e906c80dfd32517615faa0253ddc5aa0be1bf7ccdd3a136bcc689cf89a6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-micrometer", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-micrometer@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar", + "description": "Camel HTTP common", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-http-common/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-http-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233619" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "d4d4faded1fefe0b0b1304f0fb3db964" + }, + { + "alg": "SHA-1", + "content": "2ddbbe735233f4c8a0c58a717af5141e8cd50be1" + }, + { + "alg": "SHA-256", + "content": "0a3f29cc793818ac2327e3a06a26cf427066e7a0949cc2ce263982f475998692" + }, + { + "alg": "SHA-512", + "content": "3add1bc1949b4b6d40b26ff46e541c1242059242525a41b7c3247a97e810819fc98e99db1c9da94635882ece78690179755db650c44b5d45803bbd27ed129911" + }, + { + "alg": "SHA-384", + "content": "ac8fac06cd7b4526055e471e4ac3162641d223482a1a7096d3b2fc7a33b0c38326106573653f122a2f4fe8bd320e1331" + }, + { + "alg": "SHA3-384", + "content": "a96a15d85cb6ab093d24581196e53dcc063f038f1a8be783c5b002926e73dfe2b57f011178c992ba5d94c96bfb10f884" + }, + { + "alg": "SHA3-256", + "content": "84d778279324f35a7c976d8017578d7c44c1be9ad6e5d591799b1b3c471fe4b3" + }, + { + "alg": "SHA3-512", + "content": "8c889d9bd937eebd746b25d59811d3926d44d43ba486db396c15a6646b33308d9f7a61cc370ae4f1860c372baa8e62092b97e5b0c9297bc88c1ad594bc04729f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-http-common", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "description": "Camel HTTP base", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-http-base/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-http-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234315" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "b09161c2f06ec1eba78b420ef0bc380f" + }, + { + "alg": "SHA-1", + "content": "c0c6e12aaee9f640e12220379bcf9b562d0a1bf6" + }, + { + "alg": "SHA-256", + "content": "fa4761b82433f208aa62214b5248c1834bbb2b2fbf7cf347b457fc7092befcf4" + }, + { + "alg": "SHA-512", + "content": "e7a3680085a97af99034e6e6802afea7d615d2bb034b1a8d4b9d9bb0707d7aa08c48e22d9ee11c68d88dc50575593de57d6a75dea194d9ce483d58b359039246" + }, + { + "alg": "SHA-384", + "content": "2660cdbe2064730ceef5f21f515ede699224afd084aad513b88efb12e8e2362499ead758ef6299eefc08551c4666e484" + }, + { + "alg": "SHA3-384", + "content": "31a009192ad9fb6f526cbb9f12db11c7940002393287d0ef562964869760b8dbd5555bb809974bc8688d712b7c1fc38f" + }, + { + "alg": "SHA3-256", + "content": "556ba2c8590b8b7f20f52ed02a8928f67fccbe659ef82b25e7ce9ae0bc3955ad" + }, + { + "alg": "SHA3-512", + "content": "2246707cbb9b026506098b2f277281a7db7a172cf3343919c40412f6e9f5ccfedd66253648518b0b015e40eca2767b9ffc918218276e583836545f4c92d706af" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-http-base", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "description": "Support for attachments on Camel messages", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-attachments/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-attachments" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233556" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "91eb8eda6bca8210a337ba52c7833fa4" + }, + { + "alg": "SHA-1", + "content": "59af7a34e8e5cf81a98a149d134b0cfef4e42898" + }, + { + "alg": "SHA-256", + "content": "07d7f2bfdbf2c7d383f3159575802d884b4a598ad9d5036547dc25ea93729484" + }, + { + "alg": "SHA-512", + "content": "d4e404378ded50be3170205123c5092f8b64e9b5d8feeab2e31dc94c20f2909b5e78b94404ad96f0060a1ee187d9d993dbde9806869397aa74aab2049bdac9b7" + }, + { + "alg": "SHA-384", + "content": "bfbb1c936f22c4e629620db447f1dca3b406a78b19af8635d4b6d496308ff0bb08ab04ba749c36fd659efdc6ae329287" + }, + { + "alg": "SHA3-384", + "content": "d44806e424988ca6f98dcb057e1d223074f6d5570219227d6e7f9b34a7793eb9ab8b190d8e319330882c5bf6c32cfe09" + }, + { + "alg": "SHA3-256", + "content": "134c6922ffeb81dd58bc52ce8118051e312bda8ec700a26dde026cee240e8820" + }, + { + "alg": "SHA3-512", + "content": "d50f8ceb5dc3af2b61717f821cd469e8e79069a165e622d11e3fdbaf310b21f7879c3e290b40e433c1bb6a17e7606a20d29d170a483f39ce801ddfe08be46113" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-attachments", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "description": "MeterRegistry implementation for Prometheus using io.prometheus:prometheus-metrics-core. If you have compatibility issues with this module, you can go back to io.micrometer:micrometer-registry-prometheus-simpleclient that uses io.prometheus:simpleclient_common.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/micrometer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235147" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "029bcb70a68ea90c4544d468c6c05959" + }, + { + "alg": "SHA-1", + "content": "ff479e5a11038a770ad8526c974a3b343587ad6c" + }, + { + "alg": "SHA-256", + "content": "0311eb24394f875ee18c3531e76b64563ff33f09772878222bfae7b367f083fd" + }, + { + "alg": "SHA-512", + "content": "d19998106df5e6157d4beb781ed481b49852298dbd7c41a580d25eb56949cf726f3aa0de9fb640d82a4422096b1c3e6160c4d1ba2404897c6f25d44805253fa1" + }, + { + "alg": "SHA-384", + "content": "fe4aa1d190c3c97f0af1f0dfefa68d53760d3bd4bd6f58d9dfaa224d62186f44779ba93fc3b48d89531e76aaee9e08a6" + }, + { + "alg": "SHA3-384", + "content": "9581e2416c170ee4aae496ead39d062ea8dff5d7f8c0ff8770507d1a6274f6a30485ceae8892b247975b24434db4fed7" + }, + { + "alg": "SHA3-256", + "content": "d0e66ea391ea4c2ab516914c9935e19b32ad045307543b5014fb574824ede938" + }, + { + "alg": "SHA3-512", + "content": "d199127e639723dac511a0660b6164f949299ff353a41683ff86eb891ea6ad301c393b49ded5afb58623c83d05a3143cd1f64ae7a8ff03e649cd09cc5073a59d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-registry-prometheus", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.13.8" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-core@1.2.1?type=jar", + "description": "Core Prometheus metric types", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-core" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847476" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "ad9629ea22769f13aff56afaecd8a28b" + }, + { + "alg": "SHA-1", + "content": "362330b5934a128e91e331f1497cd275fec1a81c" + }, + { + "alg": "SHA-256", + "content": "47ae6ba7f38550637c9d6a0e83b7959cd974ace32b60beb948f91d2edb35461b" + }, + { + "alg": "SHA-512", + "content": "066764c24db14bfe104765ba27cf34944d9009df6a87f5ec0c1b64819ca92dba70be6c63548cf942f55de19f442286891363115acc79432de307010b882d564b" + }, + { + "alg": "SHA-384", + "content": "ed82880b124bbb0e5483c40afcdf2dede45984e2b7c5b9071190d652365dc70259d54dc28460bae4daca9b5350181550" + }, + { + "alg": "SHA3-384", + "content": "a8503e48627f98b34eaabd934e971b2f2d1c67a6e6b1af6785efbcbab9e589909738c46ed8b025c44bf797831b7c29b4" + }, + { + "alg": "SHA3-256", + "content": "94dcfa9e6d9479eb03e89eb937f97c76cfaf49291a4bd23dcc0454bb7d4fc400" + }, + { + "alg": "SHA3-512", + "content": "77b8715e305c5f84cec8cec720a9c8fa98100ed8f8329388afd0dfe199752450f5ec9a7db9e6acb1befcf65f5dc9d4ae9fa2534d9819ddc3ba53cdc5b86a619c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-core", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-core@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-model@1.2.1?type=jar", + "description": "Data model for read-only immutable Prometheus metrics snapshots.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-model" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847480" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "3183f9c7748cf28ef38ac7bdcb441e05" + }, + { + "alg": "SHA-1", + "content": "99caac1a3f974de6bc9882fbf6a09ea055733c7b" + }, + { + "alg": "SHA-256", + "content": "3520279e1fa7fbf0febd32b3a68863e389f32a152062e6627aff5a20c8408061" + }, + { + "alg": "SHA-512", + "content": "be7d6e8bd14ddb59ad19cec4103d9f66b9dfdc9054feca0947fe32aa51dcead67fb97e4ee8db79e579fc56e70568e5623bcbcc25b20f966b421bb44a355e46f0" + }, + { + "alg": "SHA-384", + "content": "3e14fb6f797ed52f44587c8ca1c674a974aef2499e48ed3ee4d40126d95217e3bcfa5c6af0cdc9861c5be4abfa13ab98" + }, + { + "alg": "SHA3-384", + "content": "882e280336ea20a9e4779a75eddfbe46a25f68c6b14a11948ecc40a370dd3caf9f5a0152fc2f95bd8df7a65b39dc8740" + }, + { + "alg": "SHA3-256", + "content": "4718bd967a2d73cf6287d6bf1183f635b0f1e46822452abaa853e5154ac2be4a" + }, + { + "alg": "SHA3-512", + "content": "6853e5bb9216d6381fc30c3b3139bbbb97f6c908cf78e817aca41d6e63049ba3c64e2794a3fef045c8d0773ebb96fa83fe6f20e18295b02833ca5328067edb57" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-model", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-model@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-config@1.2.1?type=jar", + "description": "Configuration for Prometheus metrics and exposition formats.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-config" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847474" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "88d8f9b9640588bac87e27ea61513050" + }, + { + "alg": "SHA-1", + "content": "bcccb14176161671c4cb858b0ca50d680237fdbe" + }, + { + "alg": "SHA-256", + "content": "b9fb02ef15e63d02aedea7fc57b3bdeae4dcfc91c905af60fffe66b8950f951f" + }, + { + "alg": "SHA-512", + "content": "d1a430108a30c8b997101b62e9ad892b2b2db2c7b54e44fd1d5df85647c6e000e418c5757d3e0e6ff04edad34397dd450b8164dd46dbbbacfc9748d172dded5c" + }, + { + "alg": "SHA-384", + "content": "c5b2375af6cf03855554a5fbd9118b38ee0ec9d06cf2a2fffd7e44420e6be19287bd33e12c0a14373293613e1f4ee19b" + }, + { + "alg": "SHA3-384", + "content": "f5a640a2022a17646d572bf76b8413465dac6e712c490e762217d0284cc9d3c53081df550b0b97b09e363eaf03121df8" + }, + { + "alg": "SHA3-256", + "content": "a768bdd4e92737d98c8ceb7195cd964ae704aeea9ec84a827668fe92736cab64" + }, + { + "alg": "SHA3-512", + "content": "6bac3bfd615c158b2f79aff59813a8dbab6bcd6c33bb46613e5a7d02109de474d49763cc3f830a24b0ae5077d4973edfdf0b4282f9165eaafe05924eb8ace5b3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-config", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-config@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar", + "description": "Common Module for Prometheus integrations with distributed tracing libraries.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-tracer/prometheus-metrics-tracer-common" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847485" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "a0818de6ef86484d332d9cc3dede9d9b" + }, + { + "alg": "SHA-1", + "content": "74cc4ac3226a3937d6e5c74c06454258e7901cec" + }, + { + "alg": "SHA-256", + "content": "c55e5d5272518e9cb468b13f252f828565b976ec78b8470cd7c622dc201ca82d" + }, + { + "alg": "SHA-512", + "content": "10c5ecf2dea8027a38714c58db541dd9709fc6966778a5176985ac1afdec113f6c741d010d2b95969d5f9bd520d7bc63888cd4fa547ab5dfda55f77c545f1ab1" + }, + { + "alg": "SHA-384", + "content": "aebf3c0cd1bd00a4603f19e5de314095e620341635676d1aaa872dd32172af79ce7dedf4c79629b41608471d4b4eaa81" + }, + { + "alg": "SHA3-384", + "content": "6ad0ad0081bef8106ab6f9510a6483204964c0114419ebaab9af65493fcdfa52f877bbdcf0ff2a267fc2218de7717a80" + }, + { + "alg": "SHA3-256", + "content": "6606f6610f87264aa75cfece6d631e81b2f3e2a45624f485ab3d3471bee4bcaf" + }, + { + "alg": "SHA3-512", + "content": "2b533e5c2f58dda0963c4a3f757a61bb0541655fe59f13f3ebc9492b3b0451c44d055b176fc903a39c586bbd9cd27ec156b96e0a06cfe136e91190c477e00b32" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-tracer-common", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-exposition-formats@1.2.1?type=jar", + "description": "Prometheus exposition formats.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-exposition-formats" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847478" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "153a1d7a7e61f0cda873a7c1782d6819" + }, + { + "alg": "SHA-1", + "content": "64190364467197c39bcc296ec80a99f6c979a7dc" + }, + { + "alg": "SHA-256", + "content": "c618f0210980d6272fefcd76b2964883380a828ba6fc399a9bf84253d5d39107" + }, + { + "alg": "SHA-512", + "content": "13cd72573753779fb16bd266573e0ed4aaabe82c831a4f3713337ce7ada30d74a1efd874e0f5a2a096d6999dc6b7435e5eb869b3be2542512d7b2966b3399a91" + }, + { + "alg": "SHA-384", + "content": "befcd31e081c01fad9663b95c608848776014c93256d7cebd43ee41d0159117299de48a7f21aec294c3f08ababa0d8c7" + }, + { + "alg": "SHA3-384", + "content": "d973c9a27c887480f1c9f628466f45a2d34e0c49fafcee30cd9b4d310704cc13cd4b0fe99cc8a0eaf3d83b59c5f17c2d" + }, + { + "alg": "SHA3-256", + "content": "c047625439815d48b36bedd31e8830069a06f015cf76201fb8eada7b87eff4d2" + }, + { + "alg": "SHA3-512", + "content": "2fc04837e8603da19c595bc324cd1ec3503e58453639ce67e5e3e86b57c8e692d364c6b4fe2382fd30f16ca419ac06562ad7b66eb0c443826393af156b64fa1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-exposition-formats", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-exposition-formats@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-shaded-protobuf@1.2.1?type=jar", + "description": "Shaded (reolocated to another package) dependencies for the Protobuf library used to create the Prometheus Protobuf format", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-shaded-dependencies/prometheus-metrics-shaded-protobuf" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847483" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "798d9caf489a86be67e3b0e1eba6e3c5" + }, + { + "alg": "SHA-1", + "content": "2b8ace486645dbaba1f3a694bd3a081f4d7a3aa5" + }, + { + "alg": "SHA-256", + "content": "e6060c7ef59fcf1c110677b01a96e4a08ab23d138700a6e2d0999163122750e1" + }, + { + "alg": "SHA-512", + "content": "d7c6efeb79d7928353c5301a713ec74428ffea76786003158db74f2615f1a3fad4f0e83c1d64be7097fe6800cd30d18486fc9bbc6651420d1359044b282180f6" + }, + { + "alg": "SHA-384", + "content": "3b7847309cfe54f129b3cab921963d5b3c63b2566ea5184bebb8a880f23f3922197c9d440ba4b4b43588ef6f47f31e54" + }, + { + "alg": "SHA3-384", + "content": "0c6cea060da6b020b9aea759a8cbbb1beeaf6c06582ccb248c09aac7a1d9ab604c5892db8e8f2d0a66b494d5e14d7273" + }, + { + "alg": "SHA3-256", + "content": "6974469dc8ec56d283946116c2d7f4b7ad4683f0aa07d145827446faa0a5b434" + }, + { + "alg": "SHA3-512", + "content": "b31372f4d9c93df2814a64bb8b6e26a280dcff0ce66340f47b9538711581e70005f36e3f47dde9de49fed7a714b9ded709e8a7c8eda64d423d619559c6422155" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-shaded-protobuf", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-shaded-protobuf@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, ActiveMQ Amqp and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-amqp" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-amqp" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-amqp", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-amqp-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel AMQP component which is based on the Apache Qpid project", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-amqp-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-amqp-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234915" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "6314ab239c98d1db85cac08352a1f5da" + }, + { + "alg": "SHA-1", + "content": "214ef3e7e6550c6b48c0407b611b47132163a7ba" + }, + { + "alg": "SHA-256", + "content": "a0c318b15571a5cbd7a0023d7225478ce923b6843d5767425cf4309d2a01ec8e" + }, + { + "alg": "SHA-512", + "content": "f03d57f44a3bbc2ad42e5d949c225674b6b5140d9b169bc5850dc4f2bb599bf8f1d277485bf0b59c3d5afda2f2899ef7f8a01697be7d493973508b147a801c68" + }, + { + "alg": "SHA-384", + "content": "ed01e1da5e4dd62401a56257dcac529cc42ccbf8452134d9cc5c3927e30ccf523c2257adc21da39c26a35a8d3e949e3f" + }, + { + "alg": "SHA3-384", + "content": "ff47ebdd2a204b992f5ffdb051e2ebb502d49cefb4ab7fb7ad06c60eed9aa46db36865738a21ddc482b1f99b16bcda76" + }, + { + "alg": "SHA3-256", + "content": "a9352571d908cfa8db473d61f7cf25b61ec01f2888846260e6f0d0f72aed4105" + }, + { + "alg": "SHA3-512", + "content": "43fc2ee17c86c31755224892c2bfab4b82794ef1013dfb44dab5ecc3ff352af0b47650b1d4bee7161721c4cf5ea3572abaa2fe3e0b28a3bc270d8934836bd548" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-amqp-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-amqp-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-amqp@4.8.0.redhat-00017?type=jar", + "description": "Camel AMQP component which is based on the Apache Qpid project", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-amqp/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-amqp" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233478" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "bbdb774dff101ad47817e14b8ab640b5" + }, + { + "alg": "SHA-1", + "content": "d9cd86967d700b7e52029b2787d6869a79bfb8e0" + }, + { + "alg": "SHA-256", + "content": "d92b770aba6bb9d1579cc1743e59f4fcf72a8f4d7a33db20f503c8f2ff5c4c79" + }, + { + "alg": "SHA-512", + "content": "d9862770fca5c4249a1779f1743f274da090a9977893ff9c87aa890f6df38554f0af4ebbab2b67fceeef62184d9dd764e10767ba3b5ceeb33da1381eba97ccbb" + }, + { + "alg": "SHA-384", + "content": "5c63af56a631da8fe92df3916fe9107116429022b974ffb9757e4395ea8d686eec44f2bb843a583be6a18c6e7b8c8ee8" + }, + { + "alg": "SHA3-384", + "content": "54db226f8a50a792b0e08325d2dbb157add1cfae0d952595e2f894bdbd764d6113349bbf6efccc61cdb8f4a437e46805" + }, + { + "alg": "SHA3-256", + "content": "9ebb6c9cf009bf0f998ba4e8f13987268591e7c535c5619b2e5f0e8b3eee3b84" + }, + { + "alg": "SHA3-512", + "content": "699e861f8af9c2dbf77e142ff829229a23cd3b0dcb96cf5bb1e048b81f72985e2f242b5e7e7714f1ff50a10c85183900b9e580fab1db45d2f385ee7bab80986e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-amqp", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-amqp@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jms@4.8.0.redhat-00017?type=jar", + "description": "Camel JMS support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jms/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-jms" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233522" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "597bf644299a459f1f21a7637c2d25b1" + }, + { + "alg": "SHA-1", + "content": "4f773cd9aacf939b9644ab1d8a7152413b74725a" + }, + { + "alg": "SHA-256", + "content": "bca2b87fb7048ce601bfbe1fe3501cac2147cd54dc1eb001e88e29cecddba142" + }, + { + "alg": "SHA-512", + "content": "d086416ad2cbc38b2e529db16e31f100421321157a6abe18fc0fe48044bb10e4b550cff597d325312b8d9b0dc0ed81bcdfeeacff13d5d5936a9dfef2f8d3c4cf" + }, + { + "alg": "SHA-384", + "content": "6fad35cf729d5287e61dbc14181d76b12770d81d4c4c5791a86654b20dc02807266ea88e689e8369c180f0e8ca785c75" + }, + { + "alg": "SHA3-384", + "content": "317b0adbbaa46dd2a11f9649bd8542ad37db5cc2589dc3332aaa7b2011f0b740de88b74280d936213eb209d16d4ec34c" + }, + { + "alg": "SHA3-256", + "content": "11aadb7614165f50a0726504139d964857fe6ca15697cf9decfb8a08bee6656c" + }, + { + "alg": "SHA3-512", + "content": "4fa2403721fa09a5bd3c47994c530515a0d71b38dcd12ea8177b6f35c297d06240926ddf886c43e0aa67b092301e7bcaeebdbaee9e017431fa2d33869ca1d33a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jms", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-jms@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.qpid/qpid-jms-client@2.5.0.redhat-00002?type=jar", + "description": "The core JMS Client implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://qpid.apache.org/qpid-jms-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/QPIDJMS" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=qpid-jms.git/qpid-jms-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12226775" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7L3DUYB2DYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.6.3-dotnet-doxygen:1.0.0" + } + ], + "group": "org.apache.qpid", + "hashes": [ + { + "alg": "MD5", + "content": "aa72286fd34b37e08b75aef34fcdd303" + }, + { + "alg": "SHA-1", + "content": "e4298b2a5ce1e154ed98a4e995000d7c9dc460b7" + }, + { + "alg": "SHA-256", + "content": "60b0403a4b8c55224c04e5248b4c9295bc02f435960ed390218faaf87ecde606" + }, + { + "alg": "SHA-512", + "content": "9802533cfe39b74c13fb8e11271e6ddbe9e97783e537932f7c3f40e8013e81bec7db196b0e56d70a8de808482f0768524516a09e66b1d0614fc596bd8f8d0db4" + }, + { + "alg": "SHA-384", + "content": "7aeb61c558c36802ef104f13672384e59faa15f1d06976e9b24796866a37905f0a19d827030cb0ea026a2df4fbccc114" + }, + { + "alg": "SHA3-384", + "content": "b9ff8aaea4ae444b5f40e7200ab943b01b90899411d745219f32b05786254fefe6594a53589dae0c3186ff04f1176cfc" + }, + { + "alg": "SHA3-256", + "content": "f7c9873d5ced68463d6bee5ff50005f6cdf81e2ec5f771ee529d14998621f8b8" + }, + { + "alg": "SHA3-512", + "content": "85b7f21ccc6e8b8d3cd7c26ccb7d4aa2bae5063cea0d599623370a65bb1e0a5f7bec4540af04dec6cd15b00b329497d1803dc092e6950566663cc0cfe71d5374" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "qpid-jms-client", + "pedigree": { + "commits": [ + { + "uid": "de17abba7e199b7ffc8c1e2cfadfd284c5f5bff1", + "url": "https://code.engineering.redhat.com/gerrit/rh-qpid-jms.git#2.5.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.qpid/qpid-jms-client@2.5.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.5.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-native-epoll/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-native-epoll" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076251" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "b38c18b291bc9a3746bddf9e4fb800f9" + }, + { + "alg": "SHA-1", + "content": "a1572111eeea7faa7b5d953aa045dd88fbd7b1de" + }, + { + "alg": "SHA-256", + "content": "e32c1d66117c6a082b50c2d445224f9db2d868d8185346b2db5aa4e85f631aa6" + }, + { + "alg": "SHA-512", + "content": "07b70d4279bac5761836030f5641979c6a68d46f541daabeade0a834887c85d79e28e59cc481ce530bcc68b41224a11183ff8d3075d05878b3ebaad98a0bd33b" + }, + { + "alg": "SHA-384", + "content": "7c24e474561dba7924a2c70a94572ce6d6804476fff9df80005dead2ac0092c1fed03f888474166e05cf976865c5893f" + }, + { + "alg": "SHA3-384", + "content": "0ce8d37d241aad262860a7dfd1f9ca8ac72122cb77e2bd5099ed10b790f4f1a727fd464e8ba6fbdc9b09acf506af448e" + }, + { + "alg": "SHA3-256", + "content": "414bc6be7bdd08587336a6f2673b96fc6ed19f8fa45e800d6f495af7e98de326" + }, + { + "alg": "SHA3-512", + "content": "9a7ede0b2bd3ee22a6250bf8b6730dd754cd6eb55cd238de6130b6603526f682f704ca027e904c3044663f82ac0c670bd96099158047da84258cdce59e66da1d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-native-epoll", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-classes-epoll/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-classes-epoll" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076370" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "c8bd7ff669c06ce8b03823dcbcdef1b4" + }, + { + "alg": "SHA-1", + "content": "5796bf3915c19f8dc1cd2010d9828d855df8266d" + }, + { + "alg": "SHA-256", + "content": "353dba8fdbc4fffa91dfe2ca253a21082bfa6108bc24c4ab648ce72850603c62" + }, + { + "alg": "SHA-512", + "content": "fbb7e652809e96b76e69bba87e99237803fced4add87d4703bf77ed17d2f650b686d5cc1421c9c5b3dd535c55772222e5d941896fe8d532b65ea15a2427f5fff" + }, + { + "alg": "SHA-384", + "content": "14c9fb137368a446ead95c6d60a5c7b1bf48baadc2fc618d861aeff6adcf4859b6173a6f9b9330839618af89c3e83b23" + }, + { + "alg": "SHA3-384", + "content": "87d0ba33decab2f0b9f118611f7970b4a534a4de162d465aa806635a8c1411fb8ae4cf1a8983eeb5ea2e41fff5e93477" + }, + { + "alg": "SHA3-256", + "content": "c3945f7d17c00def64151599c9eb07c6939d4c007e56cb3d0db77190eb9b4204" + }, + { + "alg": "SHA3-512", + "content": "c0e53a8f49bd8a71ffc35a08cd7938b9d4acbc894763f89fd2e5c900c284d0731f00b3d8d6bf62e2fb1418d986658f8c29eb6f3d4efd3d4710c0c608f65fd20f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-classes-epoll", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-native-kqueue/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-native-kqueue" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076408" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "6e3a12d0f9d890f71cf0cbdb66032819" + }, + { + "alg": "SHA-1", + "content": "9ba4ccd6a320545951e2cd5cca53f4fb4714bb8f" + }, + { + "alg": "SHA-256", + "content": "e8ae320b5a5e8e20310c3ec57dfd1d9ac088c33652662996ff87ba4f383cd90b" + }, + { + "alg": "SHA-512", + "content": "970ac5d9521fb213ecf4a7fa6ca165e56d04e1dcd5a824473b82c362358ddb162236fdaa177c6e1485d09c79a9088ed9c025464d51e2fc0b7c84fa6869dc5ce2" + }, + { + "alg": "SHA-384", + "content": "f75e21f5a5c2149cbc33051b421c8f31adf0582f586ac3fd48979f6d44aded5c76938032d182e5c35169bf071836f9b4" + }, + { + "alg": "SHA3-384", + "content": "8a878661e9298846d8395ea1878b68682c87f1b72bd14b1fda53b723f53a1ff8847e96d9b4048486403d4838cb417566" + }, + { + "alg": "SHA3-256", + "content": "f20a6c2662113608715f4736b6e1ab48bc0e3fd035bc78e62816a50480d9dc38" + }, + { + "alg": "SHA3-512", + "content": "374e970403a0e584753012b2dbdc894669c90c5de4e783901713db4ae6d302c7c0861694664fdea20c8990342200979286416e5190cb88664ddca92b66b08b71" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-native-kqueue", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-classes-kqueue/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-classes-kqueue" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076414" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "5bbedce4d7dc92ad4e92c88a17974fc6" + }, + { + "alg": "SHA-1", + "content": "54dc648f44eeb7c8333abca1ab337aeee97f9479" + }, + { + "alg": "SHA-256", + "content": "01ad43c30239df5583852518babfdbe393e0291e478ec2bdc989980bfcd1951d" + }, + { + "alg": "SHA-512", + "content": "22ded301fe229854d36beba3ff5c8cea96e5ca82b9af8ef78a4301931f80019d8331aa37a140965248dc07ec283a979cb79ad04ceb70e5801cae8b57cc7fb5d4" + }, + { + "alg": "SHA-384", + "content": "2e3258c85ec6bbb156179685a7fc620204247dfb971b2d9cdada70ebfd1095f61298fc679171eaba55b6e05cbd2474c5" + }, + { + "alg": "SHA3-384", + "content": "22094a023fa9761d0382482ebb8817eb66a7435fc88e5b88c4cc039e98364270bcba07d7ac7d3ff81471fe6f9c2c0fb0" + }, + { + "alg": "SHA3-256", + "content": "513e1e000f08e395be2d6a9de4d21399dcd464dcbc674e8109c10e76130efeeb" + }, + { + "alg": "SHA3-512", + "content": "c66646941f2771f4ffcd207980c9d9c2f956db6a25570b07f8d4b83bff51ce2eb0650a7f6e51785ea97dcb17d7f18e0af52618068b56f604d692ab6ad140f897" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-classes-kqueue", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar", + "description": "Proton is a library for speaking AMQP.", + "externalReferences": [ + { + "type": "website", + "url": "https://qpid.apache.org/proton/proton-j" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-proton-j/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/PROTON" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=qpid-proton-j.git/proton-j" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10841346" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A2PW6YTTQHQCO" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.6.3-dotnet-doxygen:1.0.2" + } + ], + "group": "org.apache.qpid", + "hashes": [ + { + "alg": "MD5", + "content": "521e40d5efa8e55d512d1d29af6afb03" + }, + { + "alg": "SHA-1", + "content": "ebc917ee245b7af1d5d06838693ad56c61687f4d" + }, + { + "alg": "SHA-256", + "content": "b505edcc8b529c2179388058aa2b291e9d0ac1f9e41e5f4d54826a2cd4e856f7" + }, + { + "alg": "SHA-512", + "content": "bfc7f5e71c28220f2df5ed83b0832eab958d64dad313a43187fe3011d649ffebe3625acb4b6d8d775c63bb30e62e380fbcb8a22343de6429a4eccd3c80b149ac" + }, + { + "alg": "SHA-384", + "content": "d682da62e54d5ce2c245d10e7f44e290e2bb3181bcba243d66f430cd3528de518d408927315e21c80a476d3d0a4b7cbb" + }, + { + "alg": "SHA3-384", + "content": "1ec5ead26eb45d5d2d01dad9da29204469850f82ca2af7142856130aeb5af0cabd5d9e6aaa033171d1bc563fa983e28c" + }, + { + "alg": "SHA3-256", + "content": "1c5d759b970037fc49870b8eda6adc7384ebcc98d1e94a709f7ac16e64197083" + }, + { + "alg": "SHA3-512", + "content": "b3be9d47d8ea2344dda46badad3775a1f7431b3fcab4368c19310578a6e6f83be4de32bba8af9a23f39471e57e98fdb9a067a49541e537a0218dae2a2f31b0aa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "proton-j", + "pedigree": { + "commits": [ + { + "uid": "4558bff59ca0d24a7afc1053d09c2c1cc72f24d0", + "url": "https://code.engineering.redhat.com/gerrit/rh-qpid-proton-j.git#0.34.1.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "0.34.1.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-buffer/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-buffer" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076235" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "d62364eb3542cc44a6286d21f584197d" + }, + { + "alg": "SHA-1", + "content": "69f282818fa5665eb3c66095c7dd5db420557a96" + }, + { + "alg": "SHA-256", + "content": "bc277c3ce2a65fe8965e16251ebbc008c355b0c5d38ca95dcfa4f87c2bc44311" + }, + { + "alg": "SHA-512", + "content": "395e309f01a27ae512a1bd3a8293c3347b55086849035ebe5bd4e86abdc244cc22ad1c6d8f703512f469b44633374529bbd235d5ca29599d8022c7116dac7db5" + }, + { + "alg": "SHA-384", + "content": "6fc2894728a0cdea69e5168bbbe1de2c2405c4397d01b372e6c8965c7112a98aaddf45fe5c988a978680b7c3ec1becbe" + }, + { + "alg": "SHA3-384", + "content": "9e1d2f0290703578b66a8082d754a7eab6a4a0b3bbcb32da82b698ae8f00f996eb72fbd38659c49e8cab31a6f6a9df9b" + }, + { + "alg": "SHA3-256", + "content": "5f7ed0d83d36528b46523328ed7936efa118c6d8cf2bf6d22ec64d485596bdac" + }, + { + "alg": "SHA3-512", + "content": "e50f82ac74cd17d2495ab771a515b625db4cdaf34f9cd757b528cb286ace5bc1dac922df5a9a517f16df3937cd7291bd2240f5cdf13e2f25238c1c6f9f3f419f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-buffer", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-common/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-common" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076331" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "426c16bf6d3345ef0148b0d4b5557665" + }, + { + "alg": "SHA-1", + "content": "76fdfbb5327f4c92df607a754e92e98a995447bb" + }, + { + "alg": "SHA-256", + "content": "02e7413db8c3415e39e21bd221054f6fcb19e8737021ea7faf81facc78207510" + }, + { + "alg": "SHA-512", + "content": "9e7e93591f0340e294a1d667c55e2aa3398d48197c9b1e9664508c5fd379a371dd50aa8f8e68a32562479890a62d401e6126f26d71f035429c824957308ee666" + }, + { + "alg": "SHA-384", + "content": "6ca303216acd987d44d773bde6ed97ba85bd53f84b5ca8f58dd19d85261e6327afdcd09cec61fdccd7dd321f8244c611" + }, + { + "alg": "SHA3-384", + "content": "b2b6b8d66e026c8665008965157c089f0896f1bc87d730c495fd21730e4bcef80fd6be7a39bf37da35238eb5572f2f85" + }, + { + "alg": "SHA3-256", + "content": "4e1e7db76291c244f15bd216749b50ea1cdd7771ba6475894276d01611248399" + }, + { + "alg": "SHA3-512", + "content": "df53225e716cacf59271234181439ebb362ff64648304d4a11ceb1619929ed38b364324b8a6a361d4936df38db0af544792647fa3e73912e1df815049b342fdc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-common", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-handler/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-handler" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076428" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "4c80ce8bcc30104b37e53e7b6c19a6b3" + }, + { + "alg": "SHA-1", + "content": "fcaa702965ddd3e3d69c2fb9934a8037284c37ac" + }, + { + "alg": "SHA-256", + "content": "a3a6786f4688d8455b0af7fc109306d4e5c505a72c4db7b5b929f532a84840cf" + }, + { + "alg": "SHA-512", + "content": "5d066dceb61c476e3f2416adfef2a3e35f4eec088e3ea40f98fa45be3babb902eb3c06f39dd1eeabb3b3ab6c4c5364e5152b918756a0ec3ca2d8c28aeb339025" + }, + { + "alg": "SHA-384", + "content": "5101c6b31fe39acca3da53f8dd086690987c728c87069a6f40621763c7f2aeb87a23cae69d4b26bebe08c11700a12658" + }, + { + "alg": "SHA3-384", + "content": "4f203991630215af79969e6732a71e1d62824b351339a9e1e1738cff3b545a130b4bfe6dd3bf1f15ba65e684f47e3f55" + }, + { + "alg": "SHA3-256", + "content": "85836755c1c8d215828daf4bc0509d9ac3d38d404e652ac98380aa9b7f4bce1d" + }, + { + "alg": "SHA3-512", + "content": "51d7e8faa0d8126ef27c78b0982c9e02f92252d92f8a4537b80bc9b5fbacebf9c1bef6a7e6370ee0c9d8309654de5ccd5647d8b728d19494a69801f9e1172fff" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-handler", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-resolver/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-resolver" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076276" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "5014199577ce12ecefb4454174d72db1" + }, + { + "alg": "SHA-1", + "content": "72955071652262fc3da832583f38e710c16bccda" + }, + { + "alg": "SHA-256", + "content": "9dce751f9cf39f93cf5e31db8fd6efece96d35e8d52c7af8e4d4aa6d8706ab21" + }, + { + "alg": "SHA-512", + "content": "b64d86a33d5122de129289bbb5472e4c5ab14c71f77073d4791ab1185e99a80496b03801a0644e6f30771fbd8e373685d88a34ca66eaffff3fc9c0f905c4a171" + }, + { + "alg": "SHA-384", + "content": "8d51a5bbb4bb4ed0081a9ba6124909691a4ad051ee4e521e41dd7c52691bdfd7f54885781f8f82f86734d0a1aa7ea150" + }, + { + "alg": "SHA3-384", + "content": "03c960f586c86ea5e8fea533331862244c011584025360f367f26ea98e557e8e4a3fdf99c07e9ac82e238f0ba0938d65" + }, + { + "alg": "SHA3-256", + "content": "843fe03bf8ebea2592f440e2f3115098739c8ca082764adb33387d4934f03058" + }, + { + "alg": "SHA3-512", + "content": "5fdf970dda307df3e76863061007ebd49557e8ed518d3c60f435fbfab6de9457410496a537a5c71602a4d9fc0691616c6f786c8652a1d0571dc28e028e44c654" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-resolver", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "description": "Static library which contains common unix utilities.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-native-unix-common/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-native-unix-common" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076287" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "35c38f7b175a8f25e87e89f4740bcbcc" + }, + { + "alg": "SHA-1", + "content": "1627c817e27a5fc9f73c889af771e081ec1c8cd3" + }, + { + "alg": "SHA-256", + "content": "07ef8f9fcae727f2e8d08f4756dff25ba4704184ed6056bb4c308f6b512e5f33" + }, + { + "alg": "SHA-512", + "content": "3c68a07a47ec3b45a6862b5c231d7d20bfebd881a8ecc7edd54a51bd4e32217eebc851cb3aab9bffb2550e5f9ad4f156270aff6cd35fcde252677c76df026e0d" + }, + { + "alg": "SHA-384", + "content": "04ed12063bde9d5ef154c9fcbda1f43f1b4d5a832d8c5b61b14ac84b06e5b319286ec2157bdcf5152fe5dee87f441b1c" + }, + { + "alg": "SHA3-384", + "content": "63e4896591c87b085fafc2594b5e09d1bde065d5f699d45efb02bc38ce9104c834343dd3e59de1a064ec7c2684e7b203" + }, + { + "alg": "SHA3-256", + "content": "b98a70cdbadd74556b68bfa61bf79029921ef1c1803cc79d500834670db1b6ff" + }, + { + "alg": "SHA3-512", + "content": "9d9c0db5332ef8a154a0c98a87e4fef5a0444ecafa82edf044c20b776f5ebd35a190447e5b7bfc4b8e0ff6223ff4650096b02b149ef51b779bc25eaf7f6becb9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-native-unix-common", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-codec/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-codec" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076344" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "6d181f7b2c648762604c9d534646582c" + }, + { + "alg": "SHA-1", + "content": "a985e2742a7371f9709a3fd59a3721fa12004707" + }, + { + "alg": "SHA-256", + "content": "5d37c3c34b5a05210027f565dbb045a14a5a63cf95545febfa63588d36ef507d" + }, + { + "alg": "SHA-512", + "content": "08724c40124dda67decee3fa0b8109d28ba234ee1a3fbe62d4d6ef3dc2c8dd46e13af2116215deb36ce9cc439f767200f63bbdb8a358e3653ec29efebc2d7c58" + }, + { + "alg": "SHA-384", + "content": "a699b53af0cba8a4b77646c1dd9faa1f2005121c220cc525798242a1394c82dba3e37b278b75c35db7f5f9dfb14b5f81" + }, + { + "alg": "SHA3-384", + "content": "0701216b10e844a871b7d08b2abde0d6393264ef080dc47bb12ae1784ff88ffc28608cba75762f4793126a207c246fa8" + }, + { + "alg": "SHA3-256", + "content": "cecc1c7987f896dc0261aa89e8a47723d673f37e932296d98715ea1f990a65e5" + }, + { + "alg": "SHA3-512", + "content": "ce49649a2a8c79f3405a8aa9cfb634ee5d8fb737a3ed62451e4667aaebfe55b7f8254be73fd536e2576b155576aa23933aa527f5e84fcc9a873f8a2343796d0e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-codec", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076334" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "9e1f7e1485a447aaf325fbb0c5a385da" + }, + { + "alg": "SHA-1", + "content": "fa9d3c5ad85f3af2eb7d1bc4261274a65d454387" + }, + { + "alg": "SHA-256", + "content": "eca2b386afff91ae0783efd19d557cb52ddf84e99ff5bf73f270347c2a5570b1" + }, + { + "alg": "SHA-512", + "content": "973593d37a1ec006c2bc8d64fa545e5aa859fcdfae6850de424fe47830290b1a618185266bddaf9166a26c4c8eeac6df95dbe5a037476309c000cded57e8f3d8" + }, + { + "alg": "SHA-384", + "content": "3048bfff31cc7e29a5b7ca1c55a73265dab4550c428220e8f609ccc93c33ff9c40787dc895f88908b8974a0d9d008d0c" + }, + { + "alg": "SHA3-384", + "content": "83f27d158f8111a0205c90dfc94e6fae8bb64d7d0789ef4ab0880f75bed9b5366db4adc16641006e9a0d706ae2497e14" + }, + { + "alg": "SHA3-256", + "content": "b9e565f3e3c4cdc1bcef548ac55a1ccd5520397b5a56d1ecf6e482e99898bb85" + }, + { + "alg": "SHA3-512", + "content": "cd139cf178d5d239afadb7a9b434bc7b477981ab5f19cf0121f079d616ea446f5e037b6e2403dad5b8e00c22adb1995b85cc5ff4b65587b8274e87c3197b3f40" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-codec-http/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-codec-http" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076426" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "083ee3a3a1852149600e101b5db286e4" + }, + { + "alg": "SHA-1", + "content": "586ad70ca1504a557d1dc914543aa3a5ce1813cd" + }, + { + "alg": "SHA-256", + "content": "ebf8e695e657c30a4376f9d76841dbe92bfd63b413bd4d8726ba204d146b4a32" + }, + { + "alg": "SHA-512", + "content": "cdeafed37297ab45a6c0d18654381cb79c3a04102df9f13339ce480e5b9c6ed104e9c964cc44f0e7cc0a08194d73715a4fc873a045912270f09377830dd42409" + }, + { + "alg": "SHA-384", + "content": "76b6b49c38d3da0c11e7c1fe900d9b8cebbc440bad9689919fa6ecf217adb6c9290f207fa676d9379fa2111f69da4e92" + }, + { + "alg": "SHA3-384", + "content": "19387580225295d8cdda40dc1154b1edf81a245a0d4a6251e187c1ed8a4fda6952bad702903ee730c3f944360d79ea4a" + }, + { + "alg": "SHA3-256", + "content": "4656a0d1c7849a6c71463faa6b712cd35b4aae2f6c9713932742e8e893fa4d71" + }, + { + "alg": "SHA3-512", + "content": "25a7ee3bd7b6fceeef82f297d6bc51d9b61b3b773b1e9f372825dc4e13aa335ed09e49c6495149205951671ff51d185391a4d093bda57e54396281d0a2a8cafb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-codec-http", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-servlet-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-servlet-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234791" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "8acac8e83556af8af1873dfe6db84f51" + }, + { + "alg": "SHA-1", + "content": "1c4eb679364b045f5e3a22fcbf197a1937e8691d" + }, + { + "alg": "SHA-256", + "content": "b742e24618d14ca28e6c809fd49f4d46abeacdfa7fcf91469e7d4210560e6824" + }, + { + "alg": "SHA-512", + "content": "87e89071c1438f7b0df763a01db482dc5240fc2d78a951e3d1a1bc92be04e909153fc1f24493269e4fa977d96d2f4d44dd5c8fccc242e55269178b7bb960baf2" + }, + { + "alg": "SHA-384", + "content": "534a2ae9ad008a6ff820066062cbf2c2cc2e1cf26e5f61cb8a943cbcc56e6110fb168f6a3680cadf89dc4d75ecccfda6" + }, + { + "alg": "SHA3-384", + "content": "022c09172e14f74dfd306c9efb672818a2e68ef2f6e3c21aab8928010bb2dc12699859962b132196a743abc7e0dd7b2c" + }, + { + "alg": "SHA3-256", + "content": "53d457d2c686b10a9fef33ed0c3d43ef4ee5cf342018cd54df9df5a09581a642" + }, + { + "alg": "SHA3-512", + "content": "c1dee2e3d018f4656484d8bfe1d461ab6088d6a6632d823376f18ea237b7a73c7477148d8bcdc9ce1bfc699588cf4a640809fa1349be00100c0483af9a39c08a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-servlet-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-servlet@4.8.0.redhat-00017?type=jar", + "description": "Camel servlet transport support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-servlet/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-servlet" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233623" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c9dd60a549c966a6caa473ef2c4b0341" + }, + { + "alg": "SHA-1", + "content": "5c1a56308c1f2857ffa9a696a86c5a72657911b5" + }, + { + "alg": "SHA-256", + "content": "d4e469b9626ec87fbb81a505d5099f25a21a065ac0c68ce3eeb2e1165a7381b4" + }, + { + "alg": "SHA-512", + "content": "e4852526bcea8924b3697df9855e61259703b5b9ce8ac3e97252afad836241a34a71be1900a14dd85583a7640bcd1ef098bf2fcf1ca0b08203337596a6d9f232" + }, + { + "alg": "SHA-384", + "content": "a81a43b0922c1cd01e3c571abe6c30afc14682d9ae40efb743be5a04e0e54fdb0c4c258d84471f529ba171669e75da04" + }, + { + "alg": "SHA3-384", + "content": "05ca54a01678c5d29a07733195979ccdd01cbdacdf77acdb1f7b4f27658c85f2c8a4dcd4a8a982124f0e08f5ad2665c4" + }, + { + "alg": "SHA3-256", + "content": "4dd184602ab54ca1a8d2472ab019842b0035cee0109fdee4da45618166eaca95" + }, + { + "alg": "SHA3-512", + "content": "07e384407d021a76bb8192ef90846981a6bf67fc5211759858a671119e600671a7f41cc37d69aa17b96ca7f7df63265899c411e59a6c41cc423acaf00c3716f4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-servlet", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-servlet@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp-salesforce@4.8.0.redhat-00001?type=jar", + "description": "AMQP message sending is created as contacts in Salesforce", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-amqp-salesforce" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-amqp-salesforce" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-amqp-salesforce", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp-salesforce@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-salesforce-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Salesforce support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-salesforce-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-salesforce-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234827" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "f239584c92852a0c6041adeb86d9ce6f" + }, + { + "alg": "SHA-1", + "content": "2356f412786054387a4d65c0ebfada31685748b6" + }, + { + "alg": "SHA-256", + "content": "c950cbac8fff43933e3a8eadae56f21021fcc4be3c1d33bf27231f343ba97226" + }, + { + "alg": "SHA-512", + "content": "40e7b51b6c4e95731874534dcf3a49baf9c5be56613e05e6f4146e0abf2d6e1cfc32dd46ce8c05b2d8acb3d8090cd9b086b9824e0508e6c753de28ee57f37e3c" + }, + { + "alg": "SHA-384", + "content": "7b88f722fab6ecbf85656d92ba92d1c746dbed71f698e7044d911657aefc9af0b214bdf9c33b30e0068122f0202875bf" + }, + { + "alg": "SHA3-384", + "content": "842ca79e0f12c62335b5973eee6a578932e9e370e2e65e4344f060b5a04b5385b3911226cf9fbe32ca51b97de12f148f" + }, + { + "alg": "SHA3-256", + "content": "243a7401f73f0b2802c15190f51de8a756486890723e5901b0b16ea5e58e8324" + }, + { + "alg": "SHA3-512", + "content": "56af704d7e40172bf710813f3d05355c34db3e8542a692ae5dc597651f016989a62b4c73900cc3e264c1c5ee2d3da72f3f9733d124facbaa0742a19a2701d2bb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-salesforce-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-salesforce-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-salesforce@4.8.0.redhat-00017?type=jar", + "description": "Camel Salesforce support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-salesforce-parent/camel-salesforce/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-salesforce-parent/camel-salesforce" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234038" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "9ed5b8d54456fed354f6c4d6b7e10cd4" + }, + { + "alg": "SHA-1", + "content": "dfd7fafc792a91240b6e61e2c932d1e20d49f4be" + }, + { + "alg": "SHA-256", + "content": "c83a7b7acccdb2fe03bd19f817f6af605ffb522417e9966aef082f1a476cc609" + }, + { + "alg": "SHA-512", + "content": "25f8e64e7615e8a036420fff6e325454eacbe6db5916c28503291ad5cd83e98e1691ec44a5dcfa9493c4fb14ed1984acfdea178cec96be47c2a42a135e2d16ea" + }, + { + "alg": "SHA-384", + "content": "a8278d662598d34c3a3decab5ad109602df599068309163aa81e4c1e721752abc021753928841795e9617f6e6e87d968" + }, + { + "alg": "SHA3-384", + "content": "c3f379e8fbd956ba1cf42bbe9b138587b6936630576834a2d4cd92c00d1138d73a3f6d42d79cbc8a7d290638424b0fc3" + }, + { + "alg": "SHA3-256", + "content": "6ea79091fb8ca2ad421aacf92a46d730c946e21cc906e2e52242eeafad33e40a" + }, + { + "alg": "SHA3-512", + "content": "8734d86262ba2288f98fc128e6e56934f2a13c2f4fd08ab305fa8b2a6d41a2cd9223efe4d138da7e8bbcf485c4082b2a07a5692bab8d00750f33ba821913d5a8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-salesforce", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-salesforce@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "description": "Functionality to handle JSON input/output for Jakarta-RS implementations (like Jersey and RESTeasy) using standard Jackson data binding.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-json-provider" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-json-provider/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-json-provider" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13116097" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYA6" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "com.fasterxml.jackson.jakarta.rs", + "hashes": [ + { + "alg": "MD5", + "content": "35bef1d6e81f5c99e58afffdb9ee091f" + }, + { + "alg": "SHA-1", + "content": "68628d7f99cf91e746a09d2b3e2cfc057246d223" + }, + { + "alg": "SHA-256", + "content": "bf946b1a13ae9b8ba26eb775a6719882fbed52848fd9d462a50ca015b8a1cc8e" + }, + { + "alg": "SHA-512", + "content": "f7b742208afb8ac09c86d7d64c731fc193a3368e72ae0a1d59b53d5f3c27f50d720ba95bae13fe7610dad21ae98a0cd01c5440a1c5031addb2ceb6ce059cd931" + }, + { + "alg": "SHA-384", + "content": "c70061b4ef7a1132701192311d748bc28ffd475e1bd5823b592b0c77bb58899a33484c67ff5f8904bc1c2df0ad5ae8f9" + }, + { + "alg": "SHA3-384", + "content": "c1db8a2dd83e81e0c826d8264fcdfa920241a0bfe4096417c9a704ba70a67bbfafe9f93a42cbaf0527c02dbb99558678" + }, + { + "alg": "SHA3-256", + "content": "dd6bdb8c1d375f89f2722dd611a8801ed3d2cef85b541b71559243d4317e367d" + }, + { + "alg": "SHA3-512", + "content": "20cfb31aa3df32c18e842d32049758480ad27f9968084c97b29a0a14785c45fe3247e52acc4025a3514521a7af5ddbe25e1ba13717e97ccfee03c93ecfe34e0b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-jakarta-rs-json-provider", + "pedigree": { + "commits": [ + { + "uid": "55bed83f4b7d7ee17f51929eadfd5f981f1826d4", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-jakarta-rs-providers.git#2.17.2.redhat-00004" + }, + { + "uid": "8e2a6d4b4394e2353f7de6c7679a60aa1d0c9ec3", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-providers.git#jackson-jakarta-rs-providers-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base@2.17.2.redhat-00004?type=jar", + "description": "Pile of code that is shared by all Jackson-based Jakarta-RS providers.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-base" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-base/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-providers/jackson-jakarta-rs-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13116095" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYA6" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "com.fasterxml.jackson.jakarta.rs", + "hashes": [ + { + "alg": "MD5", + "content": "2b92560637e32ffe7bab46fcd27d47de" + }, + { + "alg": "SHA-1", + "content": "8cb003f070b5357d59ae4d96b1bbfccf2467e686" + }, + { + "alg": "SHA-256", + "content": "b3bcb9b2a52477cbc8b4c57e4b32133c96c38ed5e272b5ff223bd54bd1115780" + }, + { + "alg": "SHA-512", + "content": "2db8e59eacf9496d791110c826a2103c1544d8ac54ce6d0e593263524f7120e4bad281f645ff4dcd85ce1eb212557c8c6c4d405f122e8d22f572c8d474da13a6" + }, + { + "alg": "SHA-384", + "content": "af0ad6aec252a0a9f550c137ee1602e0e0fd215034e57263eaa6e7799e246f3e64a05102f85636b4658dea9a458bf6d7" + }, + { + "alg": "SHA3-384", + "content": "ad01a5043c855bd92bbeaff419cfc39539e9d61e02c6e3b8268ecf786d69ce77bc8ffb0b892d833c95fc95cdc41388d3" + }, + { + "alg": "SHA3-256", + "content": "7689eb636ee0b960b91df265b687748d1676b1bec2bd0d9970f63d547e5383e6" + }, + { + "alg": "SHA3-512", + "content": "69a57e4ce1fdaf82529e4526962bf323fae4a31aba9c6e26f4a35d086e01860163b43e20ecea30f0444776b6c975667c2e459e8904ab936b576117e1a3f81997" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-jakarta-rs-base", + "pedigree": { + "commits": [ + { + "uid": "55bed83f4b7d7ee17f51929eadfd5f981f1826d4", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-jakarta-rs-providers.git#2.17.2.redhat-00004" + }, + { + "uid": "8e2a6d4b4394e2353f7de6c7679a60aa1d0c9ec3", + "url": "https://github.com/FasterXML/jackson-jakarta-rs-providers.git#jackson-jakarta-rs-providers-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations@2.17.2.redhat-00004?type=jar", + "description": "Support for using Jakarta XML Bind (aka JAXB 3.0) annotations as an alternative to \"native\" Jackson annotations, for configuring data-binding.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-modules-base" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-modules-base/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-modules-base/jackson-module-jakarta-xmlbind-annotations" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115788" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.module", + "hashes": [ + { + "alg": "MD5", + "content": "d89106d81cf3ad7dbf9de843582f20fd" + }, + { + "alg": "SHA-1", + "content": "7bd164629b1c79180464ae25c993ad67ff2f04de" + }, + { + "alg": "SHA-256", + "content": "111d7e4a3e144bfdfad763a262bb14c6f8a460e7d8fca5353bdff0187977124f" + }, + { + "alg": "SHA-512", + "content": "c7a5b3d447e8ce48afc3f39a6b8e88c6aeb3b2c13e8a01c9b8cf8b4619a4b13eaaccdfa45875a1fda173054770e70f80cd2ea8e961eeb73c5538867f99af689c" + }, + { + "alg": "SHA-384", + "content": "b21bf47611a91318a9a941f2d7a79454c8fd42323918be9215ac4e6ecdca5861a0516a548d764578c1ca2c18178cb429" + }, + { + "alg": "SHA3-384", + "content": "831caca2fcfd5bbf1ffba141af16b56e9959822bb1e8827f9229359bdcda335b28e4a663d18971a053c548b48ef893f8" + }, + { + "alg": "SHA3-256", + "content": "06fbcd36e43ebe8f1b7439b6127a0a25de946040cdd30f2e6faa92be07227bc2" + }, + { + "alg": "SHA3-512", + "content": "8a6a020571c9a288d9ae4f7c2511a914d6e6c788dbc442a947252d19b86ad84cd265b2d24d05d45077384b5dc9d6953b9fc132e25975573bb102005a51fe2144" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-module-jakarta-xmlbind-annotations", + "pedigree": { + "commits": [ + { + "uid": "8a5508556561df29aa0406fe8f26489c0659ded7", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-modules-base.git#2.17.2.redhat-00004" + }, + { + "uid": "e3bbd2bbc01176829484256525f70d471407a52c", + "url": "https://github.com/FasterXML/jackson-modules-base.git#jackson-modules-base-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jsonSchema-jakarta@2.17.2.redhat-00004?type=jar", + "description": "Add-on module for Jackson (http://jackson.codehaus.org) to support JSON Schema (http://tools.ietf.org/html/draft-zyp-json-schema-03) version 3 generation.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-module-jsonSchema/jackson-module-jsonSchema-jakarta" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-module-jsonSchema-jakarta/issues" + }, + { + "type": "vcs", + "url": "http://github.com/FasterXML/jackson-module-jsonSchema/jackson-module-jsonSchema-jakarta" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115699" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAU" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.module", + "hashes": [ + { + "alg": "MD5", + "content": "4ad15f2bbcd31cc233b8522110600f79" + }, + { + "alg": "SHA-1", + "content": "e1dd6e73863d1574b6eeac7b4019e582dcc1781c" + }, + { + "alg": "SHA-256", + "content": "49adbd3068e5b8c392f1baed2f9514efb1d3ba77dd7b2681b9fc071b99c7a289" + }, + { + "alg": "SHA-512", + "content": "88c7bf7358b6d5f546454735d7b6cbf7533c04820c117b3a86d8fffecc1036a85e1de776cfd661d33fae87f4964495a94fccfea6bae4305fee2415a309a42742" + }, + { + "alg": "SHA-384", + "content": "c1812e81142579e1751b177c02a99f3bb00a61c7fb050f3a0d25945f9e1b654ba55bd131622b12e58ca19630326d4aea" + }, + { + "alg": "SHA3-384", + "content": "02c56a600340ccb0a5487c4ed40be00f0618f8312d1d5fc3cab6733676fdd840f720c758a1acabb0ad612fa22922decc" + }, + { + "alg": "SHA3-256", + "content": "dd8872b950c8ea34fb1652d4ad75ff64a6b3bc1a4e1d6d35b6c10be7641f95af" + }, + { + "alg": "SHA3-512", + "content": "dc96b027c4d2e5848c9bd59557fa40e549ddee71decc517ddef99aebdd62c8740b1717a02167f1cbe73739e820856bc71ad1efc0e91b539569ea1696d33bd5cd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-module-jsonSchema-jakarta", + "pedigree": { + "commits": [ + { + "uid": "9a6765fa2fe76dba9ec255b711daf47245455bf4", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-module-jsonSchema.git#2.17.2.redhat-00004" + }, + { + "uid": "33c9022f41b879f90c5b5364180bf7cf664e1b08", + "url": "https://github.com/FasterXML/jackson-module-jsonSchema.git#jackson-module-jsonSchema-parent-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jsonSchema-jakarta@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "description": "Jakarta Bean Validation API", + "externalReferences": [ + { + "type": "website", + "url": "https://beanvalidation.org" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://hibernate.atlassian.net/projects/BVAL/" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/beanvalidation-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8556695" + } + ], + "group": "jakarta.validation", + "hashes": [ + { + "alg": "MD5", + "content": "3a1ee6efca3e41e3320599790f54c5eb" + }, + { + "alg": "SHA-1", + "content": "92b6631659ba35ca09e44874d3eb936edfeee532" + }, + { + "alg": "SHA-256", + "content": "291c25e6910cc6a7ebd96d4c6baebf6d7c37676c5482c2d96146e901b62c1fc9" + }, + { + "alg": "SHA-512", + "content": "8ff9a450e13dad49ac8268ab8c591e045e5056f9459efa09fbb3561b5c879526b344e2648602bf65d387620064cf0c3a00e1243c6422c85a21b53dbab8749a40" + }, + { + "alg": "SHA-384", + "content": "ab594665f5416edc8b42687e4ca17583fdcf886725ed98a88beb42bb5980d3672a5a5b7dd93b73c2282393ef1814d21d" + }, + { + "alg": "SHA3-384", + "content": "bd43bd51ad4b56fe5bed62d478554a0e2a183b8ce38ed8606adb52d219eefe2efedafdd3d530b1f680824f54a680ab4b" + }, + { + "alg": "SHA3-256", + "content": "48b53a0b142c3b314427ea2133e54151ed8263c1627527b8bc824784596840d7" + }, + { + "alg": "SHA3-512", + "content": "3b6ec58f766f0958be2529b66d12bf492dfb78c49bfd41be87d9102e0885144156a693828f201a2a7019774c02824dfcaf717394a8858779fc9b2cd44b74b453" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jakarta.validation-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "3.0.2" + }, + { + "bom-ref": "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "description": "The Apache Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-io/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-parent/actions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/IO" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-io.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12428089" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BACM37VEMFIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "commons-io", + "hashes": [ + { + "alg": "MD5", + "content": "20adda1f3758b8c50bc2c5f5e0de2a5a" + }, + { + "alg": "SHA-1", + "content": "e89f5dd7a49d8d7e92bfb93967f8d37ea7162162" + }, + { + "alg": "SHA-256", + "content": "8b8f9bfc149e3c4a8b6c38902e8ddf62d2937fa6c742dcc9746a9e68977a9a15" + }, + { + "alg": "SHA-512", + "content": "76aa4b22f448ce478b495038cda7032e17510db6e714794a3f5a1c59a88120f3c3fb2cd2655bfabf26ea8bccece1f8dc70838b76c1275f1fbad1f29d41248e6d" + }, + { + "alg": "SHA-384", + "content": "384854531753e57b645a25b89355cb67857d8aa054fb7bcf30702e0cc1f9f9e6536b9a0625ea9bb2488d7bf8be4a4493" + }, + { + "alg": "SHA3-384", + "content": "394e1b51d476713ecd56653c7dbf5a5848e3647688ad1ffd284f8d781900a99832a6f4e79eda5e21a21a50658fb0560c" + }, + { + "alg": "SHA3-256", + "content": "f27656600b013bd88dd67d253b8bcefcb5b0a72b15de85c7f43ec34e66d0be1d" + }, + { + "alg": "SHA3-512", + "content": "7eadba3a44a61acb02b61da7114f6c5f59377649282108eb4977216c5369bf9a82124909083ef42a6743e3e19d8940f06719485f01a0676bf9dbfc89ab7ebe48" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-io", + "pedigree": { + "commits": [ + { + "uid": "9d8fc3cf81fa33703153524813ae0774162da488", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/apache/commons-io.git#2.16.1.redhat-00001" + }, + { + "uid": "290d72eda9152d1e11b79d48453908ff3f6b9897", + "url": "https://github.com/apache/commons-io.git#rel/commons-io-2.16.1" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.16.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.cometd.java/cometd-java-client-http-jetty@8.0.4?type=jar", + "description": "The CometD project is a scalable web messaging bus that uses WebSocket and HTTP AJAX push technology patterns known as \"Comet\" techniques", + "externalReferences": [ + { + "type": "website", + "url": "https://cometd.org/cometd-java/cometd-java-client/cometd-java-client-http/cometd-java-client-http-jetty" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://bugs.cometd.org" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/group/cometd-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/cometd/cometd/cometd-java/cometd-java-client/cometd-java-client-http/cometd-java-client-http-jetty" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866690" + } + ], + "group": "org.cometd.java", + "hashes": [ + { + "alg": "MD5", + "content": "3bbe309a3ee647fb10a13c207776e1a0" + }, + { + "alg": "SHA-1", + "content": "f1ff4c3664015ab2d8faf1c9bf780653c9bdf541" + }, + { + "alg": "SHA-256", + "content": "edd5c419128365b6f049091f4ac1081122ca7c6e4e3f90f086895f1123c3dd47" + }, + { + "alg": "SHA-512", + "content": "7bc44367c8c26e69d48143fa91d467ae1d26451e1f082944c5186a1beb8126e3a3b92dbef78c8fc4145c52067c8be917b0c5c536cf2e4c7d2405ae283604b6ca" + }, + { + "alg": "SHA-384", + "content": "dadc41c7272c85cf63d0e837b1f55949b6b3890f250f5ebcd3f9c6895e5fe38a0f7efe6a07b74015c943abe0fc4073f8" + }, + { + "alg": "SHA3-384", + "content": "d773f7bd8344ddd5bf255cda69482d861cf285543d2d7c1247d014279873fb1e950202ad802e8c20371429c2a336f196" + }, + { + "alg": "SHA3-256", + "content": "035575950ef4e2887d6c88a997bef5b339c4753691a175ea1462b5e26c05cff8" + }, + { + "alg": "SHA3-512", + "content": "f6d1317e50a2c67847188187d9c20d3ef5326a4f58a0b5fc18b802ea67ac396ef8b4e13ba0c02de37a36b15ce91b8a5ceace0d0dff9cc5550317826013d79762" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "cometd-java-client-http-jetty", + "publisher": "The CometD Project", + "purl": "pkg:maven/org.cometd.java/cometd-java-client-http-jetty@8.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.4" + }, + { + "bom-ref": "pkg:maven/org.cometd.java/cometd-java-client-http-common@8.0.4?type=jar", + "description": "The CometD project is a scalable web messaging bus that uses WebSocket and HTTP AJAX push technology patterns known as \"Comet\" techniques", + "externalReferences": [ + { + "type": "website", + "url": "https://cometd.org/cometd-java/cometd-java-client/cometd-java-client-http/cometd-java-client-http-common" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://bugs.cometd.org" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/group/cometd-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/cometd/cometd/cometd-java/cometd-java-client/cometd-java-client-http/cometd-java-client-http-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866688" + } + ], + "group": "org.cometd.java", + "hashes": [ + { + "alg": "MD5", + "content": "a9203cd65696934d169436704a0e207b" + }, + { + "alg": "SHA-1", + "content": "b826397f0846e1b38db54d4768f5fd7d8853a9f4" + }, + { + "alg": "SHA-256", + "content": "29861459f7a15c2695e799f29ab40a65a18196ef417e6d42c80021290b29db18" + }, + { + "alg": "SHA-512", + "content": "501c83b10765f06655ca1f8818fe57f1f7b23b25c531d3dc0d22823143061730108b051c140861a5f07c2f5523696e1de8a16091883dc9fa8309b7e7d5d56459" + }, + { + "alg": "SHA-384", + "content": "9c9b304e8ac515fc2eba3275f711a2f8da92d6d4ccb276034af05772df3ebb54895260893837670db73693d7fb1beca7" + }, + { + "alg": "SHA3-384", + "content": "1c843afc84e881a3d3f5f8c5a07a1636fbd637287fc757f977b265406d618b13c3294637f72997ff837abd5e3dfc8acd" + }, + { + "alg": "SHA3-256", + "content": "629a017a516c856e7c9d4787c69f9acca26b69474427325711d40f06c78ce0e0" + }, + { + "alg": "SHA3-512", + "content": "dd92d68ea3c5d63bac3f043ebe942ce5a216bfb651026bd689fee49ac0a542584223a7a296072c33cba0bcde359e04a628dde1d9d26d47cc8047fb3e524f7fec" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "cometd-java-client-http-common", + "publisher": "The CometD Project", + "purl": "pkg:maven/org.cometd.java/cometd-java-client-http-common@8.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.4" + }, + { + "bom-ref": "pkg:maven/org.cometd.java/cometd-java-client-common@8.0.4?type=jar", + "description": "The CometD project is a scalable web messaging bus that uses WebSocket and HTTP AJAX push technology patterns known as \"Comet\" techniques", + "externalReferences": [ + { + "type": "website", + "url": "https://cometd.org/cometd-java/cometd-java-client/cometd-java-client-common" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://bugs.cometd.org" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/group/cometd-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/cometd/cometd/cometd-java/cometd-java-client/cometd-java-client-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866686" + } + ], + "group": "org.cometd.java", + "hashes": [ + { + "alg": "MD5", + "content": "a7eee2e4a51287a74b8157151014cd06" + }, + { + "alg": "SHA-1", + "content": "088176300ccc77c7de06cead01b81714914bb3f0" + }, + { + "alg": "SHA-256", + "content": "f36d34258f6d346e5b827175b73ee7ba6cf04d25ecdff215c7d50295a3545ec5" + }, + { + "alg": "SHA-512", + "content": "b7272a1e1644b7fbc5dd4c8012420f0cffaf833e958f861b3e68a8ceb782016e04c89d184909359e9396099b1beda1f412cbf7eacbfd2847254ada56a8d5490a" + }, + { + "alg": "SHA-384", + "content": "36bfedb3d6241f99d71381b42b06ce12996f9bcf17f66ba3dae7f16b487bc39e38c89915d84d82505c756874695be42d" + }, + { + "alg": "SHA3-384", + "content": "aa2bbe9830b12b999ec88d5e63816cbeec5176c822a3012449faea19c299f027a40259b5c66ae826208277d8c9349488" + }, + { + "alg": "SHA3-256", + "content": "88768e70f2787705283629145d3d3fd3e11ebc92763da2ad8b5522475b4cdf20" + }, + { + "alg": "SHA3-512", + "content": "f32d7d2d358b0fe4a38c7dd5dbf8af495d8ead0cc36129406c8b8953a95b4a6841a98bbddc4730e29ed984eb1b39d9c61a4e083bf58e1c01dc61c2e0f94bb35c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "cometd-java-client-common", + "publisher": "The CometD Project", + "purl": "pkg:maven/org.cometd.java/cometd-java-client-common@8.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.4" + }, + { + "bom-ref": "pkg:maven/org.cometd.java/cometd-java-api-client@8.0.4?type=jar", + "description": "The CometD project is a scalable web messaging bus that uses WebSocket and HTTP AJAX push technology patterns known as \"Comet\" techniques", + "externalReferences": [ + { + "type": "website", + "url": "https://cometd.org/cometd-java/cometd-java-api/cometd-java-api-client" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://bugs.cometd.org" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/group/cometd-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/cometd/cometd/cometd-java/cometd-java-api/cometd-java-api-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866679" + } + ], + "group": "org.cometd.java", + "hashes": [ + { + "alg": "MD5", + "content": "20059a5774729263e10e757d36c7fd3d" + }, + { + "alg": "SHA-1", + "content": "b18d7f74062c4ac7e8f8e00c1dcee475b89ea6b3" + }, + { + "alg": "SHA-256", + "content": "987ffa3c6b8e562910947246de4b99bc4a9c12b7e4a1f25fb051918c18c6a396" + }, + { + "alg": "SHA-512", + "content": "be35321c77af2b9f98bb33f92f9eff3fac8a966243a1b2c126f7accacb7954d675e08ca8cef7f0857470f221b7bb3650bf21f388a131d4b1c85ad42e221c7c9c" + }, + { + "alg": "SHA-384", + "content": "35a8eae12a00aad4831cce21d8fc4699e16e9a93d6a5879e05b5fbc4ab17a45d541a21816ed9c50dba47142bf0f1fe63" + }, + { + "alg": "SHA3-384", + "content": "e5bda1b62296e408db82845dc263b325c53e56aac4db5022d31d153af2d6c3e1ddf23fb41114b16b8905bde4fbc63966" + }, + { + "alg": "SHA3-256", + "content": "5d10e6ce8d6dec8c5218adaeb59be33f111808dbc7ad49a23fca724fa58a5870" + }, + { + "alg": "SHA3-512", + "content": "90f5cbcfdf3e6d2b4d5927b533375006c93d043451084fe9238b8017111b318fc22df023ad4a2c7dd9b72034981351adb8465d290ba1b33e6f16de7d89d21bc1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "cometd-java-api-client", + "publisher": "The CometD Project", + "purl": "pkg:maven/org.cometd.java/cometd-java-api-client@8.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.4" + }, + { + "bom-ref": "pkg:maven/org.cometd.java/cometd-java-api-common@8.0.4?type=jar", + "description": "The CometD project is a scalable web messaging bus that uses WebSocket and HTTP AJAX push technology patterns known as \"Comet\" techniques", + "externalReferences": [ + { + "type": "website", + "url": "https://cometd.org/cometd-java/cometd-java-api/cometd-java-api-common" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://bugs.cometd.org" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/group/cometd-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/cometd/cometd/cometd-java/cometd-java-api/cometd-java-api-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866681" + } + ], + "group": "org.cometd.java", + "hashes": [ + { + "alg": "MD5", + "content": "ae97f73edd98053c6464bd718dcd2176" + }, + { + "alg": "SHA-1", + "content": "ce8d7ebb5ffc6931f1666ee80fe612f88b9cf9c9" + }, + { + "alg": "SHA-256", + "content": "746051cd69f75ee3151ec1258ff01aae71416c6bb92f4176ae86e62be876e222" + }, + { + "alg": "SHA-512", + "content": "0a14a59e77c6090e68078ce75328dc1970666e0157f4850b4a4c985bb8df24a632938d443d635173badf7b0480bdbced0e0eaab30a7c42b9115ed51b712f1fa6" + }, + { + "alg": "SHA-384", + "content": "24c87758c0d1d7fdc8461e21583c5477009d312aa7b692fd57bd0ea2ac453cc5fddf59f4642f21ab69428b98e75eea32" + }, + { + "alg": "SHA3-384", + "content": "eaf80370450c9f2cdd0d7d3fd1d814353a4ac25635bdc180149c4c01cbbee8f1011a093bb8762d316d96af792d0b6c39" + }, + { + "alg": "SHA3-256", + "content": "52f6f9ee8d4c030631604561b627c4e20ad1205d147bcdfcdb23fc4158a8bb36" + }, + { + "alg": "SHA3-512", + "content": "7b0c6b5ff7e55aa8d64d9da94fa9f50733c8306eba85b4c311d50197d9003df7301403814a9739a0e0aee6123cf359faa36f7ab910f2f5d62db7166ac456e2ac" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "cometd-java-api-common", + "publisher": "The CometD Project", + "purl": "pkg:maven/org.cometd.java/cometd-java-api-common@8.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.4" + }, + { + "bom-ref": "pkg:maven/org.cometd.java/cometd-java-common@8.0.4?type=jar", + "description": "The CometD project is a scalable web messaging bus that uses WebSocket and HTTP AJAX push technology patterns known as \"Comet\" techniques", + "externalReferences": [ + { + "type": "website", + "url": "https://cometd.org/cometd-java/cometd-java-common" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://bugs.cometd.org" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/group/cometd-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/cometd/cometd/cometd-java/cometd-java-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866694" + } + ], + "group": "org.cometd.java", + "hashes": [ + { + "alg": "MD5", + "content": "55ab0d76bf35bb268d134e9fe9a109d9" + }, + { + "alg": "SHA-1", + "content": "2820c3c7d2fd569bfe8e58ec870be0f39d7ed94f" + }, + { + "alg": "SHA-256", + "content": "3d2d87ff0a6e05587750253dbdaafb69accae3cc23bb2f67552523b9a5c8755f" + }, + { + "alg": "SHA-512", + "content": "c12e7086be89157f424bfba5405ef2897fdf3bd8b206abf06a01f49bceb496118d32275c66f4583ff10a814137a331ff69a78be0ba60de25f66b25d384f6042a" + }, + { + "alg": "SHA-384", + "content": "1f04f6363105848d4bb495033235f363300aeeb2853e6a4146f3160ea5bdc95f7fd676dcd71fd51619a8dec3415660df" + }, + { + "alg": "SHA3-384", + "content": "ae4ec695a524b55dd88d34003da8f43c3764ff5fc544db8b55056d0694f459d6241e2d3e2dff0b46e32c0a8c7ad9efc8" + }, + { + "alg": "SHA3-256", + "content": "34cc650ee690f81ddbd331b286e66c0ce48784c3d2d869533e856cb2aef3036d" + }, + { + "alg": "SHA3-512", + "content": "b40f8b691c123e8e9275a1b10ff1bd8c49d805a0f24fc502e5720ff02581c8dc4eda041b349e0e0ff84c83d3764d69508997817486df25bf97210cccca5d4d03" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "cometd-java-common", + "publisher": "The CometD Project", + "purl": "pkg:maven/org.cometd.java/cometd-java-common@8.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.4" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "description": "Apache Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-lang/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-parent/actions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/LANG" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-lang.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13215105" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "4e5c3f5e6b0b965ef241d7d72ac8971f" + }, + { + "alg": "SHA-1", + "content": "1ed471194b02f2c6cb734a0cd6f6f107c673afae" + }, + { + "alg": "SHA-256", + "content": "7b96bf3ee68949abb5bc465559ac270e0551596fa34523fddf890ec418dde13c" + }, + { + "alg": "SHA-512", + "content": "0338b50767166e5746ada6d6aa2e071e7221d699323bfb629f7f204b294c1dc4cad140610a129ed751798443b43e74e0818989c7df7d33c5915aa29742be9ba8" + }, + { + "alg": "SHA-384", + "content": "908d0a22dc17aaa04caa5104cff7cad5b88b77eecb78dd5b3b3fefa22ff71ac50a4fb9e31c897ac243f9d841e4b3453d" + }, + { + "alg": "SHA3-384", + "content": "8a7f2e061b998780870eddd571620fbf3d3c70bcb54e24539d0db504f59d65bc6bda58136284498babe29fcc5eabb7a6" + }, + { + "alg": "SHA3-256", + "content": "022bf1f8039fcea717e9e34dd96eb80cfff05b43c9cbb76e9739b2421e2d027c" + }, + { + "alg": "SHA3-512", + "content": "0bcbc4edce974ea970c46e2da12ec98d9fd962c2cf64f757ac97136dec5623ca52af0c225895303c17ffabb57090e6772d7bd326d5e7438cef5454f8bbaeecfa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-lang3", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.14.0" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-netty@1.66.0?type=jar", + "description": "gRPC: Netty", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865558" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "591c2ffb064de1b862fc8abdaed2d767" + }, + { + "alg": "SHA-1", + "content": "3f7033a84be5ed221c77fc07754982171d89e966" + }, + { + "alg": "SHA-256", + "content": "77f7c0ccd77df1d62a8508fef6676fa80b388e3ef4f67fceb99a7d5eaa73b7c9" + }, + { + "alg": "SHA-512", + "content": "8d9bd9a07fb0a9472f64d5ee6170b3ba348a4eef1e9ff0edb4f6b7eeff91764fb0e06e89b7f2b47283953f42ed418884f1b86da7af4338cc18442c9798ba655c" + }, + { + "alg": "SHA-384", + "content": "ec29fcf28695c9ec08ab59105b414d0c83a14cbc6383b8dd4ccd403a4d229f445724cd22219f93e6838c04a40c171223" + }, + { + "alg": "SHA3-384", + "content": "eae43b870628d1e5bbd4b4ccde49692c5c0fee4e7c8773b1387a332018d39a67ed065c5d2097010fd90d9249d1b3c153" + }, + { + "alg": "SHA3-256", + "content": "cbafb2b42d37ecf27079671a5b9ea9513eda723f9a79ce51a381e0c02ee9e149" + }, + { + "alg": "SHA3-512", + "content": "bfb43fd16ff194ce6436ef4c593a0003d21826eac6726893edcd10f3213051f2b7889f0f80c5ccd46e8e9d111eec52a68b76c952ad7cbfa39969c8eacd995097" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-netty", + "purl": "pkg:maven/io.grpc/grpc-netty@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "description": "gRPC: API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865541" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "e2d44a1075af4019389547bb2274ded1" + }, + { + "alg": "SHA-1", + "content": "a2d48c8f3d22296c4a9e71a42b3ba457717889b3" + }, + { + "alg": "SHA-256", + "content": "8fadb1f4f0a18971c082497f34cbb78a51897ca8af4b212aa2a99c7de9ad995c" + }, + { + "alg": "SHA-512", + "content": "061a1cf37948b08c7f987ae47a3ff50854077ac98ed6028e7e3d04185234009cdfff0c9de111410a82dc4cfb84cf48660fdaf5036cb13a34bc38495a0b93bef1" + }, + { + "alg": "SHA-384", + "content": "616c4160252c211cd7cc061c90f2ce48af9d9eabd2b240fd907ce0e1154cda06b2e515575d7f1167439915ed77a967bb" + }, + { + "alg": "SHA3-384", + "content": "b56aa80297cf645efe6d41c8e092080a6b5e6406f409c1fa4d8c8b1be4bd4ba2df209a47bbb88aa2aa43dc29fae2a70b" + }, + { + "alg": "SHA3-256", + "content": "1156b60932fceee916886aad4e74ce209a958a18a5812a8baae6309c33183241" + }, + { + "alg": "SHA3-512", + "content": "2b6a7644c36bd7e4d83a83b1500a7701a444d017a2995d11d163e98e8ec06e498aef87a304a371d86a37aac4981b86a6fd3f04b9b13dd0d2c5885a2d5797c55f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-api", + "purl": "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-codec-http2/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-codec-http2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076363" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "f6b473bc3d840d8a40054b972aa06f8a" + }, + { + "alg": "SHA-1", + "content": "201a747239ef929665c5039c6f2a0a55873b75a8" + }, + { + "alg": "SHA-256", + "content": "0fcc6a8370166b01585a1537481e6ba8ba1362f57ddaf1ced8181aa3a87b1e02" + }, + { + "alg": "SHA-512", + "content": "8b2fc1a58e0d24723ee0eae22f42563a73160a369198ff09b5afd8a8eaa6eb4e9f885d0b2f929d576240d8d57cfbd841c630b88ff9fc16c94b41aae408c144ba" + }, + { + "alg": "SHA-384", + "content": "f464c5a2227c96ee2c46e5dd5174c250863210689e7facbee858b64b5147c7d17c572429c00268213a8147e2cc420046" + }, + { + "alg": "SHA3-384", + "content": "805181cd09c76814ce36708a58b3caf0f9383db4c2f7edfdbcc8954966195c1d9f938286a73e0534510b86b9348fc162" + }, + { + "alg": "SHA3-256", + "content": "80b13388f3268e3cbec9f7838ceb1defcc4a98244b4c1d4038e21a6a810a75a6" + }, + { + "alg": "SHA3-512", + "content": "7f291fa1af666f677009a9baa595efbb039a209643e7e364d8ef1b49ee71b37d0b39eca28ae341aa8f9bd282b4830043fc92c43731d696ee0c50b29f9def2153" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-codec-http2", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-core@1.66.0?type=jar", + "description": "gRPC: Core", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865548" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "8ef28bd667824e3da2e913af02ee3026" + }, + { + "alg": "SHA-1", + "content": "3a23ac1e0adf6c95efb5b8cd8429154cd5239c03" + }, + { + "alg": "SHA-256", + "content": "136b7a7c411a45089dc2b26f0f032f4ae466d9b5d3bfe3a513421d6f35d2c2bd" + }, + { + "alg": "SHA-512", + "content": "10f964c32aec5d0afe449fa647e086fbf2223a574ed758bb64f58f1b87053a81b5d3c7e7d6418ec69df6607ff2cc08b5662e281e257217f286893cde5c5bf65e" + }, + { + "alg": "SHA-384", + "content": "c0be9a240cba6910a2716b76b44f8fb6468dea07b591cd22edaf92a44b7088a9ea80122be53dc2c7e1c182c71f5eedd5" + }, + { + "alg": "SHA3-384", + "content": "d1e6fa0115a8acd80f6802982c90f301e0f39ccf1e3574992b06076f87c691728f5e4d7304e93ccd25cf1491d494f3c8" + }, + { + "alg": "SHA3-256", + "content": "98ede76f0c463f90dca08b67c9c8c58f80957a645bd30552dc16a07bfc118d2e" + }, + { + "alg": "SHA3-512", + "content": "fdb4ecd5d3046218ee82e9fcbbabdcfa8b20330e6308ef0bf9234054d02b3fd3272accb33ec3f64196709056ea536edcf36d8bc78be9e98bbebaf85c5de23105" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-core", + "purl": "pkg:maven/io.grpc/grpc-core@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/com.google.code.gson/gson@2.10.1?type=jar", + "description": "Gson JSON library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/google/gson/gson" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/google/gson/issues" + }, + { + "type": "vcs", + "url": "https://github.com/google/gson/gson/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13237678" + } + ], + "group": "com.google.code.gson", + "hashes": [ + { + "alg": "MD5", + "content": "df6097815738cb31fc56391553210843" + }, + { + "alg": "SHA-1", + "content": "b3add478d4382b78ea20b1671390a858002feb6c" + }, + { + "alg": "SHA-256", + "content": "4241c14a7727c34feea6507ec801318a3d4a90f070e4525681079fb94ee4c593" + }, + { + "alg": "SHA-512", + "content": "7503e4b8d05c6cc0ecb3a94c5a2e070e049083a441003a79a0cdf474f4286699b4ba1d2a655ddabb8ba10c50e7c36a7045cccdaee465166d4630db647aba2727" + }, + { + "alg": "SHA-384", + "content": "48a4786bd6e1867f058ee4fb676fc82d9d9f64a6d7420d4a47ae2398504c9de73222636614aeb4a9fbf10ee143d72226" + }, + { + "alg": "SHA3-384", + "content": "3df9a0332c2766124fe7c915cfea665d2e318ccaa7212415fabd9e93e6eb77de538725fd2ef313cde46f6d814c9566ea" + }, + { + "alg": "SHA3-256", + "content": "d3374006d76d4f9acdf3d3a1a4f47899570f52442b2188f80c09a74f22139ecb" + }, + { + "alg": "SHA3-512", + "content": "2b10c2f4fe39d8712b430ff171823d7172c0a06685c1eb7de511e90159cec0e094fb2a9b50b747c5b039cb10f1fce9edf82ecbf9c47f76a6f31c4e3cb7586cce" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "gson", + "purl": "pkg:maven/com.google.code.gson/gson@2.10.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.10.1" + }, + { + "bom-ref": "pkg:maven/com.google.android/annotations@4.1.1.4?type=jar", + "description": "A library jar that provides annotations for the Google Android Platform.", + "externalReferences": [ + { + "type": "website", + "url": "http://source.android.com/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://android.git.kernel.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/1447204" + } + ], + "group": "com.google.android", + "hashes": [ + { + "alg": "MD5", + "content": "c2cdd26a6ae577f24775e8ce75da1fdc" + }, + { + "alg": "SHA-1", + "content": "a1678ba907bf92691d879fef34e1a187038f9259" + }, + { + "alg": "SHA-256", + "content": "ba734e1e84c09d615af6a09d33034b4f0442f8772dec120efb376d86a565ae15" + }, + { + "alg": "SHA-512", + "content": "530bfa9e7aea7b2dc2e8776f083705f12772045f6f4bbe235a1c3e97646bd0b0a367358aab0f129058d1899573f4bce97d7db3dfff96dfdabc99377c5d837222" + }, + { + "alg": "SHA-384", + "content": "0771b9b0125353a343bbb5a6eb4de4410d142fd97141b813455ff1aa701074bd40f3b9049068b6053ccccdd99a2d992e" + }, + { + "alg": "SHA3-384", + "content": "161c69a8915f93c1988db0858d36d176e69b5afb16163941ddaf8076c27ff70f8af9833a4b5fe8c1105703f40f28e0dc" + }, + { + "alg": "SHA3-256", + "content": "33f365df2464788b8ad8245762f6dbf45ab77ac712608f841d20a9eb4fc4ad27" + }, + { + "alg": "SHA3-512", + "content": "a8d24c29131540a3fd4d7a41039bb1b9bb354045225b6c98af96d733946aaec240b3e0114b73526b8b24652fd117fd167446a957af205a26c4d5714e3d9786e0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "annotations", + "purl": "pkg:maven/com.google.android/annotations@4.1.1.4?type=jar", + "scope": "required", + "type": "library", + "version": "4.1.1.4" + }, + { + "bom-ref": "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.24?type=jar", + "description": "Animal Sniffer Parent POM.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.mojohaus.org/animal-sniffer/animal-sniffer-annotations" + }, + { + "type": "build-system", + "url": "https://github.com/mojohaus/animal-sniffer/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mojohaus/animal-sniffer/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/mojohaus-dev" + }, + { + "type": "vcs", + "url": "https://github.com/mojohaus/animal-sniffer/tree/master/animal-sniffer-annotations" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12861909" + } + ], + "group": "org.codehaus.mojo", + "hashes": [ + { + "alg": "MD5", + "content": "508b8c41cb5b48cdd2d9db436c367bb0" + }, + { + "alg": "SHA-1", + "content": "aa9ba58d30e0aad7f1808fce9c541ea3760678d8" + }, + { + "alg": "SHA-256", + "content": "c720e6e5bcbe6b2f48ded75a47bccdb763eede79d14330102e0d352e3d89ed92" + }, + { + "alg": "SHA-512", + "content": "6f8118093576be9dc0860cd02600d9e159d78e99b94f06c2dcbbfea6cc3a7d509418dd697b998a9abcdf0315497e4ab21e16f3fd2942e97bcf7fc16b1122bcca" + }, + { + "alg": "SHA-384", + "content": "1862c17fade8b2c40f87f5973fd7b518e3c258c23221b6cce9ceb83aa24e78867910ceb78980f47427d5134820583784" + }, + { + "alg": "SHA3-384", + "content": "4aa0a2e2fa0b94448910ef3a6a0354873ecd437ed26e187342f962d2f450c1cfc0df22367c823685201f40057fbe76ce" + }, + { + "alg": "SHA3-256", + "content": "826a4caa0d95e087896a7683d1c4630766d7a9d00bb7a8fe1537baca082e0103" + }, + { + "alg": "SHA3-512", + "content": "4b074c1dca97166fbdec018679249abf6f1115e4de360dc20aca5b4644cdc4ebf57dbf2c03e745f1a135e2a5b8b23f9a517819673d7fad38cf3b64ee942bd311" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "animal-sniffer-annotations", + "publisher": "MojoHaus", + "purl": "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.24?type=jar", + "scope": "required", + "type": "library", + "version": "1.24" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-context@1.66.0?type=jar", + "description": "gRPC: Context", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865546" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "33950e448c4eef283ce747891f51ec65" + }, + { + "alg": "SHA-1", + "content": "403469f70be9b9add6b670d37975f31660a8d382" + }, + { + "alg": "SHA-256", + "content": "7b7521aa2116014d08dc08825e13d70eac8eb646d09dd44980b6f4d1883e6713" + }, + { + "alg": "SHA-512", + "content": "a7b56bebc5aa204c52a17881cc3add8f8a75863a78710c3d6850785abb12703072ae1fef3da33515ebf34f7f6660e82edf9f3a2669b93d700b71124456db3037" + }, + { + "alg": "SHA-384", + "content": "d97181cd9ab141021e08961f15c1a053f4e2646f51c91f483031863c2e46f05908c863982143308e3663446f0d20b5c2" + }, + { + "alg": "SHA3-384", + "content": "f5fc88db2830acdafc9c61a7ccdc06a820434ff576467f9cb5b9a007da6491fec824678b615bdf29289c982a2bde3a15" + }, + { + "alg": "SHA3-256", + "content": "37e73f3e21cf79e0d359c44b673bd675ccc52988ffe02a59c5bce31d901a860a" + }, + { + "alg": "SHA3-512", + "content": "4f1b36d3ce1b20874ff119292c2e2e088e85fedb4752e535e27d23ec7886b74ff543e3841fd2c06de7390f966f4d6df75ed6a54cd750c78f83bee92faf4f0679" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-context", + "purl": "pkg:maven/io.grpc/grpc-context@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-handler-proxy/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-handler-proxy" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076338" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "0faf0c4d39b92f76aed3634b52b6359d" + }, + { + "alg": "SHA-1", + "content": "a71be2118faa9498995459025098a98830f9bf73" + }, + { + "alg": "SHA-256", + "content": "23261407bea2c0af2c880ba30bf37b20b84b276496376465f8b8b4e671070b31" + }, + { + "alg": "SHA-512", + "content": "4a0a43e7cce9ecb1bf507a0252ac450e3cb9779bbed25f08e01df4fdea9daa51c4049d6c59cd83be74536593b37e51ad8b5a631cd1fbc33643c1630bc333630b" + }, + { + "alg": "SHA-384", + "content": "8a51b29586a842672359d3eb9a6172550428567b257ef38c1cb424e67c72e1b4c324b0263a527969b31baa9255c9ebc8" + }, + { + "alg": "SHA3-384", + "content": "3e462885493bb80702dbf56fc848e9daab8ff9701eef39089d342554685b85dfa395e69161a95793c4bcf73ad02ca778" + }, + { + "alg": "SHA3-256", + "content": "d89d9f9a7bcb5a525b7955c02d7e960dc58cdc7e3218b267d1943e52c9195ea5" + }, + { + "alg": "SHA3-512", + "content": "1c5fd21536ebfc38c9c0395125cd6406bc7daca5545161a1a56710fc4206a713e10162b0366b4aa4a348b9dee444fd2cb5d5cf1c7ceebad53596930ee308abc0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-handler-proxy", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-codec-socks@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-codec-socks/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-codec-socks" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076348" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "527e1d0a7c381a067f946a53f7eb2df1" + }, + { + "alg": "SHA-1", + "content": "c2212a884d613e0fd3efaff31de619243d29d257" + }, + { + "alg": "SHA-256", + "content": "acd6aa888e502084627ade7d89b52dd911a393832d3b337ab08f0b0b374912b9" + }, + { + "alg": "SHA-512", + "content": "54f4f4aa781913b760dbdaec320b13aef9c952e6d9ab9cbe06bcfd63297c7150103c94f97d386e15c631072873c8c6aaae8715331b8c00e14804983e0760bc51" + }, + { + "alg": "SHA-384", + "content": "ade238c371de8745fb5061054f4c555b31e6a1be3ab9f69ba5ada6e750fd1ed451a380a0a8beafa3f6e9954d44193d49" + }, + { + "alg": "SHA3-384", + "content": "ca19ba3ae2983612a007b33730c606b653964afc97dafddcdc7b2c771c1ef26025b43a7aae4bfdd5ca5570a30878c22f" + }, + { + "alg": "SHA3-256", + "content": "2a38a722cbdc785288f76915132c8631e20442f1583421d707f4aef518a597a1" + }, + { + "alg": "SHA3-512", + "content": "0f0d601b220226ecceb6bebbc1ce6ff3d8bae3a10bbaf32cd2d5690f992c75ec09c4b5324e9fd5bf3ad6b9689cb3aef6810009018de5d7b6baa01d50539e7f60" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-codec-socks", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "description": "Guava is a suite of core and expanded libraries that include utility classes, Google's collections, I/O classes, and much more.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/google/guava" + }, + { + "type": "build-system", + "url": "https://github.com/google/guava/actions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/google/guava/issues" + }, + { + "type": "vcs", + "url": "https://github.com/google/guava/guava" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12297535" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7SD6BBKPKYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.google.guava", + "hashes": [ + { + "alg": "MD5", + "content": "3728651f7a60303c133738be7de36cd2" + }, + { + "alg": "SHA-1", + "content": "02584235da08b93e3e7e0c7f95a7ccf34ed7a8ca" + }, + { + "alg": "SHA-256", + "content": "f2d90e9c5969a2392d3e2bbe8ed274971329c67909a7178722da852b8975d124" + }, + { + "alg": "SHA-512", + "content": "c9b2b69f25594671e38dc897a58497fe4476fe509d130d6c7d3bf627a3a1cae5c18ce43086293c158af529fc230691304d6258a48880bb562aed4d9ecf7cd518" + }, + { + "alg": "SHA-384", + "content": "2bf135a105abb069b0b996633610a2c9c9c529c7a1ecc5d3129f7454bb8ac21a5e9b534e21c8d8a7f19183eac1fd35c0" + }, + { + "alg": "SHA3-384", + "content": "8497e69e399d9f0159b7de93a41aa37f9a509caa8fa8ad8620c8cf83a01f415d46bbedc0647970e936ff3d89ffdae395" + }, + { + "alg": "SHA3-256", + "content": "2e10888c542b8ea7ec4c94078eca72204d84537fd86ba94397ff31843adfb1b0" + }, + { + "alg": "SHA3-512", + "content": "8c87ec542ffa3bfd4c1f8c37616dc2b4d4eedcb052f2debe3e2b20918b533e3c381a669515f8accd12e40f604e4b52297a44ccbd1bb62b067430e4358752ab72" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "guava", + "pedigree": { + "commits": [ + { + "uid": "3cf3f93f6888b834c4f22525b1d8ebb37ba5c54d", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/guava.git#33.0.0.jre-redhat-00002" + }, + { + "uid": "2214c63670fc161da170ac6e1a2d6d07e1531a55", + "url": "https://github.com/google/guava.git#v33.0.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "33.0.0.jre-redhat-00002" + }, + { + "bom-ref": "pkg:maven/com.google.guava/failureaccess@1.0.2.redhat-00001?type=jar", + "description": "Contains com.google.common.util.concurrent.internal.InternalFutureFailureAccess and InternalFutures. Most users will never need to use this artifact. Its classes are conceptually a part of Guava, but they're in this separate artifact so that Android libraries can use them without pulling in all of Guava (just as they can use ListenableFuture by depending on the listenablefuture artifact).", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/google/guava/failureaccess" + }, + { + "type": "build-system", + "url": "https://github.com/google/guava/actions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/google/guava/issues" + }, + { + "type": "vcs", + "url": "https://github.com/google/guava/failureaccess" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12292214" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7RQBBDXPKYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.6" + } + ], + "group": "com.google.guava", + "hashes": [ + { + "alg": "MD5", + "content": "6ff03cda509886e229c7318e511f02c1" + }, + { + "alg": "SHA-1", + "content": "fbc7aa15c12215f084e7ca8734a8d1c9a70b2892" + }, + { + "alg": "SHA-256", + "content": "fc0d08712037e539b18f6489785ec16efaabcd2fb8318c63fe36bf1f378fbf18" + }, + { + "alg": "SHA-512", + "content": "bca4c50d8238386cb2b9a07dc1547ecd064f2be74f103472888921485144c53c79bb1021d61e2462e51a5ca7c83c57f49e6fd31c09922acf0953f5fd1cddf78c" + }, + { + "alg": "SHA-384", + "content": "fa8e87d36d087edf8d46a638e19fd6a06f266f1bd91c5b0de0a6313f8257d1dfc1ca91981c3965e6e3a32a54c3306bf2" + }, + { + "alg": "SHA3-384", + "content": "6973fdcc9c6d6fb036aa18931ca6bd8ff723b6660c9c312dcc44eaf2aef7e51d78d045768c26d1a46e598b67b12cdd5c" + }, + { + "alg": "SHA3-256", + "content": "324fe0881e8180299f92b58486c5f613b4b29fe1e48e05c28ca65082c326851f" + }, + { + "alg": "SHA3-512", + "content": "d1c8dda5f2cea3956fc6f4963848b7448897705e790ff15486e270386cc40330c1cdaacb5806eb23eb24f3d995ee2e6de84e39af78b324683e02f142ee06475a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "failureaccess", + "pedigree": { + "commits": [ + { + "uid": "ee598a874a4bd00ea80b3508a542e34fc6b77d14", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/guava.git#1.0.2.redhat-00001" + }, + { + "uid": "76b3b3f16dd95766f4fae27caa61699465cffc78", + "url": "https://github.com/google/guava.git#failureaccess-v1.0.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.2.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.0.2.redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.google.guava/listenablefuture@9999.0.0.empty-to-avoid-conflict-with-guava-redhat-00004?type=jar", + "description": "An empty artifact that Guava depends on to signal that it is providing ListenableFuture -- but is also available in a second \"version\" that contains com.google.common.util.concurrent.ListenableFuture class, without any other Guava classes. The idea is: - If users want only ListenableFuture, they depend on listenablefuture-1.0. - If users want all of Guava, they depend on guava, which, as of Guava 27.0, depends on listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-... version number is enough for some build systems (notably, Gradle) to select that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a conflict with the copy of ListenableFuture in guava itself. If users are using an older version of Guava or a build system other than Gradle, they may see class conflicts. If so, they can solve them by manually excluding the listenablefuture artifact or manually forcing their build systems to use 9999.0-....", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/google/guava/listenablefuture" + }, + { + "type": "build-system", + "url": "https://travis-ci.org/google/guava" + }, + { + "type": "issue-tracker", + "url": "https://github.com/google/guava/issues" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/google/guava/listenablefuture" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11225468" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A3S7FNQS2MYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.5.4-golang-nodejs6-npm3:1.0.7" + } + ], + "group": "com.google.guava", + "hashes": [ + { + "alg": "MD5", + "content": "a804492415f4bd7118adf9360f93e8ad" + }, + { + "alg": "SHA-1", + "content": "96624f35df1bc3be3504b765edfb3cbe95403ce5" + }, + { + "alg": "SHA-256", + "content": "51960fa99e17a8231ba9abd07efcd34a80f41b4a767e6b665cdb93368d185d20" + }, + { + "alg": "SHA-512", + "content": "fb2f05d88f995d048d9ad0941c1ff867c69cdbb91797fe44936ae31ee4fd3bd9b8144d62615e2bdb4e99e33f0775243244e8dbc72ab92295343d388f43f5b8f6" + }, + { + "alg": "SHA-384", + "content": "04c78ef068f148a1ed2341a5758a468cb4fcd11fe8e6fe90970abc58131de70cf099e77faa8f100329fa46e749703927" + }, + { + "alg": "SHA3-384", + "content": "40498f11dfc30ee6d88aaff658b6fbb046236a856370caa3c735ff81a081269c180b23316a2687e020dce47c3555b738" + }, + { + "alg": "SHA3-256", + "content": "f197420e89df69e880b4a015d0938bd236734880aa273a0c8ab669b7c45f6054" + }, + { + "alg": "SHA3-512", + "content": "bc52a50cbab161cd6c799138c499134f762a317da5e9b81d235282002566d90a149e3d5b2254cb73f404f9137b15332c188e3051384ebbf36096891431d6b2c1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "listenablefuture", + "pedigree": { + "commits": [ + { + "uid": "e43311b4a84b79629e35238dc0eb4612e952866b", + "url": "https://code.engineering.redhat.com/gerrit/jboss-mobile/guava-libraries.git#9999.0.0.empty-to-avoid-conflict-with-guava-redhat-00004" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.google.guava/listenablefuture@9999.0.0.empty-to-avoid-conflict-with-guava-redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "9999.0.0.empty-to-avoid-conflict-with-guava-redhat-00004" + }, + { + "bom-ref": "pkg:maven/org.checkerframework/checker-qual@3.41.0?type=jar", + "description": "checker-qual contains annotations (type qualifiers) that a programmer writes to specify Java code for type-checking by the Checker Framework.", + "externalReferences": [ + { + "type": "website", + "url": "https://checkerframework.org/" + }, + { + "type": "vcs", + "url": "https://github.com/typetools/checker-framework.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11671931" + } + ], + "group": "org.checkerframework", + "hashes": [ + { + "alg": "MD5", + "content": "3187e97ad396c881e9e9f98456e8d878" + }, + { + "alg": "SHA-1", + "content": "08be6df7f1e9bccb19f8f351b3651f0bac2f5e0c" + }, + { + "alg": "SHA-256", + "content": "2f9f245bf68e4259d610894f2406dc1f6363dc639302bd566e8272e4f4541172" + }, + { + "alg": "SHA-512", + "content": "d55d8f5d29aa373747064f300d6a21cb6394782aba161e1a6edff11431dca5b4e44c5110d3ec7b42b4132d30e247296336bfc317f593a065b1adbf8882e301b6" + }, + { + "alg": "SHA-384", + "content": "6fa49369d7bd63ab2bcf9a29acbac3f16d4077ff78dc6fc0b228bc151a1d58a9320bdcd49e7ec70826618fd09e4f107a" + }, + { + "alg": "SHA3-384", + "content": "ba341ea98607c2b8adfae367c1550eee8dff50e698a378695e67d289bc137cf98a7dc7e12f87b634f9ab15c10e217a3c" + }, + { + "alg": "SHA3-256", + "content": "3a40a5b995c9160a714757987e0f56e4823046cc862162e5f2cd754235083d7e" + }, + { + "alg": "SHA3-512", + "content": "4f9d9916b1efaed60677c5d835cc316809d6beb06c7d508ed2ac6d5adf42620d87b99cb00ee9d1f7598b58b64b338fc4784d0d0b2bb8f972a21a0e4fbf380406" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "checker-qual", + "purl": "pkg:maven/org.checkerframework/checker-qual@3.41.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.41.0" + }, + { + "bom-ref": "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "description": "A set of annotations that provide additional information to the J2ObjC translator to modify the result of translation.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/google/j2objc/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "http://svn.sonatype.org/spice/trunk/oss/oss-parent-9/j2objc-annotations" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10914849" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A2YRVMQ62EQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.5.4-golang-nodejs6-npm3:1.0.7" + } + ], + "group": "com.google.j2objc", + "hashes": [ + { + "alg": "MD5", + "content": "dc67397b34ec0dad2c93387c39a6ae47" + }, + { + "alg": "SHA-1", + "content": "46c51a3bcfa83077a6748cbbaed9da7fe3ac3ae9" + }, + { + "alg": "SHA-256", + "content": "486247065cc7882ffbdb98d5e386a02cfcc0024866089fd5270b8e4de49c8fd1" + }, + { + "alg": "SHA-512", + "content": "a5a04f8f3bbf98b5426fb5fe1ded3465d55ceab893f2bf35f778df220b0d6a34116b52a74bed5e468d254d459ac8dfc082931493a40a37d3f2dbd23c6ef7e345" + }, + { + "alg": "SHA-384", + "content": "6d2d1dc27958a9c678d781542e5d459040fb730d1e67aa7860f06dec5b677e5809a0ae5c69a7a859dc7ce85754337ed6" + }, + { + "alg": "SHA3-384", + "content": "ed022a1a9cd85a417b4f0a44b22e7212a5d8ee3721b0dcd059fac28e552c247a4d376760b3b5c83e4d225240138a1573" + }, + { + "alg": "SHA3-256", + "content": "7640462c1b6ec76892e350b8ac8fce7f2c6803a7bc9254c887e38b939ec3f907" + }, + { + "alg": "SHA3-512", + "content": "544fe4224a4fd7632a142c571fc17a41ad0234f6615ba25b1f4fb1822401d6f3fa02c8b834ed313b679a98222df0a415d90f590920292d88051c501a936c21be" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "j2objc-annotations", + "pedigree": { + "commits": [ + { + "uid": "1abc6f75133c83c2841e577735159d4122b11b46", + "url": "https://code.engineering.redhat.com/gerrit/j2objc.git#2.8.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.8.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "description": "Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.", + "externalReferences": [ + { + "type": "website", + "url": "https://errorprone.info/error_prone_annotations" + }, + { + "type": "vcs", + "url": "https://github.com/google/error-prone/error_prone_annotations" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12721181" + } + ], + "group": "com.google.errorprone", + "hashes": [ + { + "alg": "MD5", + "content": "9e5d2181ddb6acb58fe08e86198c4232" + }, + { + "alg": "SHA-1", + "content": "59fc00087ce372de42e394d2c789295dff2d19f0" + }, + { + "alg": "SHA-256", + "content": "f3fc8a3a0a4020706a373b00e7f57c2512dd26d1f83d28c7d38768f8682b231e" + }, + { + "alg": "SHA-512", + "content": "7af1de57fa662b27965c24894d2b2f23c43e60cc6ee48742c527784fa382372eb61bc97e8d578a8104874574ccda24ba1bda994273ea314672e9b225bc0fc2ca" + }, + { + "alg": "SHA-384", + "content": "51e7daa2432317c1e48ac4794ef195cefba1f8d33de340167502657b90d48552aadd503bc62b4a4fcc0414d54c9963f7" + }, + { + "alg": "SHA3-384", + "content": "2d6fba006e3896cad00b7b0a3ad73a54f52919661a6a146f7eb9bc320e6fb0b5c1bf7b73b5bef3d555af893d8bd7564a" + }, + { + "alg": "SHA3-256", + "content": "7f29eb222b186a835143a9db49402d7bd6f487ecd02e9e6296ef43bb82759cba" + }, + { + "alg": "SHA3-512", + "content": "aa67a9ebfc44ea2483c40f395dec38cda1684ceba2a6703279d11ef33effa43cd667b738a7d915d402efb4538d8933d5782287b87bf67a3cf06215f99bbb25ae" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "error_prone_annotations", + "publisher": "Google LLC", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.28.0" + }, + { + "bom-ref": "pkg:maven/io.perfmark/perfmark-api@0.27.0?type=jar", + "description": "PerfMark API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/perfmark/perfmark" + }, + { + "type": "vcs", + "url": "https://github.com/perfmark/perfmark" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11921906" + } + ], + "group": "io.perfmark", + "hashes": [ + { + "alg": "MD5", + "content": "73bcc9c91e5b65c4f75b0567e7a5590f" + }, + { + "alg": "SHA-1", + "content": "f86f575a41b091786a4b027cd9c0c1d2e3fc1c01" + }, + { + "alg": "SHA-256", + "content": "c7b478503ec524e55df19b424d46d27c8a68aeb801664fadd4f069b71f52d0f6" + }, + { + "alg": "SHA-512", + "content": "647b32d75928e44fe355c7f34696d886bd332aa76a6c457e5c90a57d28a8a00e04a5206cf9bba86037660b81eb3f5f82dee7a0dd61330be94f5a71313cf99fd3" + }, + { + "alg": "SHA-384", + "content": "b99de6af6dd90559d47f561cc48b4db86a61cd8f31ae06197fa6a48f99210920927c052b9285f5fb8c53a40902c437ac" + }, + { + "alg": "SHA3-384", + "content": "d54f7cde51f8f0484994a0a98e4aa2462b676e0709ebc413d3b2f0b38b8ca39d987fcbdaed040491a99269fd2f551d9d" + }, + { + "alg": "SHA3-256", + "content": "6d98651b1b2e450b1b8858c7bc54d405db54887f78a985dc672dd42801ae242a" + }, + { + "alg": "SHA3-512", + "content": "af48277cc112b36b0dabf9c92210edfccb81e19e40e5c85acafe86fc9475f22cb17e8ff1036434d7c19b9c9d36d6a7125f6cd7484aadc4b69dd7f5891b3c7923" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "perfmark-api", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.27.0?type=jar", + "scope": "required", + "type": "library", + "version": "0.27.0" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-util@1.66.0?type=jar", + "description": "gRPC: Util", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865572" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "640d58547c7ef67db1389b2af27ee7b7" + }, + { + "alg": "SHA-1", + "content": "faa6ce2500644da4f2fd01260c8e2ee419d2d8ab" + }, + { + "alg": "SHA-256", + "content": "c41b69a730bbc8605351a9e1a0dd7bd9283333c48c00234ba30b4d796b38bbdd" + }, + { + "alg": "SHA-512", + "content": "1577481ae9d51928348e5b51d71a4de501a44060a99e850b4e6d6e5170dbdd65db34654e6085665501051f887c4e4c5d8bff6858edccb80b8bc05c1e661f66eb" + }, + { + "alg": "SHA-384", + "content": "37c69fbf5608f80146bcc6f3b17f43e2eedc7eff7804f2681fe208f141fc9471ce244daacb6c15643e15e2eb7d52f3e3" + }, + { + "alg": "SHA3-384", + "content": "717c5ee22b481827966af6e61461a0bc303e6cbfdf9309e6fe4e562ae79a2e78dc2865a82b447076f450d4ca881dfd6a" + }, + { + "alg": "SHA3-256", + "content": "155a3ee7db4f32d16e07f413f16f268b5ff0bfabd25388888534b8e7936c19e3" + }, + { + "alg": "SHA3-512", + "content": "fe19c7d7f6648536a22852bd1d48f3d20fa87fe22fba7a28272f47fdf28b5d0756d44c6c55c04769872744e49f693de74d587b645a14c483183bc54106126e05" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-util", + "purl": "pkg:maven/io.grpc/grpc-util@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-protobuf@1.66.0?type=jar", + "description": "gRPC: Protobuf", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865564" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "676d46f636ab4b8b8263a3fe5399a8de" + }, + { + "alg": "SHA-1", + "content": "6b1960e9b536f40dfaf1a949a00bd1b815edf0b6" + }, + { + "alg": "SHA-256", + "content": "5942dd582be6c0319bf2af9dd94886f631927b7126d57c8d84fbddd796fd7eb5" + }, + { + "alg": "SHA-512", + "content": "ac9e942c73b5b8b3dfb74aa06129572b7e47a6edd9175f51e8ed7f114fb61cfd8c5f71035152affc9c899b00f96816b83906e5fbbd079bdbd63dd10cb6e8f754" + }, + { + "alg": "SHA-384", + "content": "993083a6f188c2290b6f0c1dc41b63b25bf2d62ae4eee43c3485dba1fa27ed1818ed629cbf6983882dd858b2fd1c9879" + }, + { + "alg": "SHA3-384", + "content": "128604e9357a48b60cab4ba7ba8bce66583cc8439ed52b7bf547261355bf45f321e6a0c0fba17364f4c0c2023b142b9d" + }, + { + "alg": "SHA3-256", + "content": "22a7de1d709961ae905743a66a9f134f8026d24873c24f44eca4a34b89033a34" + }, + { + "alg": "SHA3-512", + "content": "563f79bf750f04e407cb5e2b8a99a76d6fd614dcd526bca4909de042fdf19afb8ad61356a3cc30c83180a7cfcb7aab68c7c97643c33fb879b816f4afb54f3cbf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-protobuf", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar", + "description": "JSR305 Annotations for Findbugs", + "externalReferences": [ + { + "type": "website", + "url": "http://findbugs.sourceforge.net/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://code.google.com/p/jsr-305/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12931926" + } + ], + "group": "com.google.code.findbugs", + "hashes": [ + { + "alg": "MD5", + "content": "dd83accb899363c32b07d7a1b2e4ce40" + }, + { + "alg": "SHA-1", + "content": "25ea2e8b0c338a877313bd4672d3fe056ea78f0d" + }, + { + "alg": "SHA-256", + "content": "766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7" + }, + { + "alg": "SHA-512", + "content": "bb09db62919a50fa5b55906013be6ca4fc7acb2e87455fac5eaf9ede2e41ce8bbafc0e5a385a561264ea4cd71bbbd3ef5a45e02d63277a201d06a0ae1636f804" + }, + { + "alg": "SHA-384", + "content": "ca0b169d3eb2d0922dc031133a021f861a043bb3e405a88728215fd6ff00fa52fdc7347842dcc2031472e3726164bdc4" + }, + { + "alg": "SHA3-384", + "content": "9903fd7505218999f8262efedb3d935d64bcef84aae781064ab5e1b24755466b269517cada562fa140cd1d417ede57a1" + }, + { + "alg": "SHA3-256", + "content": "223fda9a89a461afaae73b177a2dc20ed4a90f2f8757f5c65f3241b0510f00ff" + }, + { + "alg": "SHA3-512", + "content": "3996b5af57a5d5c6a0cd62b11773360fb051dd86a2ba968476806a2a5d32049b82d69a24a3c694e8fe4d735be6a28e41000cc500cc2a9fb577e058045855d2d6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jsr305", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "3.0.2" + }, + { + "bom-ref": "pkg:maven/com.google.protobuf/protobuf-java@3.25.5?type=jar", + "description": "Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.", + "externalReferences": [ + { + "type": "website", + "url": "https://developers.google.com/protocol-buffers/protobuf-java/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/protocolbuffers/protobuf/protobuf-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12882855" + } + ], + "group": "com.google.protobuf", + "hashes": [ + { + "alg": "MD5", + "content": "639cfcf9717cf4e4dd9e808e6f8d24a4" + }, + { + "alg": "SHA-1", + "content": "5ae5c9ec39930ae9b5a61b32b93288818ec05ec1" + }, + { + "alg": "SHA-256", + "content": "8540247fad9e06baefa8fb45eb313802d019f485f14300e0f9d6b556ed88e753" + }, + { + "alg": "SHA-512", + "content": "432d8a9359e614d38fe416b7a4564aed3e358fd5f3c2c4f22caf97945a0f3e5cbd2220b690d6b822504e7bcbbd67458eb12d232232dd113f804683a172f8eb71" + }, + { + "alg": "SHA-384", + "content": "e78be1eae5721143fa31d5e13b2219158b7cec75e88d24fbfcafadf1315bcefa0baed312ef6e3943ce32e6c388a4a318" + }, + { + "alg": "SHA3-384", + "content": "04d20fb39ede3e4336e7d7df1f5184ebeab7571ac573b5195316e4e91629f9260b72114fee796d7b19a7a6bbcbe6fa6e" + }, + { + "alg": "SHA3-256", + "content": "62dde953206322549fce7e1119bd50c11bbf4d436677be18c29251220a453d48" + }, + { + "alg": "SHA3-512", + "content": "6c7ca39134591c7c75dbee3774ada68feda14b0dea53e3fc4e249bd2d2f9d82e86ec062340aa1961cfdabe6a7a707796f6a6e03b219e29b6d3b661b2ab966d5e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "name": "protobuf-java", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.25.5?type=jar", + "scope": "required", + "type": "library", + "version": "3.25.5" + }, + { + "bom-ref": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.41.0?type=jar", + "description": "PROTO library for proto-google-common-protos", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/googleapis/sdk-platform-java" + }, + { + "type": "distribution", + "url": "https://google.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/googleapis/sdk-platform-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/googleapis/sdk-platform-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706351" + } + ], + "group": "com.google.api.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "34f905dc1d9cf3280b12a64f03c6bfd8" + }, + { + "alg": "SHA-1", + "content": "13dfa68e2a2693660c0aa91928733f9296e12456" + }, + { + "alg": "SHA-256", + "content": "49edeba62f334053b91aa9455c95e38449269891b920dbc36daa74e959a3d89a" + }, + { + "alg": "SHA-512", + "content": "9d1fdeee3fbc6e2868329f3073bbf735804085281207ab331ecce3f73f64b55d4641968e9a91ead1ab7cad7b2d73c64dd935fbf99cea28e3e1f4b4f36fd6a78b" + }, + { + "alg": "SHA-384", + "content": "ea5919e77c2e4b5ca0af5cc5d74091fb175e83924184e12516b96909be55a1e941b07f324720ff74b462e0cdbd0603d3" + }, + { + "alg": "SHA3-384", + "content": "0d72a656dde4010ce042f4e3631718dcd1b82c411281849a26bdf9896a259edd2ad680186a7c448edca777b437e8c936" + }, + { + "alg": "SHA3-256", + "content": "a2e282f67512ffcb4b7b15c5d57b57d122dc0ee7582272f1b11888dd5e843480" + }, + { + "alg": "SHA3-512", + "content": "e4ca3ada69bcd42aa59e4b0817392da4ae613b27b9ef49246218a05b7f73a2b3e0956134694bcc86c2ff25c4a1b5a579622e0ada8ae679c5af76ac7a5f542dda" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "proto-google-common-protos", + "publisher": "Google LLC", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.41.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.41.0" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-protobuf-lite@1.66.0?type=jar", + "description": "gRPC: Protobuf Lite", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865562" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "2dc8da97960356b2af4c9a65a85681d7" + }, + { + "alg": "SHA-1", + "content": "d03650c9f3cc867438408ad453d3e2af4499a040" + }, + { + "alg": "SHA-256", + "content": "7cfe945848c64dbbb338d89b28bb5568b833f71a1dc67f30dbbd94071330dc5d" + }, + { + "alg": "SHA-512", + "content": "5a1eae8f13097b2d47161aba57b8c3bb241def0e7e7f152e987e047fad4083576ff7c7eeaba90dcbd3d259981e14907e64e76c52b7035f6b39b630a83bf7ba2f" + }, + { + "alg": "SHA-384", + "content": "af2d0dd5f2f39da6cd71b97d26f921e1c8466656e2153d2afb550ec14c395e034295d65fd8503d1903546ab87ebd7a1e" + }, + { + "alg": "SHA3-384", + "content": "8ce0f04ce565d10d3c664a4c1e40ce6cb5d9132899e7520e1a2b306b157567eadb3b38b99fb924f97aecdc47e5a94161" + }, + { + "alg": "SHA3-256", + "content": "b8fa4643dc7d6aa2e3125a9de3f20ce16e1005a9389f790a835b39aaeb31e0c9" + }, + { + "alg": "SHA3-512", + "content": "f1688a8d85e38a89630ef539fff6d1a68052316357da9665f299d081e1c71d2e4a256d19b38a7f64f2ad7ad182f1435bd5b97250fce8fc94a3be4b1c7f80bb07" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-protobuf-lite", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-stub@1.66.0?type=jar", + "description": "gRPC: Stub", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865570" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "b2f9bbac5e069391aea79367feb4a3ab" + }, + { + "alg": "SHA-1", + "content": "2e512fe06ddc261cae6a74df733e77908b0ecdc2" + }, + { + "alg": "SHA-256", + "content": "39a32906304c7f442dfa56dfc6ea88887287fb398621d549e15dfdeaffae194a" + }, + { + "alg": "SHA-512", + "content": "965a8ed0845a1c4aa0e30bec402b55985d368e43711ea7aa717e552e7f9df1b303e2e7b0d1323ed65ccdc86bc40786d6058029c466c92a126e6511e24998987c" + }, + { + "alg": "SHA-384", + "content": "7db1265f4730eb1c1a74c019888957021514cb8591965b0ee1a877b4cce3a3d58ad13ffdaccb8f5d3bf8ccb7d40236e2" + }, + { + "alg": "SHA3-384", + "content": "f5300121dd946a6afeae97ae0c656e256ac563fd1d46cfd6fa855ab5eea7065fb1b472192e5fc9b95ea4eba064beaf1d" + }, + { + "alg": "SHA3-256", + "content": "34f4c292a3a32d78a181c2ff624e40623a0af8b37e61e050a4ab7404242ce1cf" + }, + { + "alg": "SHA3-512", + "content": "b6bfccf608afe590057c493988b171b6cded8a7c2fd842d85f0c360031f97e6c6b585013ea2a3d502d4152f2886076629890699aff993998f9bb54b5b509e9d9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-stub", + "purl": "pkg:maven/io.grpc/grpc-stub@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/org.apache.avro/avro@1.12.0.redhat-00001?type=jar", + "description": "Avro core components", + "externalReferences": [ + { + "type": "website", + "url": "https://avro.apache.org" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/AVRO" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/avro-dev/" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/apache/avro/avro-parent/avro" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13048614" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDJ6IPY36PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j21.0.5-10-mx6.46.1-mvn3.9.6:1.0.0" + } + ], + "group": "org.apache.avro", + "hashes": [ + { + "alg": "MD5", + "content": "c9f514c5de42fdbe32095dd53f1cb861" + }, + { + "alg": "SHA-1", + "content": "7afbdad0121bb14870fa3c3caece35b326dd7ad6" + }, + { + "alg": "SHA-256", + "content": "92af1a921370f4943eb53221d17c728d96d7918fa7750ee50b52c1a5eb8f406d" + }, + { + "alg": "SHA-512", + "content": "6444d6f082da4c3867131112cb86f32c590804ffd11f588dfb51207f9f839a498795f1c893ebcd98496a01dc57a13fd67e9a869e969ddd0795aab923a77de8d8" + }, + { + "alg": "SHA-384", + "content": "1a2247ca300c83e121d05567384c9106fcb6e49c15838cf39923c77ce58d7a7c1f915fe49a534d58688e75e27d9b08c7" + }, + { + "alg": "SHA3-384", + "content": "d3b6c0552b8becf5152486602fe62b5aedf2ed2e83a7bfcb7afc77064aa0d50da1d6db71e77455b4c3d51c65f7389dcd" + }, + { + "alg": "SHA3-256", + "content": "79e2d527a21d22b8b1163e10b7c1c4c4876c176d470d5ce1b098b1e5f9eec6bf" + }, + { + "alg": "SHA3-512", + "content": "200ab98b0c6a3c2a2248f86c7125ec32c37aa5ffcaf426edb1f50afc1f27772f9684941bae6ddffb5b91a669bc7a5fc28dea3a74dd3ba1c960e05a4646c8b314" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "avro", + "pedigree": { + "commits": [ + { + "uid": "d6762f47fc6cbb0f50f8183eb06cc211541f9489", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/avro.git#1.12.0.redhat-00001" + }, + { + "uid": "8c27801dc8d42ccc00997f25c0b8f45f8d4a233e", + "url": "https://github.com/apache/avro.git#release-1.12.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.avro/avro@1.12.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.12.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar", + "description": "Apache Commons Compress defines an API for working with compression and archive formats. These include bzip2, gzip, pack200, LZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-compress/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-parent/actions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/COMPRESS" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-compress.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13055369" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKHVMG7GPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "6a6a96076dd429f80856b5534a6a30d9" + }, + { + "alg": "SHA-1", + "content": "2cdf05602d7e9d907acb79a0951ec77535d69d66" + }, + { + "alg": "SHA-256", + "content": "eef292ee5dc65e8a05ce9ad9dc002d9cc20eb36929cafad08250893f661621bb" + }, + { + "alg": "SHA-512", + "content": "79f3c8cffaec13f7e63b32f994bc1271d6b909644e5f4d7ddf3aaa9d5785b65b091dae516f4e79908e2e0a9c31bcfe4280f647c2ea1a5da799c0cc5c2b1f3cb8" + }, + { + "alg": "SHA-384", + "content": "a31c42588042006fc33b2f033da06f42184f9f61c0d8a806b5edeac576aedeb20be7ba2b80be941783b14eb99cc75d4c" + }, + { + "alg": "SHA3-384", + "content": "ca9647fd435792b69f556a9e1359382db91bd34c2194808e523986a0a5e5b9d015e57f082314c0c48b51bd3ca30474fc" + }, + { + "alg": "SHA3-256", + "content": "d0bc77f3778b3646b314d8ebba998606fa191fab9c43b58093b8bcf1320f3656" + }, + { + "alg": "SHA3-512", + "content": "3469bdcd60da0ae6cb4cf5dcc3b5e6e0642e6459c02ce46c33b80183388c85f31a6f3f3b31823abcf133288e8da67d416208cf2a4cf6a011f643eb53f85651d2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-compress", + "pedigree": { + "commits": [ + { + "uid": "8fd71117d111b4b168cb3e000b88a17612291f7a", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/apache/commons-compress.git#1.27.1.redhat-00001" + }, + { + "uid": "8de4d85b09a5d60e03191c0d362797de253a3516", + "url": "https://github.com/apache/commons-compress.git#rel/commons-compress-1.27.1" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.27.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/tech.allegro.schema.json2avro/converter@0.2.15?type=jar", + "description": "JSON to Avro conversion tool designed to make migration to Avro easier", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/allegro/json-avro-converter" + }, + { + "type": "vcs", + "url": "https://github.com/allegro/json-avro-converter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10278003" + } + ], + "group": "tech.allegro.schema.json2avro", + "hashes": [ + { + "alg": "MD5", + "content": "9acedd519d5dab5a8ec18736cdddab65" + }, + { + "alg": "SHA-1", + "content": "ead3b5da3531aaf74da3489ab49568ba3f7e4758" + }, + { + "alg": "SHA-256", + "content": "a013d6867582589ad50a626c151e9901d01964ba1cf00986684643c5ad521e50" + }, + { + "alg": "SHA-512", + "content": "f2dc0f5adb00dda0854dfb1be09a18b52b5b0df6f71eab37db7244dca0ea07fe4b5dd42d957eabbea2f357caf1f4e5808c1e3d1226bdf54ec5ab8fbc8969aada" + }, + { + "alg": "SHA-384", + "content": "2885bac9e32a8eafdc6252bb14fa8fc3bc5ab1c90505ec7c6c99a91dcb0b6383ae33a915239bf597c115aff312290373" + }, + { + "alg": "SHA3-384", + "content": "c5bcaf838fd6418b4531152b5bcad30b36e5d10db560424cc1936488a2007b88f4c966a0fc491d30ad2890b63a3894a5" + }, + { + "alg": "SHA3-256", + "content": "b47f95bae8a320faf6e7d927736e4af131f69bff2713dbb3347d508103762fea" + }, + { + "alg": "SHA3-512", + "content": "ff6d20231321cd697dbaecddf23b635e52f872924021343558a47362d55236043abead52cb98ad34a188e62b781ad7bde972eb5afa32bce45a0163dee47e8c33" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "converter", + "purl": "pkg:maven/tech.allegro.schema.json2avro/converter@0.2.15?type=jar", + "scope": "required", + "type": "library", + "version": "0.2.15" + }, + { + "bom-ref": "pkg:maven/org.eclipse.jetty/jetty-client@12.0.15.redhat-00001?type=jar", + "description": "The Eclipse Jetty Project", + "externalReferences": [ + { + "type": "website", + "url": "https://jetty.org/jetty-core/jetty-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jetty/jetty.project/issues" + }, + { + "type": "mailing-list", + "url": "https://www.eclipse.org/lists/jetty-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jetty/jetty.project/jetty-core/jetty-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13230105" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BD64AVA3FVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.eclipse.jetty", + "hashes": [ + { + "alg": "MD5", + "content": "2e88384257e56fe46d57ff6fddd13bed" + }, + { + "alg": "SHA-1", + "content": "b3c224ab49a0afed76369a85ee1cb217addde09b" + }, + { + "alg": "SHA-256", + "content": "49205425bd992903b794f29d2fe492b0d930e876066b6dd56203e3ebdea19e0d" + }, + { + "alg": "SHA-512", + "content": "f169f6a1b873a5f3ff4733f318802e60a7925adac33a148b18e24e3e8c7db5c53a0c8e7322f819001e308079fe955c5bbbd26d7fdea0bb8a464c3362ab22dccd" + }, + { + "alg": "SHA-384", + "content": "4c147fb8eac8c886bb896a0d37e996272fccdd542ae20316ceeee64733f9443662c2286f092a52d96d0e6b1c30b2c3cf" + }, + { + "alg": "SHA3-384", + "content": "1417554e3439c1c29fb9063c4a2f7345a0a0f50b2e6ed4df5104ae057618f9f00dc91afe76e6312c9b5256f71e9ce836" + }, + { + "alg": "SHA3-256", + "content": "50cff46399631ab91d7f80dd7be94d86eefce60c644e385791a68a91be3e3a85" + }, + { + "alg": "SHA3-512", + "content": "2f3f457dc97bfd80376302379ee5f2ea8c8de87e26412d75bc4a3dea89a27d3b7cf66e7e0cafed8e77c82075af61e4134b49cb819f9a33515b034a8085061ff5" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jetty-client", + "pedigree": { + "commits": [ + { + "uid": "8412e4e45424e6fbd800746cac435a29aa81a1d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse/jetty.git#12.0.15.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.jetty/jetty-client@12.0.15.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "12.0.15.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.eclipse.jetty/jetty-alpn-client@12.0.15.redhat-00001?type=jar", + "description": "The Eclipse Jetty Project", + "externalReferences": [ + { + "type": "website", + "url": "https://jetty.org/jetty-core/jetty-alpn/jetty-alpn-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jetty/jetty.project/issues" + }, + { + "type": "mailing-list", + "url": "https://www.eclipse.org/lists/jetty-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jetty/jetty.project/jetty-core/jetty-alpn/jetty-alpn-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13230514" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BD64AVA3FVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.eclipse.jetty", + "hashes": [ + { + "alg": "MD5", + "content": "4398e2f6c4c431bb9c335bccbdde0c3f" + }, + { + "alg": "SHA-1", + "content": "ed1d83395ef48b64197613ef6841e3cf3d7e78d0" + }, + { + "alg": "SHA-256", + "content": "015b9b1fd62042a24801c01cbb5dc67626c643ca708cadc32283e49fc48947ba" + }, + { + "alg": "SHA-512", + "content": "13b2989359d4dc22ee04d0e30039fa2083a2252868baf0ae7c19498bb412a7fc7029ae765b4fc279c650246d4ea12f7ee5d487afab3bed0476fffb4c40ad6823" + }, + { + "alg": "SHA-384", + "content": "f3187be17ef6ad345fd8265dedb8e9a19d09faa513c78ce48f49c5cb983e904dff148969e9878b1e9df219e0d21bbdae" + }, + { + "alg": "SHA3-384", + "content": "0955fa1b0d07d3ce81d2cc3d1072136578806d71f3f302eefdc8ddcf446b63d6ea644657c6830090ba3cbc7f83daca70" + }, + { + "alg": "SHA3-256", + "content": "ace05bfb6a5bd7375526b28f18710b28499af85ef891b429ccbac7ea0f27a19f" + }, + { + "alg": "SHA3-512", + "content": "eab8e11d8c1644ae65d18aab8e9daf670917144c4aa36ccfd86548b44298088ab3d65ddb5546cfdf7e1fd2b11c2eca8e90fee2a6523218dd9ae84a5a62db45b4" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jetty-alpn-client", + "pedigree": { + "commits": [ + { + "uid": "8412e4e45424e6fbd800746cac435a29aa81a1d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse/jetty.git#12.0.15.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.jetty/jetty-alpn-client@12.0.15.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "12.0.15.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.15.redhat-00001?type=jar", + "description": "The Eclipse Jetty Project", + "externalReferences": [ + { + "type": "website", + "url": "https://jetty.org/jetty-core/jetty-http" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jetty/jetty.project/issues" + }, + { + "type": "mailing-list", + "url": "https://www.eclipse.org/lists/jetty-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jetty/jetty.project/jetty-core/jetty-http" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13230172" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BD64AVA3FVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.eclipse.jetty", + "hashes": [ + { + "alg": "MD5", + "content": "e1bf5f0f197af79b2537be8af2b8a2cb" + }, + { + "alg": "SHA-1", + "content": "6183733a91534a5bcd861d9470091bf0bc59668d" + }, + { + "alg": "SHA-256", + "content": "d1b61d9b9b9f1670c1420f55a1e8ae2dd52bb4da81d02ff00032536ffb9596dc" + }, + { + "alg": "SHA-512", + "content": "5605187cdb47fcefdcb3d6616653935299961f483a10747e2c4b67f234d43bc3daab3e40f9caa33c90a017897f11c1a490052d188f8a7e0cf40303592d91a221" + }, + { + "alg": "SHA-384", + "content": "a9e0d5a319e48771a88fe1fd8bf0a0bbfb5416e850b5ee2320411c6617b751e197bb4f87c5ee076d558f2be4e39cf7d5" + }, + { + "alg": "SHA3-384", + "content": "06d27ad666e556f900af4c5c1bcd9528cdcc377122d047b655e0ee51a19d762e04c894e2924bd908da0c780da480bc4b" + }, + { + "alg": "SHA3-256", + "content": "0f61c439d80bea86a62220784b62f7a1cf4884413e5faac376049eef405065be" + }, + { + "alg": "SHA3-512", + "content": "22a6d23c455afebf8dcc94c6bc559edc38c5d8ab19bc78b7aa94281849e293222ad3ac62848615eafaf88ab66a8ae0fbc357c8ce7c0fb5d15f14027962b07533" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jetty-http", + "pedigree": { + "commits": [ + { + "uid": "8412e4e45424e6fbd800746cac435a29aa81a1d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse/jetty.git#12.0.15.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.15.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "12.0.15.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "description": "The Eclipse Jetty Project", + "externalReferences": [ + { + "type": "website", + "url": "https://jetty.org/jetty-core/jetty-io" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jetty/jetty.project/issues" + }, + { + "type": "mailing-list", + "url": "https://www.eclipse.org/lists/jetty-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jetty/jetty.project/jetty-core/jetty-io" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13230938" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BD64AVA3FVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.eclipse.jetty", + "hashes": [ + { + "alg": "MD5", + "content": "94ee9958d0da4fafe861d6c7a3ae2679" + }, + { + "alg": "SHA-1", + "content": "8da11e5549a1546dcdcd3e4ae3e755fe65b96cbb" + }, + { + "alg": "SHA-256", + "content": "b0dfd304d1d986b4a812ed0ee93f2476a283137bdc6d04e833698ebd175f78d3" + }, + { + "alg": "SHA-512", + "content": "fce0770070a8b5823ff51d68cc60b634463ce100d65e85dc359abbba890484931064c3d3e46d5d18cc4c07ed6071459ac5c473163d952123e792bfb55cb487ea" + }, + { + "alg": "SHA-384", + "content": "fd37e68e072c12d4e144c684085eac0bce76927e88337866bf0b9602bafe191c20e2a876c9e474f0d8a1c63bea01539b" + }, + { + "alg": "SHA3-384", + "content": "5ee5a24061f972f515e9fa54d10f18d68edb19b6acb776b7799189d960d502e63cdca62e32422230cb4d7f6a76c876bd" + }, + { + "alg": "SHA3-256", + "content": "c92a36f8ab10408dd44b34cf87baef4b42de25523261e08789dd2ca5c898b906" + }, + { + "alg": "SHA3-512", + "content": "9af624a34fc84eb16e3f54985a7973579d201cfe9077c9dfa1134284f9c69a78a21fdcb4811f9951e56b227a687830c557d4e0abd4aede610f6ce56d8ba316eb" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jetty-io", + "pedigree": { + "commits": [ + { + "uid": "8412e4e45424e6fbd800746cac435a29aa81a1d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse/jetty.git#12.0.15.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "12.0.15.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.eclipse.jetty/jetty-util-ajax@12.0.15.redhat-00001?type=jar", + "description": "JSON/Ajax Utility classes for Jetty", + "externalReferences": [ + { + "type": "website", + "url": "https://jetty.org/jetty-core/jetty-util-ajax" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jetty/jetty.project/issues" + }, + { + "type": "mailing-list", + "url": "https://www.eclipse.org/lists/jetty-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jetty/jetty.project/jetty-core/jetty-util-ajax" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13230073" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BD64AVA3FVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.eclipse.jetty", + "hashes": [ + { + "alg": "MD5", + "content": "d521d11d7f350e4d6924b2c31cf6b9d5" + }, + { + "alg": "SHA-1", + "content": "ae6a5f07b5c0b95f9f4df70d7225744d2136b549" + }, + { + "alg": "SHA-256", + "content": "c50d39f00b1fc05cc0a63e831a59af820e5b9493870d955e0af3746d73438996" + }, + { + "alg": "SHA-512", + "content": "dcaa45c9a88eebdc01ff0dc23806f37bce33e5a63e22db30c4d50c684f81b1141d40ad454dfe16a824a78c75f53bc82ac21e3fc5b4796193c0b409bf8e8c7d19" + }, + { + "alg": "SHA-384", + "content": "70b6759c171391a056681fc0ae07972150a9faa0b606248974e76af69b8fbec6d233d504dd5e987a22832c5d37b18aa0" + }, + { + "alg": "SHA3-384", + "content": "2016c65c4dc4039526618e9878b5f18bc1db19bc09cef2006f522e59af8a06054dddfe190cfcf69ff9ef8a2cc9fb8851" + }, + { + "alg": "SHA3-256", + "content": "31b759187f1f8f7bc511bbbe9304dbb19bd5fdfe888c09199ab683eaf0ef132d" + }, + { + "alg": "SHA3-512", + "content": "a8684f5714ed679b4425fcb661452af5cbaf7822c28374c23666a32c9ada94d4004ff0e14545463a8b17ebc2cfb6c2064a3a49a7b4e6faa65fa55e0fca4c692e" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jetty-util-ajax", + "pedigree": { + "commits": [ + { + "uid": "8412e4e45424e6fbd800746cac435a29aa81a1d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse/jetty.git#12.0.15.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.jetty/jetty-util-ajax@12.0.15.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "12.0.15.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "description": "Utility classes for Jetty", + "externalReferences": [ + { + "type": "website", + "url": "https://jetty.org/jetty-core/jetty-util" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jetty/jetty.project/issues" + }, + { + "type": "mailing-list", + "url": "https://www.eclipse.org/lists/jetty-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jetty/jetty.project/jetty-core/jetty-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13230366" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BD64AVA3FVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.eclipse.jetty", + "hashes": [ + { + "alg": "MD5", + "content": "0ad731a336839394b857e49243c02190" + }, + { + "alg": "SHA-1", + "content": "7b14299bde0367dafc9e9a71f82c34e7e602b24e" + }, + { + "alg": "SHA-256", + "content": "11bf97c6bcc044dab4bfd60a396fc72c862c1ea3935d4a90ac4338d7173987e0" + }, + { + "alg": "SHA-512", + "content": "998934f21057413b8b8ed2fec7409692ffe95e25167e61480e76dcf76426bbaa65acab10807c1f90066199c5460c00cad97d8f69a6045161ec139ba27ef581e7" + }, + { + "alg": "SHA-384", + "content": "1ef8e821b55879f742b043f70a78d0d7818c0521c7db7197766d1585f43dec47d64819c575f8851d4b3e41be6feb3b90" + }, + { + "alg": "SHA3-384", + "content": "3b8001a3aad4eb590b69a486a03b47b612f5ed953f7ecc00140b2ac134a56bf1dd54e2f0735fa408a748b8c7cfc816a6" + }, + { + "alg": "SHA3-256", + "content": "cd43e8c7c7b23e2d98690ac7486621c7bcc6e67e620e53f3d07e6df56abc8055" + }, + { + "alg": "SHA3-512", + "content": "4a0386c09f38ae03ab7dd2963386ffdd5a796d26c483ad65e5b46c5bd19ceee567cc54979f4f237720c02ad85415c19e9b4cc3a1872af49213578ff2ba0bc497" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jetty-util", + "pedigree": { + "commits": [ + { + "uid": "8412e4e45424e6fbd800746cac435a29aa81a1d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse/jetty.git#12.0.15.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "12.0.15.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-arangodb@4.8.0.redhat-00001?type=jar", + "description": "An example showing the Camel ArangoDb component with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-arangodb" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-arangodb" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-arangodb", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-arangodb@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-arangodb-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Support for ArangoDB", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-arangodb-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-arangodb-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895394" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "75f248162040722bdb60628a57ce509e" + }, + { + "alg": "SHA-1", + "content": "d49efb70e9cc94ab856eed583af41503c6a17575" + }, + { + "alg": "SHA-256", + "content": "fe8564948402944e687c48e421400999ea18f95bc25890adaaa55e0035ae4033" + }, + { + "alg": "SHA-512", + "content": "c5fe4edb8e2a0226c8f36ec336b709f4c0500e3c42fd27e1de3086e373e17129c10cbd7c433b085fa5cb1bfc8985c3fc87fa4085c3736e366de46449e6a14526" + }, + { + "alg": "SHA-384", + "content": "f2d9c2dd673a75edbd2f9c073e57e5cfc35070eb3442faa42f13d948dd6b7d4d4815527b2847b124158dac471a5bc14d" + }, + { + "alg": "SHA3-384", + "content": "e84f199c7686a978e09e3d4813b88ca04509c821b295c38868ae9c819940f3307f85fd065290740fc3ec8459bfa054ba" + }, + { + "alg": "SHA3-256", + "content": "ad95be41c7d6d4529488da4102ab479a421a12a5a4e31912595acabe02b9ed59" + }, + { + "alg": "SHA3-512", + "content": "5e356154f67cda0b50e4ede66b31ff282754dbdc1b556d5e368924047d14609a7a42a0fa37c6af34dbae30cab06e27fc34ea2637c82c7a1b49dbcfe013eee4a8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-arangodb-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-arangodb-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-arangodb@4.8.0?type=jar", + "description": "Camel ArangoDB (Java Driver) component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-arangodb/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-arangodb" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865705" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a5edec93f231d1b752e1acf56cf6b9cc" + }, + { + "alg": "SHA-1", + "content": "36abab67c1be10a82401bc5c483ebf8a27518a64" + }, + { + "alg": "SHA-256", + "content": "419e3c236de3be973bac71591591e6f8989683fe1f61fd8b5d3a1904c8342ec8" + }, + { + "alg": "SHA-512", + "content": "43359129e88441ad9e64e98c394c2587fcbfe4ce5146c17223096ba51b4fe2ffa21e37dc0efd9ceef7df6d4b671b77bfec492c8cdf95d804552ebb33fdc54df6" + }, + { + "alg": "SHA-384", + "content": "db3a8361e320ddc57e6d9c4459dc2091f8d41639225062073827472581054b8f1829cbe2ec8a79a3bbfffc1f3c8f1083" + }, + { + "alg": "SHA3-384", + "content": "6ba8d4bb1aa42eaf8ad1bebdca8c571b170f316593abf8b80b4d8b9736e87fed7876369081005240a942a29c512a81bc" + }, + { + "alg": "SHA3-256", + "content": "55f7839c89238dbc7e676553c7955641845d6155a640b3efa5abee51eb5ab00d" + }, + { + "alg": "SHA3-512", + "content": "0ac3246af683e39e14fb8569ff0016c2fa054b00f94abaf7e0bda58d0cf53ef37c99f704b7e8e12e2a00dc6e3562084418b09ffacacb8e17496346e852ba2978" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-arangodb", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-arangodb@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/com.arangodb/arangodb-java-driver@7.7.1?type=jar", + "description": "ArangoDB Java Driver", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arangodb/arangodb-java-driver/arangodb-java-driver" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/arangodb/arangodb-java-driver/arangodb-java-driver" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864867" + } + ], + "group": "com.arangodb", + "hashes": [ + { + "alg": "MD5", + "content": "2ca97d2eebe2050341fe51ccdd99f2fa" + }, + { + "alg": "SHA-1", + "content": "83190c454f3505462cbce90dd96e72c89d24d592" + }, + { + "alg": "SHA-256", + "content": "6070a208ac8d8936ddaef3e00832b18893c4e8bf50790ad1ba81802849c8b154" + }, + { + "alg": "SHA-512", + "content": "5048f757741b450fd23830d9d7a657b21fbd0a37ac2d1eba62c5176f57ca730155a240eebd53d19f2ea9f6aba9a44a1248fed84777302e62333b36c94311ec32" + }, + { + "alg": "SHA-384", + "content": "8e13646aa898ec26e2cf3a5b46fb75684fbb27c2556cd166dec8c739c67c87fddfeac8bb949918dff327a0f5189b6f1d" + }, + { + "alg": "SHA3-384", + "content": "d41f1452c4e7458dd6c314eff388d1427b2ffdb57c1560cd6ca8a9975790c24b86f02f385feb898619c78dc7dcd61cf7" + }, + { + "alg": "SHA3-256", + "content": "44c8b47706eff0469a543ec6554359e9cbac5ad7c331add4fbc6e373a202aa81" + }, + { + "alg": "SHA3-512", + "content": "fad2bf23959851c44b046a88c9310ce8df4c5868212ffabf2bf6f40ca56829a1f675af6380a64329d575778e13c48883e4eec73dd88fa92464ac03a40e0229f6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "arangodb-java-driver", + "publisher": "ArangoDB GmbH", + "purl": "pkg:maven/com.arangodb/arangodb-java-driver@7.7.1?type=jar", + "scope": "required", + "type": "library", + "version": "7.7.1" + }, + { + "bom-ref": "pkg:maven/com.arangodb/core@7.7.1?type=jar", + "description": "Core module for ArangoDB Java Driver", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arangodb/arangodb-java-driver/core" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/arangodb/arangodb-java-driver/core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864869" + } + ], + "group": "com.arangodb", + "hashes": [ + { + "alg": "MD5", + "content": "e835af92fe6c98c848d7a372d89b4b9e" + }, + { + "alg": "SHA-1", + "content": "c4467b573bbf01a641fac006f10d3aa10219d7f9" + }, + { + "alg": "SHA-256", + "content": "c1b3003f9829b961f8ebb747df477a987f8c381290277e904bf06f0edde71836" + }, + { + "alg": "SHA-512", + "content": "9287151c8100e44726f391ebfadca613f5d4fda6c606717c601d510d4ba82608c078d47d4011af87ee735fa49a88794909363ad024bb1f05ad4ccc02e64e31a0" + }, + { + "alg": "SHA-384", + "content": "96601661da5718a2c68a3be5b3c0e3242b12487f6dd06bee241647ba81979e29bfbe435f37bd1bd0a7faa5083b2fce26" + }, + { + "alg": "SHA3-384", + "content": "42879e2b986fde1797c1753d9e35d119da734727db22b95ef3d8b47415b811e67db032f26105dfb19aa907405be48bc5" + }, + { + "alg": "SHA3-256", + "content": "5a3655ebfdb8d34c9983b9287f879cc0420be47682bf0d9b57948105767bf92e" + }, + { + "alg": "SHA3-512", + "content": "9526e81fd5d38a85518289aa26eb1c9549cab7ed988a77b6097807ce9239c70331eeddf939e65d79d88ee841c8df2c607da4e02401e418642b5bf6f0f68933ff" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "core", + "publisher": "ArangoDB GmbH", + "purl": "pkg:maven/com.arangodb/core@7.7.1?type=jar", + "scope": "required", + "type": "library", + "version": "7.7.1" + }, + { + "bom-ref": "pkg:maven/com.arangodb/http-protocol@7.7.1?type=jar", + "description": "HTTP Protocol module for ArangoDB Java Driver", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arangodb/arangodb-java-driver/http-protocol" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/arangodb/arangodb-java-driver/http-protocol" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864871" + } + ], + "group": "com.arangodb", + "hashes": [ + { + "alg": "MD5", + "content": "dc9546631f1a5bd3e6d4de7681d666cc" + }, + { + "alg": "SHA-1", + "content": "59bd4b433e85e540ee96d9f34983dd62621b7d5b" + }, + { + "alg": "SHA-256", + "content": "01065bbfce69ea11d4f264500a8dbc2a0052dd20a9937cebd0f491d6d9477e44" + }, + { + "alg": "SHA-512", + "content": "97d0062172eda689b54f61f334dd92d4020639e9651a78c5f5181527ee1098a6b0ba34785421fc80c693147d4b72f95b7b6c2905456095319e15eae5487e4c05" + }, + { + "alg": "SHA-384", + "content": "36c6fdd1d7de8b4adb323e7468339a7d603beb53d2041422d3afb82889e2523b826673e1e07884ceecc6f8312087149a" + }, + { + "alg": "SHA3-384", + "content": "72b7da74462edc91fa11ac927af8dcaa84b37bace3fdbc6a5da73bdb5060727c1fc4151fe9603c0e2903510301359674" + }, + { + "alg": "SHA3-256", + "content": "959428a2a24d37239fdd535fecd6c120e7984e39dbd54ae9e84ad955b5ba738c" + }, + { + "alg": "SHA3-512", + "content": "67b1850c8f9598cc907e309322ccb6157f7f7e8d0b07ba5a2c2f1f614a762c2fd1c784b509752cbb9164f545c210d42551dedf1dd7c21d2db4d6cc94e37a000c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "http-protocol", + "publisher": "ArangoDB GmbH", + "purl": "pkg:maven/com.arangodb/http-protocol@7.7.1?type=jar", + "scope": "required", + "type": "library", + "version": "7.7.1" + }, + { + "bom-ref": "pkg:maven/io.vertx/vertx-web-client@4.5.7?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web-client" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12163542" + } + ], + "group": "io.vertx", + "hashes": [ + { + "alg": "MD5", + "content": "5a776ecf7ca19a601f76f8fad05a9c65" + }, + { + "alg": "SHA-1", + "content": "4e4a6ea2002c1975a1c361a656904e033d38057e" + }, + { + "alg": "SHA-256", + "content": "21bd6c72dc2ee2c233302c606e11b45f6a6641f86f7576e954a7b1223c2a3efb" + }, + { + "alg": "SHA-512", + "content": "067cef45a9cd6c27e80eb0951862495725555e594519c77ea25701915785468a170f015aa625e681e97c82450c7199b93528ca61de5265972af0d87e9a432efe" + }, + { + "alg": "SHA-384", + "content": "37209153765cb7cb990384dfdefa690e0431abded7422d67c9a47531076b03ce72b0eb52fe538ead6651c7a22aa2c248" + }, + { + "alg": "SHA3-384", + "content": "aaf2bf3ca17c5153fe1dc46f5f3b41fcadb5c15a468a03e7432eb16c2e952af353769bec8d8abe6b9de6305cd0739d18" + }, + { + "alg": "SHA3-256", + "content": "cece6a5d174c5242a6f3fcaff2b53e5db1ecfc8a5c899c1c1cd2ecdc45c0eed9" + }, + { + "alg": "SHA3-512", + "content": "f1b7747196cde102c16e6a9a879ec0a03e3e25e39d7b8cd178af0e40ff62487a3c86bec9d2fb7b34b8ff507c07fd61896df067f26a1e8e88381392749410c588" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "name": "vertx-web-client", + "publisher": "Eclipse", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "4.5.7" + }, + { + "bom-ref": "pkg:maven/io.vertx/vertx-uri-template@4.5.7?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-uri-template" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12163540" + } + ], + "group": "io.vertx", + "hashes": [ + { + "alg": "MD5", + "content": "2581ee86c868a5617a2fd00deaf5b814" + }, + { + "alg": "SHA-1", + "content": "4fb858aac13d24ced88d26b5152e38971fd2edf7" + }, + { + "alg": "SHA-256", + "content": "16e37107713f25c6d68687efe4653c3318d32cddd15542323271209fe041e2bf" + }, + { + "alg": "SHA-512", + "content": "edf75409d3668419b8224445928480aac0bb46c3c04a96979f2078698f234dd659cbc8d0a2c94c17d76fa2e7e3197f7bff97cd32a9f8d9bc059815587731ba7d" + }, + { + "alg": "SHA-384", + "content": "897f702eedec0af09156e064606069fc9552a2b2fe811aa9d1876e1e268676f5e0aeaed21311709fb1245be297ab20ad" + }, + { + "alg": "SHA3-384", + "content": "c4e7996245109c3985a9d2c1befd098a90b87ca9086d2487e05c42fa928263e04cbe3cf066c01c348b63ba1d42d8d01f" + }, + { + "alg": "SHA3-256", + "content": "1804ad8fd71e2091468b87af04d86bc4ccd8c936ce3e917ecabaa766026a2638" + }, + { + "alg": "SHA3-512", + "content": "c6a7c4a2d27beccaebd978aa690e88a669d5dc60c5613f6e1b1ccee5b33266a1949ef6c8fdd2974625a9d154b20ec41ba2a7c771df167e3c7a7998e0eb6af0e7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "name": "vertx-uri-template", + "publisher": "Eclipse", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "4.5.7" + }, + { + "bom-ref": "pkg:maven/io.vertx/vertx-web-common@4.5.7?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web-common" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12163544" + } + ], + "group": "io.vertx", + "hashes": [ + { + "alg": "MD5", + "content": "7179935c66c580b9cfe9e90df7240a1b" + }, + { + "alg": "SHA-1", + "content": "7f3bd982a67d5854bfbde2fb86997ed429f61779" + }, + { + "alg": "SHA-256", + "content": "cdd7b7dc5a75d2f2f5ff540d9305b3ad701bf72e05d6aca09e024a5a98e46dec" + }, + { + "alg": "SHA-512", + "content": "dbc8d4a4969c303ee235a4e161afad4d0d38ecdc43305f66f7deeae3bb8d119d7523337a13de55c475055322fb74118e3df042e57120cbfefe36bbe961b1a7ae" + }, + { + "alg": "SHA-384", + "content": "b8278027f6e031220fe13050c13800cfdf0236de94d0f2cc8a8f7d1d58c11195518b349d01eecd79dd9ab6ac074b357b" + }, + { + "alg": "SHA3-384", + "content": "14a92f8af5ec59bd7a8f97e956abd1448079183540ba56020dbe6a39b1400cf42865838593d9b1098e8798ef6a0309af" + }, + { + "alg": "SHA3-256", + "content": "40080eb9116aa08c6454723703c038e955564e9d1b99104926103d891f6ffe9c" + }, + { + "alg": "SHA3-512", + "content": "8f2bc72f772693603e3011369955449f295aade416164f79810460743dc5221fe2702457ac9bce8433f80826969ce258ff35ba41f34993203868c36cc9a6ec4d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "name": "vertx-web-common", + "publisher": "Eclipse", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "4.5.7" + }, + { + "bom-ref": "pkg:maven/io.vertx/vertx-auth-common@4.5.7?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-auth-parent/vertx-auth-common" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12346300" + } + ], + "group": "io.vertx", + "hashes": [ + { + "alg": "MD5", + "content": "75204b1517828ce710b45f0f79bc53b7" + }, + { + "alg": "SHA-1", + "content": "7fde3871ade2c33f0e0d58839c6c09a76a135bac" + }, + { + "alg": "SHA-256", + "content": "350daee74c5a22c3d2c2341f095418cea90003603d668d2d4b066fec2a63c744" + }, + { + "alg": "SHA-512", + "content": "c5ef990e5478ba961a55d2e86a598a6b8e22885b26c087b1c592ce24ae011361b98bde4732d15dc545884e773bac75b6e8b7f6db7fc98db1a0e7e3ddb4c818e6" + }, + { + "alg": "SHA-384", + "content": "44cca84b37a51796f20fec7ee5a0b4758b699453024eec2f298def4baa6830b2fdbe05cc002007791b5a0e19105125bd" + }, + { + "alg": "SHA3-384", + "content": "d6f3f7236b413c21f9bd09564689cb38b0d46fc31986e8eb51ee7c9b4c552775fb7b9ef97be4f973396166846ee8769b" + }, + { + "alg": "SHA3-256", + "content": "561d9cf0ade06d5c757331d13c994175c6266610e17d6d37b0a609b5c634a8ac" + }, + { + "alg": "SHA3-512", + "content": "93344aefc658a916d4177f3e5b8d42bbb508aae88c785ce32f1faf14b2975bfc9f84b7180ed938cbfca8ff62d672d5b734caef730169bba121d7881e8ee2423d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "name": "vertx-auth-common", + "publisher": "Eclipse", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "4.5.7" + }, + { + "bom-ref": "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-core" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12167368" + } + ], + "group": "io.vertx", + "hashes": [ + { + "alg": "MD5", + "content": "f4db0af1cef5fb23c40a9ad0c89436bb" + }, + { + "alg": "SHA-1", + "content": "7b1150d28c399759a70270310f797f0bb1fa0304" + }, + { + "alg": "SHA-256", + "content": "9cb6d4f5c5a9a305e73a3c31ca9c01a8b97bc92b2fae8ecda2285c2831bf5d64" + }, + { + "alg": "SHA-512", + "content": "bce21f0870879adfe1dc6c127033bb011972ff70439e1096924d445373889018207ed4014673a204d477332dac6af8b0b948881869d06b6cc68d8da664872d8f" + }, + { + "alg": "SHA-384", + "content": "668e1eacb8751f1480e63e59ae457daafb5ba2bf135790b72663233ce0a91199204bf152db02bb7efe841211180ae0bb" + }, + { + "alg": "SHA3-384", + "content": "a350455ec76e98bd641502b6299670c2226e705289e35bb2cab2a7627d45ff3676822040e9610f9622c85aa4548d61de" + }, + { + "alg": "SHA3-256", + "content": "36655c8ea6c11e307446a3fe60e19c3e6c9c22b3d6ddbb4bc87f41cca852817a" + }, + { + "alg": "SHA3-512", + "content": "d8a952ca2b6656bdc16426ceaf708dbe289cdd3bf7419173d3b7bde47f2ce5cdc680812997563e9857087accee7c658c3b5a3b5ce2c71ad117f0842f95ab2679" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-2.0" + } + } + ], + "name": "vertx-core", + "publisher": "Eclipse", + "purl": "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar", + "scope": "required", + "type": "library", + "version": "4.5.7" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-resolver-dns/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-resolver-dns" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076406" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "f6d0baa13691346b9aab8208c393736e" + }, + { + "alg": "SHA-1", + "content": "76c192bc7eb7f81bcbf7aca9c02c3b85db96b5c0" + }, + { + "alg": "SHA-256", + "content": "a212dcbdf73ddcadd239bd63c381856e7f60849b706e6cfa24a892aa769903bc" + }, + { + "alg": "SHA-512", + "content": "77928e3275047f41041e6c18001e2acbdfe149fd1a1389a45e2b4e8ba39b3ee4ecfb76073aa580b3bc613226bb697b048842b0d9df86b14129970dea1d25085a" + }, + { + "alg": "SHA-384", + "content": "dd4c6e697a06da00f22fecbd9e4f79e5fb3153a7edece02cd9dff8d06ab208541e4266f740a4a63601fdd39a0d6eb59b" + }, + { + "alg": "SHA3-384", + "content": "238e3f31e749221a627216ab11d1ddfd46d061ca1b16f24056ff7891f3cb9211eb84c0f55804ae31d04e5bb325c9e7e2" + }, + { + "alg": "SHA3-256", + "content": "c43cf5d482ade10ac290c32ee2c32e647ddac27dadbf1e94ab1eebd71c38b572" + }, + { + "alg": "SHA3-512", + "content": "53566c07b855e9f3c19176ae69be002aaa6b9e58031508b127a9f31c1d5b0a10dc30de438d399245cd35c70c225d381d3499e3ba42fe30d97309a71c1af8b173" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-resolver-dns", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-codec-dns@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-codec-dns/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-codec-dns" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076269" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "95baa7616a32c7140de41b37ee012406" + }, + { + "alg": "SHA-1", + "content": "bf51076aaa769648f658c82574fb5df2809e19ac" + }, + { + "alg": "SHA-256", + "content": "5d071babc3e251ac8af19a62ce3c0b3d6c62639cf8562c01026ecc4b7aa42f0d" + }, + { + "alg": "SHA-512", + "content": "3ae8f3b5a19df76977bff9f259eeeffa7c70a3c476ce8b4a1e0298a2485a3ebbfb7e62027a44b4b5d5c7e1710cef9ce9b2dbebce019f582f81408851148dad48" + }, + { + "alg": "SHA-384", + "content": "87a62cefca0a7f2cd550542810ab4940ca9ac68326e2883d990f869649f748a59c2ee081422dbd3de4d335c7a5e51266" + }, + { + "alg": "SHA3-384", + "content": "88c3c3dacdfd28198574d8a95bb9dc0fad93b3074c8a6abc34bbe4627034632049993e8572824365e9975bff1a9e7c48" + }, + { + "alg": "SHA3-256", + "content": "01541af16187f298b1200fcc16511625a592e32274cf24606d87480f450b87cc" + }, + { + "alg": "SHA3-512", + "content": "8241af92318d97056150d1533591b9752c4b534b4a879eb4b13e18b7715ac3cb5ba3e55965865f6e4aaf61799e97b40ba331a31ccf4ba3cd08dda5f84e548b6a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-codec-dns", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.arangodb/jackson-serde-json@7.7.1?type=jar", + "description": "Jackson Serde JSON module for ArangoDB Java Driver", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arangodb/arangodb-java-driver/jackson-serde-json" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/arangodb/arangodb-java-driver/jackson-serde-json" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864873" + } + ], + "group": "com.arangodb", + "hashes": [ + { + "alg": "MD5", + "content": "9ec8a20e0cadeee5f8c8fe54f8aba63e" + }, + { + "alg": "SHA-1", + "content": "fadf5433e351d63dbd450386800b1fa69dec6e6f" + }, + { + "alg": "SHA-256", + "content": "9d8d9311907f91763c3262e9fd7279a148cfe77f9991282bbc9883afba48cf1b" + }, + { + "alg": "SHA-512", + "content": "56973e22f604251611e2f96fb1746860931818c895bbc840ecd1d310e46e5308b24b7e6aeadcd9748019b0b6ee9f80baa570ca4bb7a7acfb2372221133e4041a" + }, + { + "alg": "SHA-384", + "content": "767bcdb7f0f6e19f3b3ab3b38af55c59ac4c1ad6d6c0b191a685735f3710e53565eb5daea5cc106896a432507f52433f" + }, + { + "alg": "SHA3-384", + "content": "847a9d158e318acb2c88237cf55aa43c3f4f91396bfd5d7bc5c13df9d4e887bb5adaeddd32b37699406773b0f07e8e98" + }, + { + "alg": "SHA3-256", + "content": "02daf4dfaa5fccb9e6ba2b28a90de50815cdb70137e2555703f281ca93b6d166" + }, + { + "alg": "SHA3-512", + "content": "846fddc3ea28c940ca71adf93e8c7978dad43fddc7d1d31931244ccf72ca7518be7c7838efb21b3b8e462edbc2838bb34e43e3548ef9e6a45e5ae97c5b3ccf68" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jackson-serde-json", + "publisher": "ArangoDB GmbH", + "purl": "pkg:maven/com.arangodb/jackson-serde-json@7.7.1?type=jar", + "scope": "required", + "type": "library", + "version": "7.7.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-artemis@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, ActiveMQ Artemis and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-artemis" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-artemis" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-artemis", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-artemis@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-artemis@3.3.6?type=jar", + "description": "Starter for JMS messaging using Apache Artemis", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234416" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "bcf6d2afcfdd7fc11890d1a0963ed3ce" + }, + { + "alg": "SHA-1", + "content": "4aa9c429ff0ee3e984b5f6ecc753077ff94c5f61" + }, + { + "alg": "SHA-256", + "content": "252f94b94a1976ab128aaab1aa1a084e3a58ec12c7564b95123915868924c5d1" + }, + { + "alg": "SHA-512", + "content": "d72729999d8afdd1c44b2acc39f0622f1e38035b5df3c9d628d89b2711dfff4f3e04fab4f0ad6ebeb245647f1e0c1170aacfb50bc44ca98309f4b186320ea4e4" + }, + { + "alg": "SHA-384", + "content": "533f9321d9426c71d53984de52758d6198ae8efcbcf642b03fa81ae5c8d290300f2de258d531600322dbee92c708cd4b" + }, + { + "alg": "SHA3-384", + "content": "02c765a5781bf1518b49b2639d717372e7d3d2bebf42d627359cf0edd538a55860dcbe20c401ac69d5b7a1fdaeb6bc89" + }, + { + "alg": "SHA3-256", + "content": "1db75587c6a9050a8b51f614d084abbcbae09bae413e943438f91376a85cc91b" + }, + { + "alg": "SHA3-512", + "content": "0b9c55bec6e9a0dd40648ad3b9f1a7b0c0d40cb4b0a3e940f4714f86fb951d25027d84e1dc63ac50215591c95d9a428b3770d583b1b94ac6beccd29f0e61fe16" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-artemis", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-artemis@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-jakarta-client/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-jakarta-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12612933" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "38c5487c708def921d31fc46dc462a8b" + }, + { + "alg": "SHA-1", + "content": "402d24fdb2e72f323950c970ec222654b9756a51" + }, + { + "alg": "SHA-256", + "content": "b70e7e2ca58f6d917567664d60c91035adcb8fc05a9b7fd47298ebe6cb7dea6c" + }, + { + "alg": "SHA-512", + "content": "113321621f186011b93d8f6b045f19f0832df0c76ba86f4952e61012cb12e2a5ba4dec54661179c724784be502b90d68566265bd753c01956edd3d5660ef1e3b" + }, + { + "alg": "SHA-384", + "content": "4942bd5576caa80ad33108dbb86667f28f36ef6e4de0bdbc350e03e948161c810a343fd5282e5d16bb8f5fa86debd44a" + }, + { + "alg": "SHA3-384", + "content": "f3e3915f44ad349c860c502756ba9c6b64dbee06db00e19392ef5c3f3961e99c0394d7f650eee25e3e2f0c3ae630c009" + }, + { + "alg": "SHA3-256", + "content": "d66ab5a078d40de51b34bc9f9d88fbeddbf84e009fb945d0c6888981c71eb958" + }, + { + "alg": "SHA3-512", + "content": "f18a1d2811115906661ea5d4a4385e32f22a9685b55fa3251ef8417aaf061acfb9b7cdb36fbd341fb9d17153ef52bee89b1093cbc5cabec53fc00b5a1a6006e8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-jakarta-client", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-core-client/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-core-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546474" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "44955f1540102bf82b87d5009c14bf04" + }, + { + "alg": "SHA-1", + "content": "31188ee6cf5b28736d7d22759cee89f269b1762f" + }, + { + "alg": "SHA-256", + "content": "aa6a1537571e77f512fcd70415a76dfa6f19aa323d57de6371e0c872f24823a9" + }, + { + "alg": "SHA-512", + "content": "f4d62f17d6752b6271013742ac190c450cee613518b8a976f76e5915d57bfa19646f0d4ba9a8497f6ac7264dfc192e353c18d8a700ff88b9fa35b3cf8914c44a" + }, + { + "alg": "SHA-384", + "content": "ec3c15c21e9f691b62288c3afaf28c1bfacfea1e40a78f71311835c930536a4e8da757c49c066a4453a4dc001b769091" + }, + { + "alg": "SHA3-384", + "content": "a30f762d79f1d0f063f5b52da63fbc7c1cd83d3020f691ea582e8e4888aa3c958c36a1b6daecc5e46d9d7c3d4a9c0170" + }, + { + "alg": "SHA3-256", + "content": "f618918c60dcb8e0c7cd4dce4a7415c188a1da76d13ed42d57867f218c53c89d" + }, + { + "alg": "SHA3-512", + "content": "d1069e400d50b4658d5e14a2428667aa817ce3d877857c359520ca05b15d870317c7024cfa18bab7b78bfb07059f030b6d2295b0c776e69ff76145178af85c1d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-core-client", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.jgroups/jgroups@5.3.2.Final?type=jar", + "description": "Reliable cluster communication toolkit", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jgroups.org" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/browse/JGRP" + }, + { + "type": "vcs", + "url": "https://github.com/belaban/JGroups" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11833859" + } + ], + "group": "org.jgroups", + "hashes": [ + { + "alg": "MD5", + "content": "f08cd4f0f768406170562fb031f1d758" + }, + { + "alg": "SHA-1", + "content": "4155114e89e8c33523df336c91aff70e5d361446" + }, + { + "alg": "SHA-256", + "content": "00a086463cb96ce87b60eb478fb9b1cd7c79b29e883361ecafac4849fa5fd30f" + }, + { + "alg": "SHA-512", + "content": "10c08a965a7a59b5ba866d9057bbb34f64123eced3f3848727dec84b2c43ca32a58e3d2d03cfdb5798fea53d2dd07c57ae89655f15eb12baf703b10cc9a41e10" + }, + { + "alg": "SHA-384", + "content": "e94aa24b24f93c8f8bc333b8d0e1e6ed17a7ce9b7e8ad3185df0de694ad4a7e2b9637e09bc0d8e683954e821ae9f163a" + }, + { + "alg": "SHA3-384", + "content": "d36b1e746750832a0cdff80ba2b84c863023c53df36c4b1a417c33f58cc89fb9940a0d52d22d7a3f35d751c66939cf67" + }, + { + "alg": "SHA3-256", + "content": "def457d359732c894270f7e373361fe0a44b6a3bef3fb5237614286065d15224" + }, + { + "alg": "SHA3-512", + "content": "5a75a63b0951b9c999f3b130e411b77d413e0928fdb20c569e43aa6052fcc33e23dec305119c472822d6c6c9194088ec97c9b140962e738e34efe80953975b26" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jgroups", + "publisher": "JBoss, a division of Red Hat", + "purl": "pkg:maven/org.jgroups/jgroups@5.3.2.Final?type=jar", + "scope": "required", + "type": "library", + "version": "5.3.2.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final?classifier=osx-x86_64&type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-native-kqueue/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-native-kqueue" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13097725" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "508bb7ba8c1b58f43870af093c73eed1" + }, + { + "alg": "SHA-1", + "content": "9abdd4d74b0ccccd1282869e7d16c93cb3f23849" + }, + { + "alg": "SHA-256", + "content": "5a38fc4ebf199077c4925fa5253ce6ef789baa54210a035091902f0607245a19" + }, + { + "alg": "SHA-512", + "content": "94fe971159acd7d29a6f51ab06ae7a076ff6f5fec80ee2111ead933aa1b3fcdec601b5ed4cdc2cde59ccdac8d1c1234166274ce8f529cdf716d429af3437f005" + }, + { + "alg": "SHA-384", + "content": "6b6f143b138a5fb8a1fd92b0c43c8db324f4bfa9e32f5dfdcd2eac414479c0c4c27096455cc3ef308b024fc981582c75" + }, + { + "alg": "SHA3-384", + "content": "ee7d9b616ba4971322b749f04884565007eea0294f5e87ca6e48fecc0906bc9ac48707874d7697bfde7477ee6cdb934a" + }, + { + "alg": "SHA3-256", + "content": "e7da6d3675ff39b4c5a57688cfe30efe9669fbc3272fa1c7d6aafa5d093ffab8" + }, + { + "alg": "SHA3-512", + "content": "88636ee3e9a74c6b586d3786038fd8e18e85d27e09e8f2ba7f1d301d4610f99d87cb2a12d2e0bcad60315bc33c581799ca1d77612681c95d172453902cb84ec2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-native-kqueue", + "publisher": "The Netty Project", + "purl": "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final?classifier=osx-x86_64&type=jar", + "scope": "required", + "type": "library", + "version": "4.1.114.Final" + }, + { + "bom-ref": "pkg:maven/de.dentrassi.crypto/pem-keystore@2.3.0?type=jar", + "description": "Provides a PEM based KeyStore", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ctron/pem-keystore" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ctron/pem-keystore/issues" + }, + { + "type": "vcs", + "url": "https://github.com/ctron/pem-keystore" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11833792" + } + ], + "group": "de.dentrassi.crypto", + "hashes": [ + { + "alg": "MD5", + "content": "5ca81b6c47ccb6ed0e2b91ad69d0d2b3" + }, + { + "alg": "SHA-1", + "content": "945587a5930d1fa7b655c46ce4055a5fb8348121" + }, + { + "alg": "SHA-256", + "content": "d71f9907b9eca6fcd34f87a7c1d836f187d5aaf6e53ab5745680a1df27350cba" + }, + { + "alg": "SHA-512", + "content": "9ca125191872f4341ae424433109bbc299309500a91ec9a2ba8dffb53b2327fad90069c2f709e4067832ff8e4fae82cb4a1e3f21033e86d6528955bd9a41c89b" + }, + { + "alg": "SHA-384", + "content": "da3fe903185cdbcc87800f933c76492dc609865a484424745ba7630ad9d088d83a3014028e1983822ee79c2ebcdd4434" + }, + { + "alg": "SHA3-384", + "content": "6204f7aad88b74a23ee4b710c2399dbd51d17a3a720df4637b604316684b9ce882e366e44a51591040b4a192a5aef3ff" + }, + { + "alg": "SHA3-256", + "content": "d3d13218e9997b0428bf4fed55b7b81aaf2e3f26822a8ab131224b1af6011281" + }, + { + "alg": "SHA3-512", + "content": "46da5116cace66f601c2d52bc6b6dafa5878f295aba59f34142e9bb3e7794ecf7c261bcc8644ffa2020f3b007fbeb95fb0a07314202433ea18cdfccdf351f5cd" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-1.0" + } + } + ], + "name": "pem-keystore", + "purl": "pkg:maven/de.dentrassi.crypto/pem-keystore@2.3.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.3.0" + }, + { + "bom-ref": "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar", + "description": "The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.bouncycastle.org/java.html" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcgit/bc-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/bcgit/bc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12298604" + } + ], + "group": "org.bouncycastle", + "hashes": [ + { + "alg": "MD5", + "content": "54b851711aea718aa835739bc23f7b90" + }, + { + "alg": "SHA-1", + "content": "619aafb92dc0b4c6cc4cf86c487ca48ee2d67a8e" + }, + { + "alg": "SHA-256", + "content": "1bf721b09758b3f55f2a5c875b6178ec6c41dddad854b0dead4b27a236f1943a" + }, + { + "alg": "SHA-512", + "content": "5c2707f611fe4f80d7775bd0b19953384f963dc63128c16583d02c37a5f556938bd8c86fafe82849f11d45d1baa5e8ca405a89f008557e4d9ba476ee6bc05104" + }, + { + "alg": "SHA-384", + "content": "56c70dfe6ee8f01066bbc24d1ffe63ea75b775d35b18dbaab4010502864e9eaf96fc4f8453507be9c6412cd93bf4ed0a" + }, + { + "alg": "SHA3-384", + "content": "b77d9d509f9d55bcc46825930846d1bba60040f21be38081ae1ed5394ae1d7647466ec73a96f3d556c076994e6b5a40a" + }, + { + "alg": "SHA3-256", + "content": "b70981e53ef280f94c025fd1f790f493d52d04ccc9e2b4261405114747ca5983" + }, + { + "alg": "SHA3-512", + "content": "33840c1b2613b941215f88a865ac94a38e36655ed9f7f05693b77591ea7a5f3f2c8c8ea167875de2b4ae69d5a4e00a8fd788eedc0a17c3cd86a69a0dd80bb61a" + } + ], + "licenses": [ + { + "license": { + "name": "Bouncy Castle Licence", + "url": "https://www.bouncycastle.org/licence.html" + } + } + ], + "name": "bcprov-jdk18on", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar", + "scope": "required", + "type": "library", + "version": "1.78" + }, + { + "bom-ref": "pkg:maven/org.bouncycastle/bcpkix-jdk18on@1.77?type=jar", + "description": "The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.8 and up. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.bouncycastle.org/java.html" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcgit/bc-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/bcgit/bc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11779340" + } + ], + "group": "org.bouncycastle", + "hashes": [ + { + "alg": "MD5", + "content": "0921c60f2c9acc8d1066e01efab546f2" + }, + { + "alg": "SHA-1", + "content": "ed953791ba0229747dd0fd9911e3d76a462acfd3" + }, + { + "alg": "SHA-256", + "content": "1ac7fe8efd5b2f38cdc165be5a0675734fe44808dab92707201f03a535d6f1b8" + }, + { + "alg": "SHA-512", + "content": "ac5c081b5b11ceba1857cfb9a5060497d3a2b666d99e9ff47ded73cafd749a5a63cdf422a1bdb29e976471b96937c2f7d0c606bcb631150d31977a37e3540dba" + }, + { + "alg": "SHA-384", + "content": "3afee55d4db121ba0ff3bbfbfae8cbfea9b58adec0eb06b9ebfc333b28c7e163db7280c91ec62b716f9fedef9a83758d" + }, + { + "alg": "SHA3-384", + "content": "1239484b917324f6ea52b6b8a40bfaa9f89ad3defb842499f2d8d049b28d0514961ce3470c3b21a66e12435b86b71740" + }, + { + "alg": "SHA3-256", + "content": "0e0c889ad3b77fcf6d912741b51a74c7d20fdf255bed1885de7c44d9ce434fbd" + }, + { + "alg": "SHA3-512", + "content": "ed9540f589209650d9e3172a034c84cef5a4d8e77392bcd6c42ec40a929de6397e5cec412c5f60dca0db8decba6ce21408d3f1c7a9b8b78ab5a5f6e178113dd6" + } + ], + "licenses": [ + { + "license": { + "name": "Bouncy Castle Licence", + "url": "https://www.bouncycastle.org/licence.html" + } + } + ], + "name": "bcpkix-jdk18on", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk18on@1.77?type=jar", + "scope": "required", + "type": "library", + "version": "1.77" + }, + { + "bom-ref": "pkg:maven/org.bouncycastle/bcutil-jdk18on@1.77?type=jar", + "description": "The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.8 and up.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.bouncycastle.org/java.html" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcgit/bc-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/bcgit/bc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11779346" + } + ], + "group": "org.bouncycastle", + "hashes": [ + { + "alg": "MD5", + "content": "b2c48e0e0feda8e2aa200a41243c4e9a" + }, + { + "alg": "SHA-1", + "content": "de3eaef351545fe8562cf29ddff4a403a45b49b7" + }, + { + "alg": "SHA-256", + "content": "947673bcbc5a8dde2d2fa688a5b7598d0ca6e2a74a7ea30cd93f04f6b3ad68f8" + }, + { + "alg": "SHA-512", + "content": "95f424556934618a280688475245ccfb279d8896c0b63014706dc5645a37b5de34f1f9d6479f45bf56410b9fefbf47abd47e9b0f51e90d100f15f66d72207aaa" + }, + { + "alg": "SHA-384", + "content": "965563a0c1688bb0097da3bf7a317b56e80d0441341633a71d8ace0eba770504f5f03e1c81834897211c6305612017e2" + }, + { + "alg": "SHA3-384", + "content": "a04d0e3d51ecbd1a4d557377087296b05aec93afec2cabeb3faa10a195e95aacb35d26934f5f965618cad8edd8a732c6" + }, + { + "alg": "SHA3-256", + "content": "0cdb9263370944a013089eb65d2433bc6ebac63c82d21af7ef5b6b55ab32d0dc" + }, + { + "alg": "SHA3-512", + "content": "73cd5a440af8ad4e94f4a4dc3c057a9939ee1d14c254e9152ca3622ad27eb4d4395e0f97bae94cd4b3caaf234dff2a5efbbd18356bc328f8683c300eedc2ca9a" + } + ], + "licenses": [ + { + "license": { + "name": "Bouncy Castle Licence", + "url": "https://www.bouncycastle.org/licence.html" + } + } + ], + "name": "bcutil-jdk18on", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk18on@1.77?type=jar", + "scope": "required", + "type": "library", + "version": "1.77" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-commons/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-commons" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546472" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "ca613325aa4347a304bb9e4f2964f419" + }, + { + "alg": "SHA-1", + "content": "d210a181d855171857c93c364dd7eb3113cf094c" + }, + { + "alg": "SHA-256", + "content": "30db977ec3df7c5ddd1f0f30bd64650833a1d7765d39db06860b034a2fe8a9c4" + }, + { + "alg": "SHA-512", + "content": "911a14024211eb5bd01e9ae887198a3e75aef4519451816907943635ddac2ce6b993c5878425a6dd9c6de828149e8fd890e326360f057691ec0bc9c4253beb7d" + }, + { + "alg": "SHA-384", + "content": "97ebaa783d16571e963343bf5427f3306dd529146991f6d69b152fab8e748006cdb0fbe1dfb710023f37265701ea43ef" + }, + { + "alg": "SHA3-384", + "content": "960f6d293eacd51bcdb3e99bd56721cdc1f9e629c6af286044f7fbe063a0725a0f07b5ba0ad4a78623b186641987c092" + }, + { + "alg": "SHA3-256", + "content": "dc9d003d69793cc0caaf71f594e664e24fde1affd6fe15e24f5ec49a90990864" + }, + { + "alg": "SHA3-512", + "content": "4ea43f2521615c4aaa6f0d6fe3e792f5c2c9a3bb7795d38e3dfbe80e098ba7d04da0060e1f7878af182e50e190e3f637d8f25cea0a158e6e44c86b75939f7389" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-commons", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar", + "description": "Apache Commons BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-beanutils/" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/BEANUTILS" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "http://svn.apache.org/viewvc/commons/proper/beanutils/tags/BEANUTILS_1_9_3_RC3" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12935017" + } + ], + "group": "commons-beanutils", + "hashes": [ + { + "alg": "MD5", + "content": "07dc532ee316fe1f2f0323e9bd2f8df4" + }, + { + "alg": "SHA-1", + "content": "d52b9abcd97f38c81342bb7e7ae1eee9b73cba51" + }, + { + "alg": "SHA-256", + "content": "7d938c81789028045c08c065e94be75fc280527620d5bd62b519d5838532368a" + }, + { + "alg": "SHA-512", + "content": "7762b348caecead49038a38a89754ff7d9be6199324315495ba47cf24f52c06faadf9306d925c8fe47c587589a939c82e491e1c730267fdf354243a68c0f96ff" + }, + { + "alg": "SHA-384", + "content": "dcd3845917b8fb189cf4034b0d7c6d266ec7110f85ffbd2711cdea9eb94b4fa3e1cee9120b484c6a120b82769230ed3a" + }, + { + "alg": "SHA3-384", + "content": "dfdb8845989be083de807184910124ad7e7e372959b34686cd5f5020f193a2997831ead497b0a5a0233f031aecdf55f6" + }, + { + "alg": "SHA3-256", + "content": "127a81068335d6ca47f5f5e12d849dc1bc5300b2ad8d3f9b64ca30ff2a76d479" + }, + { + "alg": "SHA3-512", + "content": "f67405d0a7667adf7cd35cd7416c54e1759380cdb9c8f179a10175058e40292808e17e69d48df4d4d6b5e268c314127cf3ab87af6920a271bb2e6e0df963940d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "commons-beanutils", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar", + "scope": "required", + "type": "library", + "version": "1.9.4" + }, + { + "bom-ref": "pkg:maven/commons-logging/commons-logging@1.2?type=jar", + "description": "Apache Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.", + "externalReferences": [ + { + "type": "website", + "url": "http://commons.apache.org/proper/commons-logging/" + }, + { + "type": "build-system", + "url": "https://continuum-ci.apache.org/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/LOGGING" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "http://svn.apache.org/repos/asf/commons/proper/logging/trunk" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13185534" + } + ], + "group": "commons-logging", + "hashes": [ + { + "alg": "MD5", + "content": "040b4b4d8eac886f6b4a2a3bd2f31b00" + }, + { + "alg": "SHA-1", + "content": "4bfc12adfe4842bf07b657f0369c4cb522955686" + }, + { + "alg": "SHA-256", + "content": "daddea1ea0be0f56978ab3006b8ac92834afeefbd9b7e4e6316fca57df0fa636" + }, + { + "alg": "SHA-512", + "content": "ed00dbfabd9ae00efa26dd400983601d076fe36408b7d6520084b447e5d1fa527ce65bd6afdcb58506c3a808323d28e88f26cb99c6f5db9ff64f6525ecdfa557" + }, + { + "alg": "SHA-384", + "content": "ac20720d7156131478205f1b454395abf84cfc8da2f163301af32f63bd3c4764bd26cb54ed53800f33193ae591f3ce9c" + }, + { + "alg": "SHA3-384", + "content": "628eb4407e95dca84da1a06b08a6d9b832a49de8472b1b217e8607f08efeeed18b996232d64dd07f03e78e0e3bb4b078" + }, + { + "alg": "SHA3-256", + "content": "9aab62deccf156ee6e324c925dfc30ecb53e8465802863a551901a461424e807" + }, + { + "alg": "SHA3-512", + "content": "3fd76857f6d20c03799537cc961c1c4ddf1c375c6c192fb982363e3b9397ba138b77f24ef38b4202f44e37586789c0320e4de18fdadd2772304fd14a9b26d552" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "commons-logging", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/commons-logging/commons-logging@1.2?type=jar", + "scope": "required", + "type": "library", + "version": "1.2" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-selector@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-selector/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-selector" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546486" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "2e09a3e15f702edd2c4fd1b243b36252" + }, + { + "alg": "SHA-1", + "content": "b2a96664e487de682f5349b53a8c3b3e37e619a4" + }, + { + "alg": "SHA-256", + "content": "adc3fcef4c7235f21ae4b72eea2d63fc8dfa52993b304530b1663f6135fdb21d" + }, + { + "alg": "SHA-512", + "content": "6a6e4dfb53b2649f621da87e2c8a7bd87c8adc7a086d498fc7afc968e132e5497e1287421773ce341eb1b0d55727741db005dc0c5fbf8aaec0e937ed937ac3c7" + }, + { + "alg": "SHA-384", + "content": "116025ec6fe80b1394d01fecaab055d1deffba6dcc3d7656fb25cec3ba84d8efe139f1f78fd599a8e99860317d683fdd" + }, + { + "alg": "SHA3-384", + "content": "56b8c7f3e3ee8e2b04e55415f66c6db31c21fd713bdcb6ab645903bf6090a9bc748a9e6ac2e3059d5e036d04bec9da2f" + }, + { + "alg": "SHA3-256", + "content": "c593dafebd1b9725edb4ca3d1682fe0ed071bb3b6ac320a5c59a490d6a24d8b9" + }, + { + "alg": "SHA3-512", + "content": "cdb4214d195832283c513c264c96f06de156e751b025b4900852e3f394a51707f63e344ed002a2a1d0c46282c502d8867d87abd17c93693c971d70a64bbcb8ad" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-selector", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-selector@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-jakarta-server@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-jakarta-server/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-jakarta-server" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12872645" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "25322281284de33406f0f38afc356a06" + }, + { + "alg": "SHA-1", + "content": "b4b9c8fe9069cd12d8ec6fa79964cabbea8836fb" + }, + { + "alg": "SHA-256", + "content": "e0cee50cf2076bc2e357e50a06004f6cc2abe607b8a92ebfdb3f5684e79804cd" + }, + { + "alg": "SHA-512", + "content": "5cfccd79761b3c11fc0e5758231a3a8387218a50437bb7d7efff12286a50e6140515d08e23f1c70eb427ca071b2b3e7bce4b1e062f325ad7d0d0e3a14cac5273" + }, + { + "alg": "SHA-384", + "content": "468a84303615a57952d211a8c4a4276bc239274650c7fff94be26957c237d35009e1ff6b9c0e0fd40e1e33883ee5f913" + }, + { + "alg": "SHA3-384", + "content": "1766279b5d3240105467ad0fbdce1e66cf3a6f756c28d5fb0612386de8fb13899e9913a2c41dff5ae52e98441dd90bcc" + }, + { + "alg": "SHA3-256", + "content": "22a47416fa295d7d6c779300107353918db8f70ad1f549fcc74ea4786815e406" + }, + { + "alg": "SHA3-512", + "content": "63c45fd8208c57c894e784c14814128bd15fdd4981de682879d6354a2b64fae1923868f89e1faec6541bbcb07134137b4354e64bb990b6dedacd118e389aa026" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-jakarta-server", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-jakarta-server@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-server@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-server/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-server" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546488" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "97201d11b204d1eaf286b900f75cb12e" + }, + { + "alg": "SHA-1", + "content": "9268e60bca51745cbbae9bcecadc300fc0caccf8" + }, + { + "alg": "SHA-256", + "content": "4ada646b415933c1907b19c3192086154665c52b9825d6aba6f94e9ec191f9ad" + }, + { + "alg": "SHA-512", + "content": "402af172c8861a4a6d9ff866bd9f66d53c50d32e59da6b1f624909ce5e2b78ecc204336aa32be9191d5c7f251c5817210e6ada575006447b475a8915f671edd4" + }, + { + "alg": "SHA-384", + "content": "aadafa1a2c503e146113a4c0c69cde13dec3d2c875cd06c3fbf1c886e4ad31153970388a07e43b5fa15db61ee7c77fcc" + }, + { + "alg": "SHA3-384", + "content": "2d96d359cae11dc88f5bb55602070067b2bb780fb98a7f775df87f3bc2c566988fb3683d4aa23e0872dbc2b1672228e9" + }, + { + "alg": "SHA3-256", + "content": "feba3f33c910e4741534ddacfff2f111b6690dad283ab6d3d926a0d78905a527" + }, + { + "alg": "SHA3-512", + "content": "ca6330b4f880257d73b8ca0f36ea3e2ec83650f13f117e13e02ec1d12830fddc7aeb6e2c43e571afd3575eea6546908e790fb8f41cf1046408ed2b1809d17153" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-server", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-server@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/com.github.ben-manes.caffeine/caffeine@3.1.8?type=jar", + "description": "A high performance caching library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-manes/caffeine" + }, + { + "type": "vcs", + "url": "https://github.com/ben-manes/caffeine" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11048713" + } + ], + "group": "com.github.ben-manes.caffeine", + "hashes": [ + { + "alg": "MD5", + "content": "b19301179903e8781776397d9923f7c8" + }, + { + "alg": "SHA-1", + "content": "24795585df8afaf70a2cd534786904ea5889c047" + }, + { + "alg": "SHA-256", + "content": "7dd15f9df1be238ffaa367ce6f556737a88031de4294dad18eef57c474ddf1d3" + }, + { + "alg": "SHA-512", + "content": "66195ac8ec62e5425344a51ab671a136618b8658a1e91bb1d1cd1aea5a51fdc12eb7fe5131a00e18ee330d6b0cad14f6743937c23baa50fb21e40eb76d82a777" + }, + { + "alg": "SHA-384", + "content": "bb1447801069938c709220002e2489c589f3a12e411a902983d1120785265b5b2716614b0612b6ab732978fdfe492399" + }, + { + "alg": "SHA3-384", + "content": "e0455cea493f7d299cc9cb4dafa42b184ddc35927985537ad8119057621f988c3165f1bec62715054bd9de802d91e1eb" + }, + { + "alg": "SHA3-256", + "content": "a197fd5b92f9d15ee3a9efac322eb201b47bd8dc20304a0c6d85986199ec03ca" + }, + { + "alg": "SHA3-512", + "content": "4fb700794e520bb3bc81ef156bedf696894ebf2d2bf0f25efdfd56dde4cd89b76c45b4a80d7eacb2ed0a6220718f1f9552547fecfb7d3fd319fa5145b4f20cab" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "caffeine", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@3.1.8?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.8" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-jdbc-store@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-jdbc-store/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-jdbc-store" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546476" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "fe591472ec9dd2f89f1172fdd228bbbe" + }, + { + "alg": "SHA-1", + "content": "04b2e18b3736a9dad998b48107ace88edf865e6f" + }, + { + "alg": "SHA-256", + "content": "94b4110513ba9466548d905ead7892a8c933b82eef266344524cab156e0bca41" + }, + { + "alg": "SHA-512", + "content": "6b50f8c4b4b63771b6bad52c8720c80d2868e7312b7a0b493bebbea9ec671cef43cf59502fb103c8efd6973d79b4cea0d97003f2992032d46a1d6bd981950b50" + }, + { + "alg": "SHA-384", + "content": "c308718f69c080cbb1e750b2cbe4e964a040fab532b18cbf6bf37365f5d4e30ddcc2cd2750e4e41e5cf42bba54c57c86" + }, + { + "alg": "SHA3-384", + "content": "04898c8b600a14df799d160909f1ace341c5893a2e02e5ef9d62b768691d87ae866a9bc115f6953d7a40adb933c732d0" + }, + { + "alg": "SHA3-256", + "content": "6a7900efe4e345f324e1ddd614d7d84ba3c3494d977e0e4ae72e824eb58f5d3e" + }, + { + "alg": "SHA3-512", + "content": "f266e0aa2631b920c3588fd2a1429342f1b894a7d9207fb0540784a1fcd2106bb7891aba6dbcb04c9ab6f41e1c0ff0659aa7328e94e627f00f049d934bf2457a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-jdbc-store", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-jdbc-store@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-dbcp2@2.12.0?type=jar", + "description": "Apache Commons DBCP software implements Database Connection Pooling", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-dbcp/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-parent/actions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/DBCP" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-dbcp.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12300213" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "cb9f32fd70bcd816f68ebc611dbfed35" + }, + { + "alg": "SHA-1", + "content": "45698ece9fda230d0b1c96282c03ce1ebbd6c3ce" + }, + { + "alg": "SHA-256", + "content": "9b81ea663b9db255bcec6b08a9245edd05bddb155c49343eef09b6d81558ed3e" + }, + { + "alg": "SHA-512", + "content": "f0a30c8115f9e497eda15c66c5b2e87e97ed9196100d6afd4513640c62727d014821ad55fb26c063465e710c94aefa08507ed0c4054fbca11aa8ba1234e2ff2b" + }, + { + "alg": "SHA-384", + "content": "1dd2e4550fc0b936c281c0b4dc717eca4d8eb91e8132ac565fdf68561e06b289d957fe31888204a66990222e96758990" + }, + { + "alg": "SHA3-384", + "content": "ed8e1cf5246193c8b14f3aee842ac3316c0ea17b549956d80b461c920d6d25a13934f44270ec9a5121cdccb659445d88" + }, + { + "alg": "SHA3-256", + "content": "c3db03c98559cdf104ee152ff3daaf0e51f506556d1eae9171f029ff51a04581" + }, + { + "alg": "SHA3-512", + "content": "7142d1df8c092a80a6f9981495fee0daabe6336d8caeb6a2ade99b99e84b46efd3b80a482b1b94f09169fee0ebf66f0f201454496107d1e6954d51f670aa97aa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-dbcp2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.commons/commons-dbcp2@2.12.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.12.0" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-lockmanager-api@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-lockmanager/artemis-lockmanager-api/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-lockmanager/artemis-lockmanager-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546480" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "441c6d2075f30bcd4bb6bb9348b7172e" + }, + { + "alg": "SHA-1", + "content": "7d3c17131b976abf5936be628cf92855b9ce491b" + }, + { + "alg": "SHA-256", + "content": "0361e7b652a3bf5400e3c9506632e20570115f07c41c8ec188ac6d2e6ba9190b" + }, + { + "alg": "SHA-512", + "content": "f5351a53847cf3ca85ce34e6d7faaf6d77c560c1f0d206d6b6dc5c2798d93d667b5fd2bbb12f92dd2f88be12056f52deea221a860d5dbf4c74932693b46e22c4" + }, + { + "alg": "SHA-384", + "content": "a5b09ffffa7b4c8906432e4e9d800fed7a1e910923c72ec44ddc05d627e2a6ea8d88dd78f706b07fb48809974704b41a" + }, + { + "alg": "SHA3-384", + "content": "61346c349ea59d08e15b916ea87776c51c308a5ef3bec86db851301bb60413063c44ecb44c9f6f18c1a45b853b6297fb" + }, + { + "alg": "SHA3-256", + "content": "98cf50ab08ef0d39cc237f069b3109fca17d81b8a5a11c3ae1dcb872d5dcea38" + }, + { + "alg": "SHA3-512", + "content": "2ea2f3c85ffdcca1ef572c1f0efca0315129f7898d5befa65c77d16271c9182e2f896d595a5cb9c836347428b19af80c88de2e62e2f5063b4951012355db2a26" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-lockmanager-api", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-lockmanager-api@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.jctools/jctools-core@4.0.2?type=jar", + "description": "Java Concurrency Tools Core Library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JCTools" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/JCTools/JCTools" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11833857" + } + ], + "group": "org.jctools", + "hashes": [ + { + "alg": "MD5", + "content": "84ec7efed8d8ecd65723d902f5f5ba6b" + }, + { + "alg": "SHA-1", + "content": "e8c05d02ac3af90186ba74463be581dac0c110e6" + }, + { + "alg": "SHA-256", + "content": "09911c031bb76948e4ea49f0575d0710e9826c6f4e08021eba392c99ab2d8565" + }, + { + "alg": "SHA-512", + "content": "076bad9312d183274c8e71dc703b0327be53ad4362404cc69e60d336ad9e657048ec162af94fa3768880788b7ecae063cb48bf9b318221116341b9f5927fc114" + }, + { + "alg": "SHA-384", + "content": "86e70df23350213d735411e644ba867d197a02c2dcca38714cdeb2ce55e2a0d432eb791b7a1d7903b31099bb031a8824" + }, + { + "alg": "SHA3-384", + "content": "e89f1f1f5b41abbdc53c100597f5ce981814773470ec7b5511855562e82ea3e57356d68334cd02e69149e7bfc2207da5" + }, + { + "alg": "SHA3-256", + "content": "8f8be8afd7b6168b67848fadc889d84b7024fe5bbf963464241e0224003052c1" + }, + { + "alg": "SHA3-512", + "content": "13514efb40a21d9b9ae14b883d374a2da5956e7e41a4198cd18c5f522e458bbe8be8b00f4a268a35fe02764cf5455aff0bd84b021baae68e94b1dd2c5ad5b9c1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jctools-core", + "purl": "pkg:maven/org.jctools/jctools-core@4.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.2" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-configuration2@2.9.0?type=jar", + "description": "Tools to assist in the reading of configuration/preferences files in various formats", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-configuration/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-configuration/actions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CONFIGURATION" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-configuration.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10713493" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "c252c63e9bf6582930e405602604a8ee" + }, + { + "alg": "SHA-1", + "content": "adc3ee6b84fc62a6e75e901d080adacb72aac61e" + }, + { + "alg": "SHA-256", + "content": "a38ced8312fa893a1f7159958511cdfed13d0b8cb294a4133662c901da0cda53" + }, + { + "alg": "SHA-512", + "content": "3300ca3d55d2f8bd0b0adac334b25848af25f103d0dde2dd90a44fcdd20480834ef810b9de5718c3235fcb5ccb63cf414e49825e0c04e7870f5d9d929d578908" + }, + { + "alg": "SHA-384", + "content": "27c90744aed7fd7c67c3f5619318c6a4567194efbbf394760a2bb3b739af9080b1fe1587d3a64d3b0cc0e67515a50981" + }, + { + "alg": "SHA3-384", + "content": "0ae58d5133ad45d397e91ec7c99cfc62adabf9ef885f16b5ed775d4a7dbc1e4fa88b187ab5ec18a492abcdbf41a2c5d5" + }, + { + "alg": "SHA3-256", + "content": "199216062c066c4e0e0944c0352f77cd40e9e5e7168ba2cbea1151176d9f7a4b" + }, + { + "alg": "SHA3-512", + "content": "d62d502ced17ba2225101a6b9926600f3375b58e0c39b664cb0383e574119e62a5031931fd088fcec7cd46619536c2f445115408413b2568f04593205af39091" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-configuration2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.commons/commons-configuration2@2.9.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.9.0" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-text@1.12.0.redhat-00001?type=jar", + "description": "Apache Commons Text is a set of utility functions and reusable components for the purpose of processing and manipulating text that should be of use in a Java environment.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-text" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-parent/actions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/TEXT" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-text.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12917349" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BC2PIYUDFVAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.13-8-mx-mvn3.6.3:1.0.3" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "5e908ac8d563956ca9cec41f240d8426" + }, + { + "alg": "SHA-1", + "content": "29b0ae8c4c5d73f2974b9f8b302907f52be6c05b" + }, + { + "alg": "SHA-256", + "content": "e8c88e5639b5579a008c1b0fd2a683074765ef0c17f84ccd85060b03780015cc" + }, + { + "alg": "SHA-512", + "content": "938734aa714c74ea2260a0776907a85b8f3669bc18f7ae0731ab715f390b22862cda147a6cc1083999e3490cad197fb3095b6e72208b0d4e952abdc7bd56011a" + }, + { + "alg": "SHA-384", + "content": "607dbce28a22b8b9e0bafd085ca6c62489100f2fb8838b35438fe108c9fac30287364a25f95c70ac55bd3def5f09eaf7" + }, + { + "alg": "SHA3-384", + "content": "7ba8765c3b72d095db07933389e1a92f63e5c5425755fc2854a32a6a93f1e5a865febd4f86fff7ed78dd12ba751ef9c8" + }, + { + "alg": "SHA3-256", + "content": "8cd3754867f25dfcd8d9a0b40c948fd84b491afb2b3d3073d6581a9b7af32dcf" + }, + { + "alg": "SHA3-512", + "content": "c3df5dce27fcf2adc539d374756cc0fc702d3cb67ae288743737c7c1770d6b0d5de0ea8c70ebe62ef61c8566b8ceb6477b54e8957f000c9265c173a6eb9c79a2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-text", + "pedigree": { + "commits": [ + { + "uid": "9cafd600c8614bd2ba68c2f5befbbbdf74b281c1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/apache/commons-text.git#1.12.0.redhat-00001" + }, + { + "uid": "2c2d0818b0540c59f055f5174db51d0574af46da", + "url": "https://github.com/apache/commons-text.git#rel/commons-text-1.12.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.commons/commons-text@1.12.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.12.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar", + "description": "Types that extend and augment the Java Collections Framework.", + "externalReferences": [ + { + "type": "website", + "url": "http://commons.apache.org/collections/" + }, + { + "type": "build-system", + "url": "https://continuum-ci.apache.org/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/COLLECTIONS" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "http://svn.apache.org/viewvc/commons/proper/collections/trunk" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/4280" + } + ], + "group": "commons-collections", + "hashes": [ + { + "alg": "MD5", + "content": "f54a8510f834a1a57166970bfc982e94" + }, + { + "alg": "SHA-1", + "content": "8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5" + }, + { + "alg": "SHA-256", + "content": "eeeae917917144a68a741d4c0dff66aa5c5c5fd85593ff217bced3fc8ca783b8" + }, + { + "alg": "SHA-512", + "content": "51c72f9aca7726f3c387095e66be85a6df97c74b00a25434b89188c1b8eab6e2b55accf7b9bd412430d22bd09324dec076e300b3d1fa39fccad471f0f2a3da16" + }, + { + "alg": "SHA-384", + "content": "dd4e99b3314bd3c1a1ee26296615d9e44dadf7a1f8a7bbba44fb95121803d331e36d4cca4260e7609af78a47ba3e4073" + }, + { + "alg": "SHA3-384", + "content": "8ce03528e4a6e95c44283b56eca87e6a6d3bf1363411a55b538f4f9110cf7470581ea5c73925e877ddab08dba0603f40" + }, + { + "alg": "SHA3-256", + "content": "fd3d6134b5f07077b82ccf93d148dacf7c4ce5c971209510edd0e77e3e38c19e" + }, + { + "alg": "SHA3-512", + "content": "c2a523916fb7c7d55a05d5e3d9e9b33000733f4b20a71be174e4e093e3f06ea78ad831edd1505527da7388105f8647efb7d5666ba852c90b4e2d5bb74256efbc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "commons-collections", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar", + "scope": "required", + "type": "library", + "version": "3.2.2" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-journal@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-journal/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-journal" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12546478" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "d88bcf5f147b0d8163017c9da7410fd6" + }, + { + "alg": "SHA-1", + "content": "71f43d0dad511aabedcaa8fc75ce0f4384fa7f98" + }, + { + "alg": "SHA-256", + "content": "2ae1c1da11554c80a3fd1469bfa2cf1633bb88b277a48b3c5f74c074215f9be5" + }, + { + "alg": "SHA-512", + "content": "f2560dac0f48f3929397a4f4aba7301d411350dbb6ed58ec29a49deb3f5dbb667906548883c9871efad079ffd87653caaf3fca57f3e5410f39d1f4a9f650f730" + }, + { + "alg": "SHA-384", + "content": "2f1fc0e21d1079878f33f8d6fc40a6c1a8033151e6b6cef2eca018cacbc0bb7c4196c15e392595529b562f2f82acb80c" + }, + { + "alg": "SHA3-384", + "content": "8daab2f0ed0dbcbe29133a6da0d98c9a933b08212da02469f2107e2e903182d6d87b6db9a5c62246b0ad449791d3dedf" + }, + { + "alg": "SHA3-256", + "content": "210764988bc1644bb52fc3f6bb65077aab460b6ff9c75640e1d6d9f174f043df" + }, + { + "alg": "SHA3-512", + "content": "908c49010397b1306c68316dd0a62f21c4219548af47ac4c37087e4010b7016e8ac97e8f11835ef2b1d82c12f43b1fc025e458f3553ec892c16c300442f10561" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-journal", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-journal@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/activemq-artemis-native@2.0.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis-native" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8956266" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "d673840cce328489328bf2c02187fd7b" + }, + { + "alg": "SHA-1", + "content": "a1bdd3cea7822f3b90063456b0c9928702076bd1" + }, + { + "alg": "SHA-256", + "content": "b4022172b60397e0205644afde431446d86959182f2ed71246fcdff86cb6c78e" + }, + { + "alg": "SHA-512", + "content": "63e986fe2b29b2f2b92e488ec7d236a8e1e08508ba7a72995d488acccbe719568c0735a72d9c390934673bae35af008abdeebe8661aeb3b8e55fa5d068ee093c" + }, + { + "alg": "SHA-384", + "content": "9877c8a039ad52d39b4ae3d44f68843920d5447198d8424ce5356ad1624c346a1fce230ca2a59cd2bab191a4b1d7d3ec" + }, + { + "alg": "SHA3-384", + "content": "928138258a6a104acf5ef7110b28ee4b897904ada4e52ee0a10179dbe6122e52f38118c208ee68557de5e7c18b9543c6" + }, + { + "alg": "SHA3-256", + "content": "011c5d4fad19072bc6c4c37ced69327ba4bb6efe7c9d66b7346a8bc2b5ab1fc3" + }, + { + "alg": "SHA3-512", + "content": "9ac9da84eab5f9b9fa9b2afcda968f5fd9a8abf2417aa4179719e608745a71790952d729e6916a170f509769ba4fcf18a2ecf653c214a142ccd8539248e852f0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "activemq-artemis-native", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/activemq-artemis-native@2.0.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.0" + }, + { + "bom-ref": "pkg:maven/org.apache.activemq/artemis-jakarta-service-extensions@2.33.0?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://activemq.apache.org/components/artemis/artemis-pom/artemis-jakarta-service-extensions/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/ARTEMIS" + }, + { + "type": "mailing-list", + "url": "users-subscribe@activemq.apache.org" + }, + { + "type": "vcs", + "url": "https://github.com/apache/activemq-artemis/artemis-pom/artemis-jakarta-service-extensions" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12872647" + } + ], + "group": "org.apache.activemq", + "hashes": [ + { + "alg": "MD5", + "content": "aa3dfad15a68a5a9c9f1f7d014bb7205" + }, + { + "alg": "SHA-1", + "content": "eaa812948ad099dd94387be5953becf26717b4fe" + }, + { + "alg": "SHA-256", + "content": "0a130f66eb1fe566a6d4004894138b4f88a4885cbbf06c602ba9879624a4a512" + }, + { + "alg": "SHA-512", + "content": "32caef9b96f976fa792248e0fe468469487474fdcd4d942d23b13bdc2eec3b8305a5f917211a2323d0f3b9933c21a65663c83b9eab1d338fa582c5692c2d0b65" + }, + { + "alg": "SHA-384", + "content": "389a299acae96eb106aed253ff0acfc76b01f29823a8319c5e5611c5115cdc32c58eec3a96063d0742e3fd8bd27c1c2a" + }, + { + "alg": "SHA3-384", + "content": "10059caea21bed2a7cfe79ad4fe7883b443df8824fc48c6748b2208cf9b26692fad12b8192a691ad8d55a866163d2e53" + }, + { + "alg": "SHA3-256", + "content": "1f671979d2b34bb50f1f0f654e01715123cfc677ea55fb1b39654c8df2c375ab" + }, + { + "alg": "SHA3-512", + "content": "139f0ffb001d53da806242eb4ca2650c02ef82da360ecfebe27c9df0f17115b442130bf3dc7e498c715907a61f0868aecacdc984d8d526fa6b15a7e54c6b0556" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "artemis-jakarta-service-extensions", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.activemq/artemis-jakarta-service-extensions@2.33.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.33.0" + }, + { + "bom-ref": "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar", + "description": "Jakarta Transactions", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.jta" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jta-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jta-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jta-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8094940" + } + ], + "group": "jakarta.transaction", + "hashes": [ + { + "alg": "MD5", + "content": "5315974a3935e342b40849478e1c9966" + }, + { + "alg": "SHA-1", + "content": "51a520e3fae406abb84e2e1148e6746ce3f80a1a" + }, + { + "alg": "SHA-256", + "content": "50c0a7c760c13ae6c042acf182b28f0047413db95b4636fb8879bcffab5ba875" + }, + { + "alg": "SHA-512", + "content": "13c1a21af3c8030794155a62b4cdc70ba1d951fbfc0aead9e89f3f529e7bb4473a070bd4a6c593ce1c0cfb781332bd62d21cf0b34e3751f99b0de463f566ec61" + }, + { + "alg": "SHA-384", + "content": "9484a0adc05a5ea5377f6037ac2d1efa1d59d172ac03b683580f7d3e542d6e26779128dd1a7fab41f7061156f66c3b44" + }, + { + "alg": "SHA3-384", + "content": "064434509905dcaaeebd4e1eaeb26446cb911ff74f30d49e1b0c7f29a0e62fd9f5b84114129ec845eb99cc37cc4b5048" + }, + { + "alg": "SHA3-256", + "content": "7d865d16dc3e2a2b7e097a305a33f7fd419ec4dcea2df1e278b66a74e59325bd" + }, + { + "alg": "SHA3-512", + "content": "efe99bb4d2397b5d004b7aac679ec2ea0c13ce6c06fdcaec56b12f07d5938ac5f07df2937478b551955382612e2544819ea7f5827e0f6ea2726bbc1643dfdab3" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "name": "jakarta.transaction-api", + "publisher": "EE4J Community", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jms-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jms-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234622" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "b21386a2d47943f696403a80601951be" + }, + { + "alg": "SHA-1", + "content": "14d1bfdd5f379de54ed3badba2b8324589adc333" + }, + { + "alg": "SHA-256", + "content": "591dfb007d5e5a6e9022b569956884a9a9644df4a9b273e3a70a686140b80f78" + }, + { + "alg": "SHA-512", + "content": "43104b7496e95bb20331dcf8b418ec1937c8043a65fb7087e537a4ab4a128c3d6fd93cbbff1c1ca0a0412741fb4a8c4ffe11c2c2fe4c553b7d282ad54cc636d7" + }, + { + "alg": "SHA-384", + "content": "98e592150b827dce9247f486ce6d7ab843ac010e1cbdf76d9c82c4254dbb515a1a83a9267d712af7bf399c98bb869540" + }, + { + "alg": "SHA3-384", + "content": "2d5394882b7e21851218b63c09a8a95f86dac18f775b43dd2243a4e08f13f673c360275bfd0fa2b3ec5a6467d2bab9a7" + }, + { + "alg": "SHA3-256", + "content": "8a5ca32b305b9867b804b0bd11019f50db911a6fe393be06428c0eda615cc9df" + }, + { + "alg": "SHA3-512", + "content": "bf993ca64c81ce3bd904f303a0ec007285bc5ba5d8cf45421d97c0384f485de0405daad172ed88472f8cb84dc3dd3b30c1a166e7d7c392f7b753865d0234dcee" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jms-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-aws2-s3@4.8.0.redhat-00001?type=jar", + "description": "An example showing the Camel AWS2 S3 component with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-aws2-s3" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-aws2-s3" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-aws2-s3", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-aws2-s3@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-aws2-s3-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Support for AWS S3 Service", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-aws2-s3-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-aws2-s3-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234480" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "4e20a8249d555674819f8730b1af1571" + }, + { + "alg": "SHA-1", + "content": "e5432cdbb8513a5eb4272a8cf11dee62342bedc5" + }, + { + "alg": "SHA-256", + "content": "7a5c4743b112b2d0c5ca9208ed3e92e8ca3d5f7329407df67d289fc59600bd10" + }, + { + "alg": "SHA-512", + "content": "ca8a3458259d6c47e2061fc234b69f3340207a797df46aafaa8f8d7ddeaa8553f1a6e6af08463dfdb5d9d48f86f72b1c6162d9cfe1e7c4021ac7bdc3e4830d30" + }, + { + "alg": "SHA-384", + "content": "4a55cf8386e8a639a8779e458785c42735530585ef0b252d4fc040e0b368ba1aa8040d7f116bd3eff485e586cf4503e3" + }, + { + "alg": "SHA3-384", + "content": "789d6d475f9cdcb82d9617d699129792ee3871ef217742065be7a670620cda34b7b1f599752fb48b4f174476aa52ccbe" + }, + { + "alg": "SHA3-256", + "content": "08339e32136a231f86cc8af8e0e4f1103cf62b9dd806e59b9304a4d6b35054cc" + }, + { + "alg": "SHA3-512", + "content": "da88da6e7635230c4b95a3d78b8e6739d175b44c91c3aa899320134593a218a3f934dec312e8bf7b8d01d955f831c1ef25a31faf1873181ed0d039f41099d337" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-aws2-s3-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-aws2-s3-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-aws2-s3@4.8.0.redhat-00017?type=jar", + "description": "Consume files and upload files through AWS S3 Service", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-aws-parent/camel-aws2-s3/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-aws-parent/camel-aws2-s3" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234252" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "e626398a31134b34a8b3161cb30a82f6" + }, + { + "alg": "SHA-1", + "content": "3608a075c75ff336e18c2ba71ce5412981d232a0" + }, + { + "alg": "SHA-256", + "content": "8ccafc7abf23971a02ebff029d950fb304f58ec29ca275e2f475abfdefc31d2f" + }, + { + "alg": "SHA-512", + "content": "68af2f8217e618e9bf64c93655aa2ebe22ae13ca4b340f632d607fea2b5411693461defb6793687d093490d988714863e25ecec7fe6d9acb49f9ea788c98a414" + }, + { + "alg": "SHA-384", + "content": "e43f9916c21f42a34892967044ad3a8fad39214a3ddf33bab76a9006b2bd5c45a883b58d476ca6f76740b6060c0183c5" + }, + { + "alg": "SHA3-384", + "content": "34867bcfaf98d2a03afb66540505756d7cb111d2aba5d378a7e642888d2afd7140503b747bdedad7b60f13add1dfa79f" + }, + { + "alg": "SHA3-256", + "content": "bd434b28ce4b5f2626512cba8046df60db4f8ecc36d8b50b8576e5452fbea3ac" + }, + { + "alg": "SHA3-512", + "content": "4842d13a77b6fff271a5bbb9d035caf0fc2327d20e0a83c9dfaa445aa586adb61eb49c9a6f04d1f2d5bf0e6889f247eb1a63362347cf19dd958df6a2234b269b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-aws2-s3", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-aws2-s3@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/s3@2.27.19.redhat-00001?type=jar", + "description": "The AWS Java SDK for Amazon S3 module holds the client classes that are used for communicating with Amazon Simple Storage Service", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/services/s3" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020365" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "ead56e720fdfa4ad0d85c529053503d3" + }, + { + "alg": "SHA-1", + "content": "fb931a16be1518769dd71d77cc32aaecb5c54d89" + }, + { + "alg": "SHA-256", + "content": "d2613eb249e414aae04053c57ee965f3e288e2cf1e1479715e03b5ab0f07dd4c" + }, + { + "alg": "SHA-512", + "content": "141a6f72d8affefe2b7d3f3cb9162aa6e4d08b4f20d46f00379822da8496d5f3dc04bba05f9f32a63e3a347d443a76db1237b08c72a94f1c4b0ece05d8a97bd5" + }, + { + "alg": "SHA-384", + "content": "8b49849b23e14cfb870b3d715c039c909e38693d12f30007b8044f9125851f5519fffa6c472eb6a7e6bb2b4e8cc79be3" + }, + { + "alg": "SHA3-384", + "content": "20caa2528194f768ff708a3fd7fd6b15f10bc0195b8d357d5575f00f64c9e5b0d49271bbf598ae429a39726f912de1c7" + }, + { + "alg": "SHA3-256", + "content": "97b015d68dec3b8ea0179a082f97662a1425ac4b3b050ecc7f0a43d8b31daf23" + }, + { + "alg": "SHA3-512", + "content": "024cd6ea1c5e07b36a30e8086522b9ccb26df98afbca476ff65cd9fb4dc5f75538bd118f3fb735d3ebce396cf020e50626286c55112ad892b32405baea8d3e5d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "s3", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/s3@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/aws-xml-protocol@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - module holds the classes for AWS Xml protocol", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/protocols/aws-xml-protocol" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021077" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "a4d73a165a7c526d94cf1793b336ddda" + }, + { + "alg": "SHA-1", + "content": "a8f460ef008ae15410a8007b7bb13393d8b73c0a" + }, + { + "alg": "SHA-256", + "content": "223ee58581eee6eaf3149b4d988b5d422e4f2f57c9ddac6d93460c74b34689ef" + }, + { + "alg": "SHA-512", + "content": "68a0bd37ac00607a962e2105998e5e14afeedae0a480c80765f25015a9a9b82be8eaf8c4b328e59f24bf051bf561d87ea43f43fa6b4bdcba37f9f96c68dea7e9" + }, + { + "alg": "SHA-384", + "content": "daf39fcea7d472ef17b2c026094ec846da61431dc0c04ccfbc6d24f80c7efd3f2fa5dfab5dead9e3eff757cf1f72ed1a" + }, + { + "alg": "SHA3-384", + "content": "e1c7c3dd2df1834f74caaa73399f5b6f93a65ec997acfc18f583e42c7cb5d474b7fa01d8d4c8ea5200927446dbb47ba5" + }, + { + "alg": "SHA3-256", + "content": "bdc4974f29afeffaba2a8cf9e44f459538d65c8de60f4409276fda5e88c1fd44" + }, + { + "alg": "SHA3-512", + "content": "0904bc6a0dd3fcffd44746da13b6523b9ff976f6ef484309f828e4df10a8bb31a5ee59b24a749fd7ee2930b1d8c585d4dc96de85512872b3534aec8033d4e593" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "aws-xml-protocol", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/aws-xml-protocol@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/aws-query-protocol@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - module holds the classes for AWS Query protocol", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/protocols/aws-query-protocol" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020287" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "99de051de88a123688f5fd09dad8be77" + }, + { + "alg": "SHA-1", + "content": "a049903d066779d74a08747d65db9bfb7531d0ab" + }, + { + "alg": "SHA-256", + "content": "097e8928bf67c0d0150bb635c7013bb2b9010263c0948590e29faac472533663" + }, + { + "alg": "SHA-512", + "content": "3a6fa2b7e7e153a9b33f3849744bd83c4f0c3b5ff110351b921f2c77edb36b0c044a9b60e740066830b9672141ed6bb5475e2542d4b29d9c911afa379cbe4f55" + }, + { + "alg": "SHA-384", + "content": "2818d3aa5a66d8b4164b63917eea61a2e3c9784ea0ac8599b57fbea6a796e5ccb1ed7f2963184aacb15f21fc220bf97a" + }, + { + "alg": "SHA3-384", + "content": "756924f781e0dc2a0a0c35e11aa8a1ad308130f1c4da62c31d5702b5df181c22e70a115799a511776e09805d5cbf7a59" + }, + { + "alg": "SHA3-256", + "content": "0fa795e8ae6abc4033e1648e1b72d8f472f155d866a583a7990703a719ad86a7" + }, + { + "alg": "SHA3-512", + "content": "4414a6c67061863d673eea9f1a6b537aa252574bc30d757b21ddc39e41860851f56216ae54a68abaacfe98038ac51bb4e1d94c27facb40c15dc67bb1b1fd8582" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "aws-query-protocol", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/aws-query-protocol@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/protocol-core@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - module holds the core protocol classes", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/protocols/protocol-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020029" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "43d8b6d97b60b716c22a1739b9dcddab" + }, + { + "alg": "SHA-1", + "content": "8dbfadeaca4878ffb3298d641a40f5cb723cef2f" + }, + { + "alg": "SHA-256", + "content": "03d485160dc0562682f2681323edeb65def9f9fc561db9df529c747568e3bc6a" + }, + { + "alg": "SHA-512", + "content": "14374d85decbe0174c5559c79169962d7b33efc9d98ef332bb5afdc14b2eedfc14f7508401837d193947254c28e860c2206fb02c7e8b248c7c47befe620c741c" + }, + { + "alg": "SHA-384", + "content": "22a8cb0ea2d85221fbcb4cb7c027aaa0821e03f453295f2c69db109e32b0341a4c07add204e43fd48bb2b7fe99265143" + }, + { + "alg": "SHA3-384", + "content": "5e7881efb294f1020e4a98bbcf7484f0d48123d9462b6f704eeb6bccbaa22a14889db566feb08762ec173cae3412e4f9" + }, + { + "alg": "SHA3-256", + "content": "f6e723e70c064174ebc74b1f4b5e9b9ef3a9a3b04e7d986f16feb13c5049db47" + }, + { + "alg": "SHA3-512", + "content": "95d0964ef942069d0821eefbaadbd92c34b488b5935205ecd89726ac12c27708f151ea072989c0e2b6cd6248035f79c6e220af0225669cd57d6dd746e092fa4c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "protocol-core", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/protocol-core@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/arns@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Arns module holds the classes that are related to AWS ARN", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/arns" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021202" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "e499c05263c62f9189c49da6f1ca2adf" + }, + { + "alg": "SHA-1", + "content": "9e05dc370518a4ac960e8da3b4e9e45732d64b25" + }, + { + "alg": "SHA-256", + "content": "b8586a7f99b0781bcc28387a299ab4d1cc8087229abf375152e54db98bf0e96b" + }, + { + "alg": "SHA-512", + "content": "c4d20922ccf4a98a74bc67b3b22715ff35ed33ebb5aa69211dd5be3a57c4d35b76d7cf6dcdd48f47df7d46e9d40434503a8900fc0348013a9a526738133fb5ad" + }, + { + "alg": "SHA-384", + "content": "26250401dfa2357d7edba90ee0a8811e92ac4a3af49ef316aa3a0df8d5633294fba6cecc621a271e9e02495a5bbc6e58" + }, + { + "alg": "SHA3-384", + "content": "ff8d42396b9a0bee50b26fe73c6b13b9665f315d5675c88a7b536b97062beaf2a59f0945fe8504e538a12799d83da156" + }, + { + "alg": "SHA3-256", + "content": "d77b206476f7decc0f233d968f6d745f483585913f638a782420ae7564306a82" + }, + { + "alg": "SHA3-512", + "content": "b21031e9871e043d71c5b2f34dbd1c7e91ea925f4ffed25f2a50a8ede13ee18e5aa221a286235fcc650a8c7227f7c8ae726b53d9ddc1ccfed4c3fc6a76b177b0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "arns", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/arns@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "description": "Profile module allows loading information from AWS configuration and credentials files.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/profiles" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020866" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "75660df82904a4f675edf3d415804627" + }, + { + "alg": "SHA-1", + "content": "e632e837e7fecc54ddac039b7773e2db8b50fb00" + }, + { + "alg": "SHA-256", + "content": "ee1f5528fe53b5492af37cab215bf4920e7aa0d895c5f238c4185f6109e583ca" + }, + { + "alg": "SHA-512", + "content": "4681c6a10973df0d61d6e38ad0a57001d6b262236a3a67927fdc1e3bba97827cae5d04338a007a6fa5b7eeb01b9fe51a1f42e9f5799711cd0bce43a5c00dfca5" + }, + { + "alg": "SHA-384", + "content": "c725cdde1d3b54feac9fd97c274fa654ada46399bb0f9a4fdb08350e0429fd457dd4b34aa58c42f931466d2ac0ff5c64" + }, + { + "alg": "SHA3-384", + "content": "e79488a4e95140d5e0789c0d0390796f6798b03d6ffe36d891f92a9cb33927a4906dbaed46ebd5ca8649d16691f4e338" + }, + { + "alg": "SHA3-256", + "content": "dce0862fd9ff01f346f37de673771a2a3167a13d06058ad26112b218cd1075c9" + }, + { + "alg": "SHA3-512", + "content": "1950a82d934d1d8e5a11e38a905bac7dc0896ce1bc2be58db8e8eb0f64e0193a59b961a145ad655a1c58789a4cd35f7bcdc7f893bded47df184941d51ced2ce7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "profiles", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/crt-core@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - AWS CRT Core holds common types that are built on the AWS Common Runtime", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/crt-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020810" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "19c1bf01c1c9c5735d386a07021f22ac" + }, + { + "alg": "SHA-1", + "content": "f05a189bb5f453ad7d32110423593ce1a8717ce9" + }, + { + "alg": "SHA-256", + "content": "3bf0764c39a9e1d9edeb24799bd8e82300a763f5b8b15cd4413714f7250ee456" + }, + { + "alg": "SHA-512", + "content": "d47e66cec7716cec29454596c60710df62ec9a69c9da0ee855af3e4bb9cc35dca9267687d7d82f59ab5531bef67cc2bc4313bcd32f59536569d91cd8acb34f67" + }, + { + "alg": "SHA-384", + "content": "7472a94a5869c9fc8c53033a6cbf8a1e11a1d043b55cea51612444fe2cccd793cac9a2c68cd93540fbec686d70b717cf" + }, + { + "alg": "SHA3-384", + "content": "bade8db7646a2bc29785983b20cb0ddaaef8156cd8eeccd6bfbb325d0db9903c85e18016b87c3c60dea1af3f0214e20c" + }, + { + "alg": "SHA3-256", + "content": "af81115271132e71b5eeb861535f8f064d62919584e58889ce0663c596329d17" + }, + { + "alg": "SHA3-512", + "content": "8259310781db1767ae522e43217770fed1e93dfc049aa185264651451d3033b840df2303a8956f09047876328edceb0e467293c0280497168583ff240dc1b5b3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "crt-core", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/crt-core@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/http-auth@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - HTTP Auth module contains interfaces and implementations for generic HTTP authentication", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/http-auth" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020988" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "c4c6e9c2dec87be0c977f28e6349e449" + }, + { + "alg": "SHA-1", + "content": "5777090038a9ef77703550eb5b2ea59ace0e0662" + }, + { + "alg": "SHA-256", + "content": "b8981227bded8a6ad7a8c0684b4dce05adc4f104085c19f5da3c81469cdc0edd" + }, + { + "alg": "SHA-512", + "content": "01c4a8a0cb219bc57938d6e51d0b31edc241ead3374f8381a2a0f01fa7bd69451b8ccff6776127b4593b828a2acb19c9f3e4bc0ffaa1cb8d9b9fe996a4d2fc3a" + }, + { + "alg": "SHA-384", + "content": "ffff219bff252e760b3839716a73e961b34cdf404d579827703483a38f20835611f0db074eaab812a4adc1495540c106" + }, + { + "alg": "SHA3-384", + "content": "54b2f79ec2340206662882a935c46ab07121f1aaa7723f40da54cefb40dac06d9b4af013bfb8b79b27aacf85334bb8a5" + }, + { + "alg": "SHA3-256", + "content": "d31e056dbe2844622b98f01fd02bc9613c20b4a397295b565aff7e374066f79e" + }, + { + "alg": "SHA3-512", + "content": "da6abf84f97a96ade6ed0aa2acef763fa43f6ecdf7511ec5580f30f995308dba0ff35cabb8df11de35f5173c51cac405c688a06aa6d9b86fcab49eb6b5d234a7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "http-auth", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/http-auth@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Identity SPI module contains the Identity interfaces that are used by other modules in the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/identity-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020482" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "1d5a3c2abc60cf6f23bdce1441e0d729" + }, + { + "alg": "SHA-1", + "content": "f298bf54783031a1cefa206f6d54bfb15ef676ef" + }, + { + "alg": "SHA-256", + "content": "819c967ee1d0434d7e1601cf07cd30856abb7dad3bf69959a1261eb4bef828e7" + }, + { + "alg": "SHA-512", + "content": "8a8d1eeb0d348ef6d1f75a1457731976c9227bd00a92c2a1f3f21bbb050a57ca99fdbcac7bfe59306d8575e660ad9c718e72b44a96a2452b96654d7ee9a80077" + }, + { + "alg": "SHA-384", + "content": "3f61bede5a4b286fec3120710a8f40fbfac0655510b6338d87eb36fbd9499d709cf95525bf91bec1c8a2a8a44b0a0d69" + }, + { + "alg": "SHA3-384", + "content": "dae877ddf889f32e116b45a3cc6e7c1f7d93ae5b34cf5e7f132fdf484c0763049a7e33708e23743104b0c86ea64de860" + }, + { + "alg": "SHA3-256", + "content": "5eb90c45f07cfc5f1346dc57c684cf4471f463ab67aea643ed51dca501a40533" + }, + { + "alg": "SHA3-512", + "content": "e78e5d8b0bf5708375422b74481de827d1dfe9d175aa2f937706b9b209607515cda6d20ce658953550bf6271c007a29636468db71574811ba165761f038513c8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "identity-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - HTTP Auth SPI module contains the interfaces for authentication that are used by other modules in the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/http-auth-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020516" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "d453bf088d8e271141eda3060b3ecac3" + }, + { + "alg": "SHA-1", + "content": "15e9444e04118b538679397477b9d76a69b719e0" + }, + { + "alg": "SHA-256", + "content": "a866d4935dab21f86829f8bfd5d3f6be2f71f31dfc5dab21f402b53f4a5c6008" + }, + { + "alg": "SHA-512", + "content": "4abc561e2db4a38ca9cacd6f28cca4a3aaa960983252db2625c7c6e4b2b7efc3b99da1c377ecd41922c1247ecf2a82c483a4e6f721324f7e27ab94cecacde2a6" + }, + { + "alg": "SHA-384", + "content": "1896063ee692d36542c506eed0602a5099a0bf500f46dcce674f4b67700c10322782f315f2e840e08e2562091a82e27c" + }, + { + "alg": "SHA3-384", + "content": "e205c4ff00c00913dc3d6d8911de6be860fda672e948863380667cb5f95e9692dc2e9ffa2549695a1d2855d4d47e5fa6" + }, + { + "alg": "SHA3-256", + "content": "14ecc81344b2fe3031115f01763c83e01f8ec45642e0a7de3cce0cc4d5390e5c" + }, + { + "alg": "SHA3-512", + "content": "e36bca0fc5277df40049774aa5479a5064d8b222e00478994caa0da5100e992a565ba68b50fdb211674ca573fe52e0548eb562485dd2eb84efcbaa3a9f582ad4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "http-auth-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar", + "description": "A Protocol for Asynchronous Non-Blocking Data Sequence", + "externalReferences": [ + { + "type": "website", + "url": "http://www.reactive-streams.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13237683" + } + ], + "group": "org.reactivestreams", + "hashes": [ + { + "alg": "MD5", + "content": "eda7978509c32d99166745cc144c99cd" + }, + { + "alg": "SHA-1", + "content": "3864a1320d97d7b045f729a326e1e077661f31b7" + }, + { + "alg": "SHA-256", + "content": "f75ca597789b3dac58f61857b9ac2e1034a68fa672db35055a8fb4509e325f28" + }, + { + "alg": "SHA-512", + "content": "cdab6bd156f39106cd6bbfd47df1f4b0a89dc4aa28c68c31ef12a463193c688897e415f01b8d7f0d487b0e6b5bd2f19044bf8605704b024f26d6aa1f4f9a2471" + }, + { + "alg": "SHA-384", + "content": "ce787a93e3993dca02d7ccb8a65b2922bc94bfaf5a521ffb5567300a9abc3c222ebbfffed28f5219934ceb3da5b3e9c8" + }, + { + "alg": "SHA3-384", + "content": "68daf9498232897989ee91c1ad47c28796c028658cfe023c2907152cd64ac303a3bd961e5d33d952be7441bee7ff5f14" + }, + { + "alg": "SHA3-256", + "content": "0c2165ea39330d7cccf05aa60067dc8562a15db7f23690c8d4fc71cd3e49fdd8" + }, + { + "alg": "SHA3-512", + "content": "19c2d866a6c4d7c61ceb63d3b98324928eac880c8f23d84202c1145b4779438b1b275f1d20c74b06ecb0fbfe83baaecce3b4366ead0f7cc8b7b6916a8910c944" + } + ], + "licenses": [ + { + "license": { + "id": "MIT-0", + "url": "https://github.com/aws/mit-0" + } + } + ], + "name": "reactive-streams", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.4" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/http-auth-aws@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - HTTP Auth AWS module contains interfaces and implementations for HTTP authentication specific to AWS.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/http-auth-aws" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13019978" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "f2981e89ef20a80b32f595881cdd2d27" + }, + { + "alg": "SHA-1", + "content": "0175a216e6327882a0779c3f667161a8c38f18a1" + }, + { + "alg": "SHA-256", + "content": "e5580cf5f4b77512404033cdf835ca77c23b665e48b275860712d90afcc64e8e" + }, + { + "alg": "SHA-512", + "content": "1fc8c4726db858e7611847516d71948b4aab2330c5b5d8e5d7e3086d3760cbb2a6fe5abae2007312d02f918f64d8ed8bf537d4d220f7499a262134038d56560d" + }, + { + "alg": "SHA-384", + "content": "9758f3a4112032cbc1517f8b52e3aaff6ff864bbbd8dc21d87cd080ee664b4224c450a8a47109d974c4ec9b714d42e9a" + }, + { + "alg": "SHA3-384", + "content": "27923e1a496943446a3de8fd915084ec16fe8f80046b39fad6954f6aa431f9e10922d4cd8970400cde577a3fb23267a1" + }, + { + "alg": "SHA3-256", + "content": "969daa0715984a17e6676ee7da5938039cc6ca4e7900045cd931ce05871cdb0e" + }, + { + "alg": "SHA3-512", + "content": "404a1e99cbb66f89c58bc6391868830f5aa0f8c2610b2816a20a8abe7aef16799ffd1c4196da00faa23730e396c500deeab1a3893084dc433f9abf820e0a5429" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "http-auth-aws", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/http-auth-aws@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/checksums@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Checksums module contains checksums and related items that are used by other modules in the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/checksums" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020987" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "c8ac0e1a6dac1cb8da67b494a59e9d24" + }, + { + "alg": "SHA-1", + "content": "efd5e1cdd617311431b09732c51d3d09aeae7e94" + }, + { + "alg": "SHA-256", + "content": "434a285d600047120e21371c6a4bcd6fc3c4cd6dfa619c691dd56e74affc4475" + }, + { + "alg": "SHA-512", + "content": "6dec442f968f99ca69252214e93d5e899a864b9a12ea01dc98c464973893257e3d1035aec98a04c0ab2689b118553df705eb23dc5e639517a19db0817199e8be" + }, + { + "alg": "SHA-384", + "content": "0dd1c71ca983e967690c2b89ac8fc48e6e5ae888e7582fca9c82016027636bdc9f249cd6415dcc7d4ad57e8337de7fad" + }, + { + "alg": "SHA3-384", + "content": "820a7b41d9857612f2ea3505d993eca9e03c645dfab73a190ee5f15c1924a236e0f42b42d67b389e679cdcb677684534" + }, + { + "alg": "SHA3-256", + "content": "36e295136af53297db030014f859ab7b5e07798f50aa6f40961bb7427fd47978" + }, + { + "alg": "SHA3-512", + "content": "17cfc5bb080d84f8bd7e7acdeb3353de65eebb2d04c21dfe046a2a15ef69b5c50cc7ffafdba7d84bf566b9312a47f3e7489ecbb8ea437f767ee52d1d894660e2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "checksums", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/checksums@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Checksums SPI module contains checksum interfaces that are used by other modules in the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/checksums-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020982" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "db4d4794e9b6171a163d00aaf84460e0" + }, + { + "alg": "SHA-1", + "content": "0b003d8b048ac37f65828133e39205294da9d429" + }, + { + "alg": "SHA-256", + "content": "bf110419023b5d5faad63ccb317b8d91f54a6093d9cc0218b22ae65b8615ff42" + }, + { + "alg": "SHA-512", + "content": "ac9896be911f879b21c52de39d4ad7c82e9bbe8e3fb1e9e0284000ba18d5a8f9a3e71efea89239eaeb363b4e338b2ff9277717843f28c1e5c3ba1dec2a40e644" + }, + { + "alg": "SHA-384", + "content": "e7b4658d13f23ac59f4bf83f9cb1df577dcdf61bb3d6fcd2502345f9589cdced34f4b962473eda355b140b68968ec6a5" + }, + { + "alg": "SHA3-384", + "content": "2c23b081c8d79891ed40ee5dab8bc0470c836d32827add37ec930cf951155d7766c7eec07dbb1cc7571afc5e3c578382" + }, + { + "alg": "SHA3-256", + "content": "b20f49a6ff330781cbeace341bc163f2283ce5fc082c63a5f9e947f8e5b73dae" + }, + { + "alg": "SHA3-512", + "content": "9381a334e5733cd39f022fcb5ddd8386a341573ae408b849940c3b75a807c9e454e99aab556758b099e62e5c8bde34b15fba934c9472a28977a85224f8e2c848" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "checksums-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core is an umbrella module that contains child modules which are considered as core of the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/core/retries-spi" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/retries-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020809" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "a9136cafca034a99d44b26ca8b58ea37" + }, + { + "alg": "SHA-1", + "content": "00e0053c997d3eb9b631ecf8e49847ec4b07e17d" + }, + { + "alg": "SHA-256", + "content": "9af3cce9721f89326be0d68927539e962a3289611541203f7fae4842d4e46222" + }, + { + "alg": "SHA-512", + "content": "ab384a11ce39665c627915b5670fe1fc497badc9bf084911353705611dc5e2ac707a68fe03f45a537b467a7702f9418806626ce4bd2c1dcf4c86734763a6fa3b" + }, + { + "alg": "SHA-384", + "content": "87fbde34748e8d394c66441e5a93098786549901721e0f7d83091c6a17ff1b7f44fdfad17086040c808089f679afbce0" + }, + { + "alg": "SHA3-384", + "content": "fccdac8848f2a11ccca9ba7956108ea82228633dad11cfac77fa7de3ada197406960a9d4f98057e15fe97952bdbdfb1e" + }, + { + "alg": "SHA3-256", + "content": "b8f5dbbad20659280b3221bc2753bf2323823efc555fdb8029a4992c1be9724c" + }, + { + "alg": "SHA3-512", + "content": "48a060b2b6b88b3a59be97130d1568c2148a32603989bb0683edf0772f96afd59a227d7b43d7a9dffa98f225739cef117a6bc8a41a52ef10ec2c4c287892a56d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "retries-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - SDK Core runtime module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/sdk-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021087" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "3a33cd60a059a1b699d5fb56f897537f" + }, + { + "alg": "SHA-1", + "content": "cf2c6e0814be6ead6e0987c9cda0634e30e0ac41" + }, + { + "alg": "SHA-256", + "content": "40bc63ea55027959ea617f029e7ff96f4c0d3f33fc883717e3042af10b8b90f7" + }, + { + "alg": "SHA-512", + "content": "12a399291b3a2106adc297512cff3d71e6071c0c6be6ac6a5d0557d8eed9f88a7c210de82f8c563c8c8b99a410771385145ecac52c41102530b3d9e6e4c71205" + }, + { + "alg": "SHA-384", + "content": "c0ae01d989b746f02addcc720d85ab48de7b205a68ba57d1e558bf63357d7ab69fc44046b73d954814cb01a429eb3174" + }, + { + "alg": "SHA3-384", + "content": "3d38e94be33846a71093aef0cd5d480809107b58695c7b07a9f09c09b88b001406e9c6ca205d4df6e62f6192b943129a" + }, + { + "alg": "SHA3-256", + "content": "e14699c88ea24482a5fb60ae263e963d526357b2616930e1e7aa1321649681c9" + }, + { + "alg": "SHA3-512", + "content": "792164e52c1db1084e17961dbd17d7e3c322bd89b20ec59fad65178bac83ae114aa473080ba6f34bc48c783426697430d422b220783c9343fe08fdd70c3c4bba" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "sdk-core", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/retries@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core is an umbrella module that contains child modules which are considered as core of the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/core/retries" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/retries" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021092" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "db08648797c138731ef7e1d05cf9ac98" + }, + { + "alg": "SHA-1", + "content": "10ead365fb901e010452ccf0f91fa4d2964062bf" + }, + { + "alg": "SHA-256", + "content": "67c946a385fffa3839a5ae17206c669532ebb1a86ed34a194880cbdb953b6593" + }, + { + "alg": "SHA-512", + "content": "9a103a658bc400d4b4ab21804f15ccc9c4d9bb7c9003b6befdbe63452ea9e7efbffcc1ac29eacb0a8cf202557f447121b10825ad36bf57f50ab15d92686f3eff" + }, + { + "alg": "SHA-384", + "content": "16157a7b0a1900b882213d7ac3c5559769d1a4837eaec9798dfa524d3239e6615340d2dc677d41a0c0f340247ed53d27" + }, + { + "alg": "SHA3-384", + "content": "7fc4835f63b72e311cf43e48221ce087779c5ea8890b54b990a379094b276d5c31854868cd662eeaf98957b0dbaff8af" + }, + { + "alg": "SHA3-256", + "content": "9b32657f000f3557fdde733da30c3bf37e92cdb38baf31b1be1c58e6da3c213d" + }, + { + "alg": "SHA3-512", + "content": "cd39b5462bac6054d48bfdaba396f2c564cb18b25da93ea8a5ddbaf78fa1b4d35cfd42b3374333db434dfa52f243ae2c38b8ca60a8c3868dc7547f5a6f9044ba" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "retries", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/retries@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/auth@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Auth module holds the classes that are used for authentication with services", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/auth" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020525" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "6ac23f3155d1225aba5f3f5e44c04a0c" + }, + { + "alg": "SHA-1", + "content": "a146af83e3bcf55479a51af7536175d9b3d251ce" + }, + { + "alg": "SHA-256", + "content": "269591952739d52ef9c5c87e4279015699baf2bb3ab635b1ca756890ec7e8dc1" + }, + { + "alg": "SHA-512", + "content": "d20c3e436bccb6c55c165056f588c08398865f95f35f145e2ed338edded05224398a242b658378531b585e579267ba4ecdf44998e33a65ed2a0f143a1c43e77d" + }, + { + "alg": "SHA-384", + "content": "ff6086283d39bd17ffe333658b382b634d34fd06f99fbc30cd1bcabb31de7803153f536470b25a7214f3d2218b5865d5" + }, + { + "alg": "SHA3-384", + "content": "49204f1a241059341ef048f155262b3af378c87f12b356def503bb6d33b2f54b972dc32d5d744ce5f952b361fa60f936" + }, + { + "alg": "SHA3-256", + "content": "ef8a11976b7bc13ecd572249b5f02928c065a0efc0e58c56064a223cf7e84995" + }, + { + "alg": "SHA3-512", + "content": "126bac241cb72487821a75381679daa1e68e6125447bf914f25be0b79f870cbfc86e2c21c9d9d90e13664c37e7596505947298a2c8cb398aa2f9300d38b0606f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "auth", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/auth@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/http-auth-aws-eventstream@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - HTTP Auth AWS Event Stream module contains interfaces and implementations for AWS specific authentication of event streams in HTTP services.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/http-auth-aws-eventstream" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021232" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "c4423ec8394c52d844b2fde8e0128e17" + }, + { + "alg": "SHA-1", + "content": "24290ebe7d5b951d743717a5dfa2595a8ba7ccd9" + }, + { + "alg": "SHA-256", + "content": "1dc61626e923c79e47559db8e7dda217db540a9d583157f880423e464fcb8783" + }, + { + "alg": "SHA-512", + "content": "d8928d26bc67441fa3186f480b3a66d0818597de551ab6caf70d3eb309d00f58d2007e0a383d23e81209b57bd52bfe9eb580f79d5a91457650daa938406fd354" + }, + { + "alg": "SHA-384", + "content": "a525d5e0790a6d044cd45b22cfbb6ac39d7f0da5c7073149c289ce622fcd647ed19198c46cf02bd365b214dcc2f2e3a5" + }, + { + "alg": "SHA3-384", + "content": "c2c281b850d6907894e6e80dc141f84a8269b19b565605d88d7012db7fbe3498290d2f6de40c178ff174e10ac6b78adb" + }, + { + "alg": "SHA3-256", + "content": "f51f4c74c336f607d4ed4169aaf27b045aed27e40c9ac7037d6029f92dc1a4f3" + }, + { + "alg": "SHA3-512", + "content": "e4e7a6bb4fc842a858676481a44b58eb835f745d09e856e2e2db8a24aa6060c6dce14f08b744e6bf1aaab3cc8e90b88c52f70886c64a286b9efb77277921d7b9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "http-auth-aws-eventstream", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/http-auth-aws-eventstream@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.eventstream/eventstream@1.0.1.redhat-00002?type=jar", + "description": "The AWS Event Stream decoder library.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/awslabs/aws-eventstream-java" + }, + { + "type": "vcs", + "url": "https://github.com/awslabs/aws-eventstream-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10842188" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A2PW6YTQYHQAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2" + } + ], + "group": "software.amazon.eventstream", + "hashes": [ + { + "alg": "MD5", + "content": "79be91bbe22ba9b346eb3e24f3bcab00" + }, + { + "alg": "SHA-1", + "content": "95d0f2ba82ecd0d68b64e651c265b9d1ddb41556" + }, + { + "alg": "SHA-256", + "content": "d3494a344e0433d1a2993f798c82b8eb8560ce2c6ff4070402ac0aec174fd9c3" + }, + { + "alg": "SHA-512", + "content": "705425b4f58f57f56b2e2c6390cc718bad63b082ddc6ee90fa5188388fd46a5b148d23644943d1b5078ee2441e31e1b6e50b76805da5acaf6caf139a11c29370" + }, + { + "alg": "SHA-384", + "content": "ee14f188b227610d2719f124c6fff4630b96e5f181c32442424d1d8dc37e3b13b17c2781b3ebd7cdb246394a1b047095" + }, + { + "alg": "SHA3-384", + "content": "5097f9e814828941ef2906f0629b29d63a7313ff2525ab05e68951d07583a3294a7d4636fd805c6efd441f1a22127390" + }, + { + "alg": "SHA3-256", + "content": "7f396d0bcd9d74f360afc88e0be704a795d0ac9b1a7aa2c087ed8336a9422180" + }, + { + "alg": "SHA3-512", + "content": "470b70cef6a6fd50b89796e0cae4afed0694ac1f7116e4e9eaf165484d88cbf95c4c2e4d62dfebf3c67b3c046ca6e687255ee08e46a438fe340299dc0feacd2c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "eventstream", + "pedigree": { + "commits": [ + { + "uid": "e622c2680cfadab05fc5211b7e5b031834f29db3", + "url": "https://code.engineering.redhat.com/gerrit/awslabs/aws-eventstream-java.git#1.0.1.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.eventstream/eventstream@1.0.1.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.0.1.redhat-00002" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "description": "The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/http-client-spi" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/http-client-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020795" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "434f143424e87375983d8170050c8cad" + }, + { + "alg": "SHA-1", + "content": "722ee972c5fb14e8567f13b6ad9c0bcf82998f6b" + }, + { + "alg": "SHA-256", + "content": "280d4c72cd86bbd343c28c5bd4b28bd608a91e2af01e5479393115afd1c13f8a" + }, + { + "alg": "SHA-512", + "content": "512450e3ee32942d9a8d54af4451401ec419133bbcfa3151bbdac371183dcdc7b936032e4842248678f6af8c34ba3715f443209cf100f2e16d8137a1b92b25b2" + }, + { + "alg": "SHA-384", + "content": "25343c9bcf6a1d1fa813d1b305dfa246ef31081bf5c4d211c327fa36d2a4ec3eb29f1af72aed1b238fb408e2951a44a1" + }, + { + "alg": "SHA3-384", + "content": "447fb90d5d164686491cd404f7241c45e71180cdc380162daa54d335bac945665fa6bc20a5691072ee868a67e7a1ce6e" + }, + { + "alg": "SHA3-256", + "content": "776623130588863fca14c18a5490e77c4e047ef941ef50af003fa6c329ceda35" + }, + { + "alg": "SHA3-512", + "content": "1e470d38febbbcf917da6361e0c87fcbea56f14354b3573215ea864c9a11c2d1a73d0a0eddd451431934e3091151cb289f95feb11fb542a84a3233266aab7be0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "http-client-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/regions@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core is an umbrella module that contains child modules which are considered as core of the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/core/regions" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/regions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020463" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "089d576dbeb1d2d4d3acb7e8202a636e" + }, + { + "alg": "SHA-1", + "content": "7008466a52a22c3f0db0a3d784331df4e17d405c" + }, + { + "alg": "SHA-256", + "content": "45f02d0fab003538e378a8d360aa07721b732dd531e56b7d41d9685d9adc406b" + }, + { + "alg": "SHA-512", + "content": "b724c4d5195755646277ad564f7e259666a855be1d612d7f7e90c332ed43a1e296769aa271181091ff0a6ac1a2aac5f60666b08cf6f8fa9526e40c00206caa71" + }, + { + "alg": "SHA-384", + "content": "039479700edc80d4234638bc2efbf846ad8343e2fba56ff118be3e406353a2347ce71261d6ce9bdc96d5880507462b09" + }, + { + "alg": "SHA3-384", + "content": "9f6fa2c317fa01f0359f3b221ea921578bed71775979df4e4558f40566aad08ded05b3c8cdc02598519ce22af98648c6" + }, + { + "alg": "SHA3-256", + "content": "5ea067a26d5b0f2865497a53212aae623a76419e90c00401c96b89bf572b4325" + }, + { + "alg": "SHA3-512", + "content": "8f2b940a5901a569624c241c08e481d4462e3a749f7218e9849400d759702f2fb93e5863272f38bdb3f4b9c67f5cd10e323dac5b9b178e5d1b3622b290a13eb0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "regions", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/regions@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core is an umbrella module that contains child modules which are considered as core of the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/core/annotations" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/annotations" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020844" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "fa42fd9a7d1e07b3b2db103997e7c2eb" + }, + { + "alg": "SHA-1", + "content": "d06ce0312953942f8def7983295bd8d63c660afd" + }, + { + "alg": "SHA-256", + "content": "1ca4e80125b1fdc224802cd3973611bc8e1ec82f41132ce9634b29b978c2f64e" + }, + { + "alg": "SHA-512", + "content": "c4a9d12a9a7382545ed9a6271b6cf2e31e3bd9ed939213d7176210d703178cfbd47b1f38a30be605768eaefee69d4bf542b3b22c5a56a9a59856b2e4eef9a734" + }, + { + "alg": "SHA-384", + "content": "2044a7ead96e44b80dc9ae1aeef6964200bf8fb13aa83ea279c4a4b2fb0c0ad041cc5762cdf8f7836a5beaaec1e4e31b" + }, + { + "alg": "SHA3-384", + "content": "d52ea7b730ceab3e0c991fd951aec2e96f44ceb1a0cf7efbd94f6fcc930e5714d598e7e42f090bb1453e08f84f18a6c7" + }, + { + "alg": "SHA3-256", + "content": "8303fded82d436bb573ae343c588622b9c88b54869005088cdf7addab15bc50c" + }, + { + "alg": "SHA3-512", + "content": "5568a6659f783c96da15e3e9761891e63ead48e1149f35808e06143db47a7746826660975e4f4a15a1529eb08e0fb7e77281574bdb430d9e6ed21b37001c5235" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "annotations", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "description": "The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/utils" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/utils" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020574" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "a171b3649e8f5b4b21293b1fac3f091a" + }, + { + "alg": "SHA-1", + "content": "feb3a1ad63756e7e0d398f97af5848d348b4e705" + }, + { + "alg": "SHA-256", + "content": "ee2c5b83bc216de801105d931b7a2333fd86dfaa6537bc011435b7f6a8093521" + }, + { + "alg": "SHA-512", + "content": "29997da4c147c03da109f0379f05829774f1b1e23f33f36b0b854c7d18894b295b67da0b7069cbdceae4497cb1cdf5545b3915fb9a37dba04a2cf23a0a2928ab" + }, + { + "alg": "SHA-384", + "content": "106276a5293df3c5ad775e92beacd6881bab5e21b1eb0748a6527218afa56393db6caa970499753b32cabf91de7863af" + }, + { + "alg": "SHA3-384", + "content": "10d25898d1b2e1a0e5a4a2812c7d3ee7af76713709e1f48303a21f4e317a97c26362f822f1f0d3ab53f440bb8305cbbe" + }, + { + "alg": "SHA3-256", + "content": "fe8f4c3434ab4437ae0054370955ede084aa3ed2396dd5d6b9d4785513656edb" + }, + { + "alg": "SHA3-512", + "content": "c6cc2b92dc9ff41205bbfa952556cf76b0497fb7d3a53f2d47f5a68ba01094c5ae6e0076ba1c5664794b1dcf5fd669f218f8a15125bb259128b7a054a4bf86e1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "utils", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/aws-core@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core runtime module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/aws-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13019890" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "85977d892d429a51109f85744071231b" + }, + { + "alg": "SHA-1", + "content": "8cdf74b453b9066fe938841065fc397d232c7809" + }, + { + "alg": "SHA-256", + "content": "c0e0319376c7af1450b8f7b6fe358d23e68c5e2af27ded84e6da006cefda1aa4" + }, + { + "alg": "SHA-512", + "content": "99f779a5123ad3fa274362f80250f073f59386158c60812b40a7e5445af0dbfc475b5aba4709b1374e0b2914ce84bc9479bd68a381939511cead115dcd65e65c" + }, + { + "alg": "SHA-384", + "content": "7cc0a531ff41d96f227703a92ae47d242aff647a05c4059f9500dadb337f3bc8e47965e1e6dd5e8ef9dc29a32150f7d2" + }, + { + "alg": "SHA3-384", + "content": "60818c6b6bc741c947de3b41faa4228e2085f0539a759c1c87d8983bfa31cea9e3ff63a0047e25e6f245823127f9c540" + }, + { + "alg": "SHA3-256", + "content": "12e7a2e3e875fc3c5e5c4d8e9eb81de1f0a07a3943b4398ef59cb898046555b6" + }, + { + "alg": "SHA3-512", + "content": "e18334af6d9c52da111ce2578c0976d0c96b02c4da0b77bc946cad0a85373864c1beec5802b89b7b475b432cdda10d064008ec46cb3bf78572864b51b641afad" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "aws-core", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/aws-core@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "description": "This is the base module for SDK metrics feature. It contains the interfaces used for metrics feature that are used by other modules in the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/core/metrics-spi" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/metrics-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020195" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "80a8d7be04a9fb7f60f2f44b5720afe4" + }, + { + "alg": "SHA-1", + "content": "e3f79df85b429c89be3daa2d8f2060a6df24d1d8" + }, + { + "alg": "SHA-256", + "content": "d1f9ad96b350afb7b4eeaf24850302a82e9c1deb9b4b0045f1f95579857b7c2c" + }, + { + "alg": "SHA-512", + "content": "374360c76c645f504e7b78984e5ac8c664b0e122d49884ad9e80cfe68ccb373e4c600636ba5fbe668f8e7b615172ef87dc15a5ea9ca95290005451da69b767a0" + }, + { + "alg": "SHA-384", + "content": "acf6502aae6d1278d7dae28c26703d28a5fac8a8cef0ddf119be8d6da5f5468005af46acf6d2dccc457755fd1108c285" + }, + { + "alg": "SHA3-384", + "content": "575fa0a6e311cfb52f3c6d4f6a4915ea206075419e409afec48c01c992367334cb8204baefb25c3ad511eafd48fa5e03" + }, + { + "alg": "SHA3-256", + "content": "66d888241776cb9e1943387a9d31ddb9d8259f55191144bd475edfda84319ad4" + }, + { + "alg": "SHA3-512", + "content": "0207ac69ffbdf47e079bcadca7664ce2d2fad19297c458710cc957dde8430c474f30e0b3b11ec59d6558e27b42477d8996674e18bcee2d600b18e641f8d0586b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "metrics-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/json-utils@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core is an umbrella module that contains child modules which are considered as core of the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/json-utils" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020395" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "7817dbdfa5a609da2c85dceee74b2b76" + }, + { + "alg": "SHA-1", + "content": "451437a015e47c87686c63347601bb36e85b0d25" + }, + { + "alg": "SHA-256", + "content": "789e39f02fe5cc70ca8e0e2c908efec437af468b9c8b99ee24bc90b1b6a696b5" + }, + { + "alg": "SHA-512", + "content": "608181f93e5c541fdeea87834d2f86a05795c4ca8b25cb9c0221167eb88552f1bdfd0ead49a8f2f6e748da37e60e21f738b395d1065e90e5f254d085099c131a" + }, + { + "alg": "SHA-384", + "content": "5fbaeb5c730977bd2f8333611f1c2341f7ab0d84eccfa9e47146bc27a70209f8733030f5c19e8a97c314e069148727b2" + }, + { + "alg": "SHA3-384", + "content": "ca556fc4cf73a8d2c176f2802d6829b98dcaeb2e18dd627f945dc3d10a267151358623244366f81d79568c7146a22be6" + }, + { + "alg": "SHA3-256", + "content": "a25f7f0b6e22a260423358a35c239a93fec19e15ea219fd0cae13f1ae7df74dd" + }, + { + "alg": "SHA3-512", + "content": "3b82a5bebf8ef2c4f57de1ceb48838ae94ed985125d86436ab18406600f98c8b027dcfb93f3ca3aa27da638d0da98d6a8f771663ac6c8a2d52781974b7127d78" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "json-utils", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/json-utils@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/third-party-jackson-core@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Third Party is an umbrella module that contains child modules which are shaded third- party dependencies.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/third-party/third-party-jackson-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020056" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "05980eb935ea5ad88d6379281468185e" + }, + { + "alg": "SHA-1", + "content": "08e24652c3be3c0674fef1a22b984fe71e6318fa" + }, + { + "alg": "SHA-256", + "content": "6e4ba96918c931a2ce8d371c4b4944cc7bc41c2219dc557ccbe5980e5e07ecac" + }, + { + "alg": "SHA-512", + "content": "b1c6eb287db750b3c642aebc2b5868a317f3176e23381f24f4242ca7ec58331bd972a3bf925f21b660f173154581f84e81988feff6a829069553e8b5cf1e69b8" + }, + { + "alg": "SHA-384", + "content": "47955b86b80c5ef258f121a6b08467c5fa3704f6580fb390537ef43ef446333036a8fb7a424455425fc6e3d2f6862407" + }, + { + "alg": "SHA3-384", + "content": "727b1df5af4d2ea1e6a2e03f10da2c9f1c1cfa12b9580e72671999463872981c1543cf89501aedf77b75c8c8ca1c0434" + }, + { + "alg": "SHA3-256", + "content": "a7be898e0f7bb189fadeed320b43aefd6b1a3fae4bc3ef02e4fb3848450cc8fa" + }, + { + "alg": "SHA3-512", + "content": "c852c37a47607a778df01cd40601ebd5041e07d0cc78628a598ab9223427f315dbfaa50044d634b857c93566659b7c2d5bd4a5ac70911faea571b001f710b3eb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "third-party-jackson-core", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/third-party-jackson-core@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/endpoints-spi@2.27.19.redhat-00001?type=jar", + "description": "The AWS SDK for Java - Core is an umbrella module that contains child modules which are considered as core of the library.", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/core/endpoints-spi" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/core/endpoints-spi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021017" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "616b2b63c973d6ed832daa48993e9b00" + }, + { + "alg": "SHA-1", + "content": "605878249466390e85fcb3f43587ec3187f3767f" + }, + { + "alg": "SHA-256", + "content": "417f90b42e2dbf5c16fd158ea757fc63b8861d5a800c5ba8aebbb224362b9c77" + }, + { + "alg": "SHA-512", + "content": "ac9110baf1987bdd0c018d80f973c4873c14e37ac26a4c3b6ba92f79505054c6a516882e41df0e7e099430e67e73e855a4f1774b4112b188fa2b093101a29526" + }, + { + "alg": "SHA-384", + "content": "6a95ff749231b14c52c6629b7accf64413d1653d709b3a4d2df06cd0474ab4954188b31d51bf77d669d0c565cd6da671" + }, + { + "alg": "SHA3-384", + "content": "1883b46ce8407885ded6ab91c7d0dcc5e1e7f480f8a3049f27d4c909d2e0c044c108e57e4d16153dd0db58fc6a53232c" + }, + { + "alg": "SHA3-256", + "content": "d84af7d616ef452bc4eb38fb0d13beebd6496181e99862669d87ea3e41262a66" + }, + { + "alg": "SHA3-512", + "content": "0378e2ca31cd7666410ccf080d9410fdfe2e2b27149e1c5a1824f35f7ae6618702b7e31297da46f0156cebdbce272dd8caaa7c083158b3ce735fcd8256f50247" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "endpoints-spi", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/endpoints-spi@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/netty-nio-client@2.27.19.redhat-00001?type=jar", + "description": "The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/http-clients/netty-nio-client" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/http-clients/netty-nio-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020842" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "dee19eae7f0b97e29c03e4c79d8aca25" + }, + { + "alg": "SHA-1", + "content": "947ea80ea42863bcb02654ffb9326118770ea495" + }, + { + "alg": "SHA-256", + "content": "f61a8028e78880c8cda9d2dce0068f065855cfa4b83320cec81a0f0d8b39bf80" + }, + { + "alg": "SHA-512", + "content": "15d698604d4fbaf2385ebe388c3dedb4af3bb9ab8e29cbcf3cd0fcccde400da08054e2564b34bb78a8da5bf2faf295801941d1ed38b343231bd5795dcd272d8d" + }, + { + "alg": "SHA-384", + "content": "31c8a545fcf68c416b13ac21cf03a46a748f1fc27a112c100fc6af7375e06d5d936b6326b611c94711f6a2c6771b05ac" + }, + { + "alg": "SHA3-384", + "content": "79066911d6336e7011fa784555a9dcd7259d55cffeaa43fe6928cea21d79dd68d5b13f81f09a8ff4bee1f9067f6b31ef" + }, + { + "alg": "SHA3-256", + "content": "40efb199be41922b15a73a4aac3be085d2e9383573816545aa7d8b41d8f2a76b" + }, + { + "alg": "SHA3-512", + "content": "4c95398951ad33adbc0756a0319199d89b774e1979448a3ae09b9f1d408985436ec9ebcd7ee4b2cd50807126a2fe35afc644b084cb9d56dd8dc1b399e31a70f6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-nio-client", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/netty-nio-client@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/software.amazon.awssdk/apache-client@2.27.19.redhat-00001?type=jar", + "description": "The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).", + "externalReferences": [ + { + "type": "website", + "url": "https://aws.amazon.com/sdkforjava/http-clients/apache-client" + }, + { + "type": "vcs", + "url": "https://github.com/aws/aws-sdk-java-v2/http-clients/apache-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13020872" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFUVM7W6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3" + } + ], + "group": "software.amazon.awssdk", + "hashes": [ + { + "alg": "MD5", + "content": "ec633c6d8c72de1538ad5cc2005a10de" + }, + { + "alg": "SHA-1", + "content": "0ec565e35aa10bc12cfd82f91f478386cb7b8897" + }, + { + "alg": "SHA-256", + "content": "93524146260a56e40c1cf86479989527a9a144e4f86a5e940fcd5cc7306bcc32" + }, + { + "alg": "SHA-512", + "content": "2d0904d1c2b83e53378769df18e6503aef3eb980404c648cf7d7b8aeaec457a138aa6e75b4d89c775e001b83e48b2ac784c5a0377f71f1a22ecadc84750f22f6" + }, + { + "alg": "SHA-384", + "content": "f6208d1e642e22f38ff7cb6366b0cd94060fb75ef1fefe6a32ef7e45b342bf78c671382a9dc87370a08daab833eef794" + }, + { + "alg": "SHA3-384", + "content": "d1e96220f6e189c670a4216abeb678b6925f21c461c77df171366c0e73ec67a86f08f9ec706b128f72e2d26a558c5a53" + }, + { + "alg": "SHA3-256", + "content": "d0baa0a9cce368f824b648a13c1b500d0ec613f69f92581103047093b4504d9e" + }, + { + "alg": "SHA3-512", + "content": "c33e66ac6d55a3f31d6d025d4a5249347822416378d6a9eea2b1a4a9056f781a2bcf971ffc1f89b19377aee0a53a120c2dd35b77a94762e413ac46cda3f96a1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apache-client", + "pedigree": { + "commits": [ + { + "uid": "cffdc0c891eff3ae38d28fc6979a1d5341f1e085", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/aws/aws-sdk-java-v2.git#2.27.19.redhat-00001" + }, + { + "uid": "9f74a47d40218d3a030bbec45f794ac72ddcbdb2", + "url": "https://github.com/aws/aws-sdk-java-v2.git#2.27.19" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/software.amazon.awssdk/apache-client@2.27.19.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.27.19.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar", + "description": "Apache HttpComponents Client", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-client-ga" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPCLIENT" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-client/tree/4.5.14/httpclient" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12583468" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBDKTA2ZTEYAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.6" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "76e5cee7692bbc45540185948e4fd6cd" + }, + { + "alg": "SHA-1", + "content": "51a89a2f93d2357e22d0b22b88297d0ab8529900" + }, + { + "alg": "SHA-256", + "content": "705ca4bd127deddbc199c11318109b99a04d5229c42f09a7d99ab08ce15a7cb9" + }, + { + "alg": "SHA-512", + "content": "a54eb1ccf40250999c3542c37d5ddfb96947373078a825baf6b9a3eae8db9b5210d3e8a344c82dc4a529c0115dce73a44a7febb47a1202915746627dac7d313c" + }, + { + "alg": "SHA-384", + "content": "88e45ea9dd266696a32b2736389c0ddb04a7c5bc964ab514a4ae208aae2446f60db44f69285cd97c1a54c0cb6e6154e6" + }, + { + "alg": "SHA3-384", + "content": "9f37f693ab68186814a6c009840a14648974dbcfcfacd1555a685e39fbee81c7fbdf5badecd2c1d695c2a84da2dcecd9" + }, + { + "alg": "SHA3-256", + "content": "ee56e56198de8f303f068fdf87ea959285fe7a3d7f1c3a366b841b96024ca132" + }, + { + "alg": "SHA3-512", + "content": "3c57e344bf05d6ae67c54487afdb098895a6335bf10bf945b65a05b93e0655c5690e9eeb2add30f903d37675af58d65c826b908750de13b8af996eef8200549d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpclient", + "pedigree": { + "commits": [ + { + "uid": "1b879b18e6dab24afb552821c05bf976a2be7640", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/apache/httpclient.git#4.5.14.redhat-00012" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.5.14.redhat-00012" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "description": "Apache HttpComponents Core (blocking I/O)", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-core-ga" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPCORE" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-core/tree/4.4.16/httpcore" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13057638" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "28d2cd9bf8789fd2ec774fb88436ebd1" + }, + { + "alg": "SHA-1", + "content": "51cf043c87253c9f58b539c9f7e44c8894223850" + }, + { + "alg": "SHA-256", + "content": "6c9b3dd142a09dc468e23ad39aad6f75a0f2b85125104469f026e52a474e464f" + }, + { + "alg": "SHA-512", + "content": "168026436a6bcf5e96c0c59606638abbdc30de4b405ae55afde70fdf2895e267a3d48bba6bdadc5a89f38e31da3d9a9dc91e1cab7ea76f5e04322cf1ec63b838" + }, + { + "alg": "SHA-384", + "content": "ba9ceaee1a37ca3201d6a1315ecb0327b495489efd0baa155c219c475df8d3eb69fe77ab0026563db406497626da6562" + }, + { + "alg": "SHA3-384", + "content": "b9dc44dcc7cc86d5036f26d54c4003a2d72808ae7b07a0808bb53505c6d4281b5ad213eb1f3d0fef1113dec57cb0dfe1" + }, + { + "alg": "SHA3-256", + "content": "fd8ab51846476c6c18822151c9ec07b39a9633010b5d20ea937fc6910407bc64" + }, + { + "alg": "SHA3-512", + "content": "b42fa528242981a9d70e4f68ab75a24292df5112c44c21b6f18cb9201ce747885ba1d4dc69bc3d14d0da46a6c2638f937c11bc45749abeb55dc89ddada90cdda" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpcore", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "scope": "required", + "type": "library", + "version": "4.4.16" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-azure", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-servicebus@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, Azure Service Bus and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-azure/camel-example-spring-boot-azure-servicebus" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-azure/camel-example-spring-boot-azure-servicebus" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-azure-servicebus", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-servicebus@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-azure-servicebus-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-azure-servicebus-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-azure-servicebus-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235019" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "75495c0e04ed6e8a509e6dd3a68507ef" + }, + { + "alg": "SHA-1", + "content": "e62a20f6bd21b41db9b337e064f49c363227f993" + }, + { + "alg": "SHA-256", + "content": "51e9aa8e257607f853aeb5fa1e6fe7b2496926c648a06a30c990119813a3e684" + }, + { + "alg": "SHA-512", + "content": "849792695631b4181bfef74a6e2d824b441bb1cf080a244b5696cd5f2fb2723a7f18ce67b7f76cf5f010bde87ea28299ff75f1c7f0631211279439fa7ca47f52" + }, + { + "alg": "SHA-384", + "content": "cbee15f63548f90f83f6743bc550bb2e3932f2ef32055f774ce4640a7f553d6e6669c9ce20cf8616f2e2eff08bd8c7aa" + }, + { + "alg": "SHA3-384", + "content": "f9592528e6001e252c426ccd86829f5a73977bd6ebb3563aaf2235ca050e9ebc67fd982f6b81d801d0b5cc45d32221f0" + }, + { + "alg": "SHA3-256", + "content": "2d9bb14c0735ca173ee6cb8dfa82b7b1848e92a6e043d17a61230e62a6bc00d9" + }, + { + "alg": "SHA3-512", + "content": "27e4e154690c9fd0067d8274fdc0895d7df3b7101c9d8389f378e72b56a99ac3f4514fdf3d88edd5b6a1490856a2c72722be9292c3bb3997b29b791409cd92ed" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-azure-servicebus-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-azure-servicebus-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-azure-servicebus@4.8.0.redhat-00017?type=jar", + "description": "Camel Azure ServiceBus Component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-azure-parent/camel-azure-servicebus/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-azure-parent/camel-azure-servicebus" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233956" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "9c28b530bd89773258f53a315f87cddb" + }, + { + "alg": "SHA-1", + "content": "416709dc6f2565c18a17e17d7da0a5e438c8b468" + }, + { + "alg": "SHA-256", + "content": "abb1914842758a1950ed6343e356c5ee1f4ed6959b50b5dfb4b7df8059fb3e68" + }, + { + "alg": "SHA-512", + "content": "d44ec130211933648a0c9023612ae10dcfac2223be90f7150ffdc09d5592e8dd37990cf7a9ae373aef9cfe4c535939539a839044bcda29d3fcf694628343ac3a" + }, + { + "alg": "SHA-384", + "content": "de2beaa82815224a9d5814ec7bdf70f0bc0de31f74e5794ee15790b5b1eef27f21fbe3db14297f7a438fb5b68ea7b27a" + }, + { + "alg": "SHA3-384", + "content": "fedfcde7e6b8725121f22016074787e265cf3ad391c5f785e00871b02dae4a02e08d1f24e59119a5e83d98f66ebe4f9d" + }, + { + "alg": "SHA3-256", + "content": "c761a8f7dd664f9a5bc83258768d7970a21a53190d3ff56ce4ce57b41cd4a19f" + }, + { + "alg": "SHA3-512", + "content": "dad1fb763403ac9a6abb8c3a47263ff78f34e78b381db65c1aca0148e618c507488ce84cb939a3362a8395d4bbf745cc216baa76dac8a26dd70d198d340f82d2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-azure-servicebus", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-azure-servicebus@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-messaging-servicebus@7.17.3?type=jar", + "description": "This package contains the Microsoft Azure Service Bus client library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864933" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "c71f2082573eca8ed6d4177f8eeccb12" + }, + { + "alg": "SHA-1", + "content": "4770cc6bdaa33333d15eb808a5ac260b2077074b" + }, + { + "alg": "SHA-256", + "content": "e605de61b760407ab035579e4ac1fb08e3b9a1983dff1041b3469a50cddc88b1" + }, + { + "alg": "SHA-512", + "content": "d505852367589603682db88687484e6c99e1f628083eb0ff32d535cb4fc792d3288eedb10f4d02e675150ddd6be3706dc398b57222334a141e655b1121912c37" + }, + { + "alg": "SHA-384", + "content": "d00c496a1db3f7f7accb6b254abc2810bcd1bca8a9ab94653be46bc93f264c53f2904b18190165baa7d21b309f187932" + }, + { + "alg": "SHA3-384", + "content": "1d75fc6f8810a9d143ac780bbdece2ac98d3b80e449b957a0f2869ae4d1a1c48f216e0cd9f95b04873840edb0793203f" + }, + { + "alg": "SHA3-256", + "content": "b90e91e5938a89cb59deb1301943b945d4b1704ccb94862ef8f908d9cbca16b4" + }, + { + "alg": "SHA3-512", + "content": "c3e4ad4afab0711f36f786e9bb95c995b61868830104a443ae139e9c06a3411330aa3479e0ac965996c2bcafda0702758262cab97e8a11b83e2551df448a1920" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-messaging-servicebus", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-messaging-servicebus@7.17.3?type=jar", + "scope": "required", + "type": "library", + "version": "7.17.3" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "description": "This package contains core types for Azure Java clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864921" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "b8759ee837659d5bbb2f91082916bd35" + }, + { + "alg": "SHA-1", + "content": "ff5d0aedf75ca45ec0ace24673f790d2f7a57096" + }, + { + "alg": "SHA-256", + "content": "9f39244d3cc201a6fd69eb5800d9951624bcac548aee3b51efd642e4acbf457c" + }, + { + "alg": "SHA-512", + "content": "f6711907aa39c166af562d8a9663e5ce115b1ed5b53dd72b784882fa1050c42e9619f79a1fe2e7328d88ceffa64b7c9098074f695e554b6ebe43d100a53e84bb" + }, + { + "alg": "SHA-384", + "content": "bbdc6c81dfd9d420da8479d34efb2ca8bdddbe6ce5786f9df795b265e176b07eb9134b9dca99e772646ef4d67b4ab76c" + }, + { + "alg": "SHA3-384", + "content": "bfea30596fb453940f38ede9bf8286715490c9e8881b0e81470fb6386192218083b11b20d159b46b44a7c909b67e5ba4" + }, + { + "alg": "SHA3-256", + "content": "29d04fd72563cb466af8343968a08220214033cb2f1fb0f1f879cc08eed83e4e" + }, + { + "alg": "SHA3-512", + "content": "1e229d8c063501ed122def7bd1ffb13bdde74e0632010e5950d754106f5caeabe67d93497708364c533b0292bafbefff714922846bb54330774ab261a58d30c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-core", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.51.0" + }, + { + "bom-ref": "pkg:maven/io.projectreactor/reactor-core@3.6.12?type=jar", + "description": "Non-Blocking Reactive Foundation for the JVM", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactor/reactor-core" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactor/reactor-core/issues" + }, + { + "type": "vcs", + "url": "https://github.com/reactor/reactor-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235050" + } + ], + "group": "io.projectreactor", + "hashes": [ + { + "alg": "MD5", + "content": "42756f67947c4b499468a03a98ebf704" + }, + { + "alg": "SHA-1", + "content": "03c6a9e0d8a2b6de4173caea91b029b8d9e8562e" + }, + { + "alg": "SHA-256", + "content": "2a032f1151ab88151743c1ee561535a0f70cca1ecbb1e6a50a2cf171e926ceaf" + }, + { + "alg": "SHA-512", + "content": "373ac30c2a571dd8a902f552030576a8e094f1e53533ff12544416cbd4d016387b24903a935aacae326b5d9ffcb430ffbdaa029afb59156303bfbf83640a7ade" + }, + { + "alg": "SHA-384", + "content": "bd53f0ec08bf29b620c5b0011170883da456f181ba2956fa8fe1cb446a60d14e04cadba8bd505c690026ab4bbfb5244b" + }, + { + "alg": "SHA3-384", + "content": "2f25683af7903ae543820ece8eaa918b25781b5e6526aa9eedf38e40e90ee98e94e5cdcedc989cc6bd2b7d52172341a3" + }, + { + "alg": "SHA3-256", + "content": "175abd8c140516bb30b1e84570d49bd42df1001baba9f9bc75bd2bb270b40dca" + }, + { + "alg": "SHA3-512", + "content": "8cde28ae0ab8eb87ac6404a4406ead462925f6bf766ada452479baa53b1ec34a266781df8c839a218357334dc2ea3391af53ffcdb006e9c2c03487813c812840" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "reactor-core", + "publisher": "reactor", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.6.12?type=jar", + "scope": "required", + "type": "library", + "version": "3.6.12" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-xml@1.1.0?type=jar", + "description": "This package provides interfaces for reading and writing XML.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864956" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "402c903f57df0c51bd9b31ceea49261b" + }, + { + "alg": "SHA-1", + "content": "8218a00c07f9f66d5dc7ae2ba613da6890867497" + }, + { + "alg": "SHA-256", + "content": "1006208324a08dadd5463ad2edfa3057a1ec3adee9d79c3ca00b14ef2f66cbce" + }, + { + "alg": "SHA-512", + "content": "1d0c3d4830a27f2e3920c420b6c71a6750e15c83d2d5555f482b6389d429c49adc00e64d6c6184778547b3aba7836aec0f7511d8cd524e1e4db31e2455560929" + }, + { + "alg": "SHA-384", + "content": "7036ae3444f8dc3b4e3e83dfd6004ee2dc303d23a0e8e67a3f5e3e23edb41b7a7ba5a97413de7f265bce1094e897845a" + }, + { + "alg": "SHA3-384", + "content": "4d8d131c66406dee3113607bfc93c302f18e2f1503de0426d4863a163a73ab5286868c6546188135b18e754eea45082b" + }, + { + "alg": "SHA3-256", + "content": "5cc674d7dc82d166d62d4d21a4cd1bca77be917a805aa4a84ea10e6727f7c918" + }, + { + "alg": "SHA3-512", + "content": "55a6a90d01c6b701c98f4aca94a81b8449c8201558b3f1f413b115b04e1bcede9711874460d54e9627f5120562e1c5bb23f74e498d89eb2a3742fc96fbe5d98f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-xml", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-xml@1.1.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.0" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-core-amqp@2.9.8?type=jar", + "description": "This package contains core types for Azure Java AMQP clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864917" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "867f65f52f25d0242e39ae23ee06ff68" + }, + { + "alg": "SHA-1", + "content": "48afda02fdef1bccb3609a374d66eada81ab3788" + }, + { + "alg": "SHA-256", + "content": "2492ae5efc06de7787abd79b37a002960032e2b92adeaf168c8069cec220b010" + }, + { + "alg": "SHA-512", + "content": "5e463a23bd5874aedc71121c30c2657394eebe83f79a3ff4962fe0db3186152d9cd35a3cbc8e5af76b7b086a54563cf3ad0b80ff2442c444b7a67f3c33a30a01" + }, + { + "alg": "SHA-384", + "content": "8b12e4618fcc18b01e26f87a0f4f0812a29707e13cd9ba5005eeb5a907b564f259c991da6ffc65de46c24559a21845c2" + }, + { + "alg": "SHA3-384", + "content": "fc08518198c186a33f9369a650181f80abca5e8fd0715ed357d043687620e7b3b059a4156a1780de73e9c314971a5f79" + }, + { + "alg": "SHA3-256", + "content": "8c144b9cf31a0d7cd9cb802f7017780a8bf911d37c35b093576fda4627036f94" + }, + { + "alg": "SHA3-512", + "content": "aecc42645ea6e58edb1cbb79f4f89a75b9c55cf973595e3dbf487bc4e82dff0b42d8353817bbbe1c3e65b5d4a31da72c7bef6f651c9d4edfa575834986af67df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-core-amqp", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-core-amqp@2.9.8?type=jar", + "scope": "required", + "type": "library", + "version": "2.9.8" + }, + { + "bom-ref": "pkg:maven/com.microsoft.azure/qpid-proton-j-extensions@1.2.5?type=jar", + "description": "Extensions on Apache Proton-J library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/qpid-proton-j-extensions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/qpid-proton-j-extensions/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/qpid-proton-j-extensions" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12692055" + } + ], + "group": "com.microsoft.azure", + "hashes": [ + { + "alg": "MD5", + "content": "14783e02858a0708fa6a2ca2ee4dd4fd" + }, + { + "alg": "SHA-1", + "content": "eb92dc0f7d2a1c85f4a2ea10149c4ce8580eb40e" + }, + { + "alg": "SHA-256", + "content": "8fd314b4d70f9a6169aca513a07bd82ca7444ceb1e80e6139a49240c4b2b08cd" + }, + { + "alg": "SHA-512", + "content": "538462585658ade14c8760d2e128bd7fedac6204aefa777c50d433abfb1441e1b9759746cd33761fefcfe1f1f948295ce713da34db9548460400c520edd94048" + }, + { + "alg": "SHA-384", + "content": "e25ecc6f5cb93e27a8abe965028ba87f8b40683549f6515f3e5e6fc22b7be8f7b9bc2f790883000d054d3fd282a7f77a" + }, + { + "alg": "SHA3-384", + "content": "28548b79c67141995b674b8cafb882bd3a1fc6190b59b78ca0e6e149656bec3d7b7ce8b17fd5445478c08b7764c0739b" + }, + { + "alg": "SHA3-256", + "content": "036e4c1b077432e7ee75042fd73388f797e9724de0cc8eba88f0abafcd8d5f8a" + }, + { + "alg": "SHA3-512", + "content": "dbac454e7469e812f81c164ec5f9cf5de4d42c817f1aa179499789b141550128dc9e70e238907f5dbcaae859e767d0c38635c3a0b826e72f7e4148ecf6222332" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "qpid-proton-j-extensions", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.microsoft.azure/qpid-proton-j-extensions@1.2.5?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.5" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar", + "description": "This package contains the Netty HTTP client plugin for azure-core.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864919" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "f74c91262386d6c57c7050ea304a5096" + }, + { + "alg": "SHA-1", + "content": "03b5bd5f5c16eea71f130119dbfb1fe5239f806a" + }, + { + "alg": "SHA-256", + "content": "18e9932c0aa3f42cee80fccee1907849fa9db5be40b8cffa21d1a7fc1d7457e5" + }, + { + "alg": "SHA-512", + "content": "c82b80abaf6cd27cf2b9d697da28539944d37d8ac972bf734afb4b8427b5ccdef38fc85ee6684eb7f6fd49fddfa33c991ebf1f7d1efd2eaf2b68d5003d05af80" + }, + { + "alg": "SHA-384", + "content": "b57e40954645568fd28dc8327e1eef5af8a470454065417361613f2b92753f057b2badb39a765d044356a8d3036aeabc" + }, + { + "alg": "SHA3-384", + "content": "20a99e66f083b55fd1a85e3b8fc2c672809c1502bc4bd3dcb211443a825124b71f6ca8758a310cb192c8980fcec76e93" + }, + { + "alg": "SHA3-256", + "content": "c32153909f5f5d97b176c5254476296a7e039406bb97a930110ccc32ce14c2d3" + }, + { + "alg": "SHA3-512", + "content": "9997ed312a964432b207e45ae34aebe572a484b4708c901ba1cbce8d9cc908d4f4d81b9d32e967ab66e429fe0db0ec5b9ed37b8d2ff404b7da48ff3c87682925" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-core-http-netty", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar", + "scope": "required", + "type": "library", + "version": "1.15.3" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is statically linked to BoringSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727038" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "bb8bb98d5574acefeebbce3f9a1efaee" + }, + { + "alg": "SHA-1", + "content": "7b0abf028c27ce6ad0c17a443a13f175fb4eda27" + }, + { + "alg": "SHA-256", + "content": "df215103b6082caceef6b83ed5bbf61d2072688b8b248e9d86cc0bbdb785b5e4" + }, + { + "alg": "SHA-512", + "content": "dc28818057cbd6a32c5dae0b5c43082dc781523fcbbc3fc9bf48f61e7f4a9c4bfff543dc98184842ae563de8638d267b7dad3649b6c2d1c6fa509cecd6923df1" + }, + { + "alg": "SHA-384", + "content": "c749d560ba7e4da80bc16deb30b9c14bb81b5ebd53ef8da2d96548b1e00474aec975c39bf86945b2780c70afe7d01793" + }, + { + "alg": "SHA3-384", + "content": "a8123786cd77b89891fc42726563d59991c9bc6797d132274227f16d149ede6eef904bcfd710522f0755bafbc3b1b429" + }, + { + "alg": "SHA3-256", + "content": "58329478517d3256c663d8b7bebf085ced47e175d4738c1fd6c278c172df1c5e" + }, + { + "alg": "SHA3-512", + "content": "e3f6d400f3225d07834c774ef97b3b747ab59d9fb6947d2513a694bbe20868e15e7523ee268ba5911721fcb6c40194a2ae3f7ddb38f8ce838c72136ebdce9a07" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-boringssl-static", + "purl": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.66.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-classes@2.0.66.Final-redhat-00001?type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is dynamically linked to OpenSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-classes/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-classes" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12761663" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCIV4TRJTEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j8-mvn3.6.3-netty-tcnative:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "d2c858226007f48e13c411cb84a32a26" + }, + { + "alg": "SHA-1", + "content": "9da6a4ac18f7df1d07d63018f7cd3c676f595a95" + }, + { + "alg": "SHA-256", + "content": "967cbb0da5670fab723ff330a32b2aea0fa224eb7ff571cade75b8ab825a5f15" + }, + { + "alg": "SHA-512", + "content": "0a791c3f515146056053727eb278326459dc3514b63efa75367e37010ca4ed1b3c5988b03ce31b80c0efdaecd6e0536be466497a093246324ccac3b541e68a5c" + }, + { + "alg": "SHA-384", + "content": "f00f1048a8a2c39278e0e69aead470516e33d4d8fdb3c986c05625c1e9d4eb335043baaf4b7a1cc1e3f5d9d484ab56c5" + }, + { + "alg": "SHA3-384", + "content": "1b623d3dc1f928729b37d53c137d5d1523187b77a596187912442bb4210f28e7582c0c9d0f8e8f210fb758d9ae6f11b4" + }, + { + "alg": "SHA3-256", + "content": "1dc5cad9865a8309ece2fb02c26f6911ef6d2bc01fecbf477a445232fca04b62" + }, + { + "alg": "SHA3-512", + "content": "0cd2ee6617ffa1df67011a7fad41815a7b2605858604d61d4edc41b0e484ad5f1296c132f497daf4ec5346b9a1437c222eb095bb3105e5f82213ddc3557b2050" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-classes", + "pedigree": { + "commits": [ + { + "uid": "4efb8f11e49d41e1fd455ef1a2df4935530ea67e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty-tcnative.git#2.0.66.Final-redhat-00001" + }, + { + "uid": "43e3e40959089b4f2d88888911c5621ec5a9b616", + "url": "https://github.com/netty/netty-tcnative.git#netty-tcnative-parent-2.0.66.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-tcnative-classes@2.0.66.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.0.66.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-x86_64&type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is statically linked to BoringSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727040" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "7f444618d30644a35cb84a88937f59f6" + }, + { + "alg": "SHA-1", + "content": "4b7df2612a32f007a40fbefb792259c482c1b0c0" + }, + { + "alg": "SHA-256", + "content": "407547388ead01c371ae1de7616fa9ce8bc26aa4b180aa5f0452e23ecc02a8f1" + }, + { + "alg": "SHA-512", + "content": "e732fd76324e62a369c02d4ffba8a30f61fee69571cd145e36019ab568a9e38916d4d2b5e24b83203b9ac7dbfb86d70a1ab923e798261c17f951aa8ed047fb61" + }, + { + "alg": "SHA-384", + "content": "d16c161fdcf1a0c6cf1137a23bea92225ff9b64adcaa8d8aae33ff5a462ed28d9921c0c45172384072a050fd278e6f7e" + }, + { + "alg": "SHA3-384", + "content": "7a9c0ec317a7fd39fa3ef2f1882bac94b2bbe0aeae69c0020badb5cd05ff57b8a5d4ca4b2d0dfcde0db3e1d8d4ad8aab" + }, + { + "alg": "SHA3-256", + "content": "29f2a2ff71775ccfd22424268745d8b1cb1059576300749de57137c685f4ed4f" + }, + { + "alg": "SHA3-512", + "content": "0dd145b1887c8fb3a56896a7b0ee6881457c134e6886e8938bcda88414a3e62317c71626a432bf2a01a2cb903e9e5e2190a5e5278ce2025cb931340805b8d9d8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-boringssl-static", + "purl": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-x86_64&type=jar", + "scope": "required", + "type": "library", + "version": "2.0.66.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-aarch_64&type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is statically linked to BoringSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727039" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "bb851f1f0c9867bd5a8a6556b2257a03" + }, + { + "alg": "SHA-1", + "content": "1c24df246b61e944bfe3267c955c52305273075e" + }, + { + "alg": "SHA-256", + "content": "0c18e0f8c70d801f1711ca9fef1ef9bdd5f9b9afb43292f439459ee780d758b6" + }, + { + "alg": "SHA-512", + "content": "ae0e01ee52fe4a0a37ed9961a28e00353268c2f1115cd0654ccc261316e2ce6607373ba4d0d10b57c3d2375b068b634b79121f432c35863c6c14e8e9a61c385f" + }, + { + "alg": "SHA-384", + "content": "1526d94a57dea406d278efeae25b5350d056eba853a1f9b60afd472f3f63e4b43dbb26dd020f933e1198f2b5b577c607" + }, + { + "alg": "SHA3-384", + "content": "fa8452656d65273cd726b28cd2173696216f783483d2678f29b71f3edd4df2bc920ac60a0a86d20b898e1b474eead9ea" + }, + { + "alg": "SHA3-256", + "content": "c71e980b07f75afdc988f3d9db31e096fe7e9ce8bfe7eda1763bc5d6a828cc7b" + }, + { + "alg": "SHA3-512", + "content": "6f39a5c2ff19310ba667de75bfbe2fe62f1cf88be27af3e825cad2ad7f0446689274a4dc795882e376a7588c7d2920d4036e4aae3435c2f818778f2f67eba185" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-boringssl-static", + "purl": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-aarch_64&type=jar", + "scope": "required", + "type": "library", + "version": "2.0.66.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-x86_64&type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is statically linked to BoringSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727042" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "b5627921866bd47dd70dd50c9d74f83c" + }, + { + "alg": "SHA-1", + "content": "a8c8846b8ca8e06e8d9fce418d671dda11cf6761" + }, + { + "alg": "SHA-256", + "content": "a34307997449310bcf327c42c46e2db0067c2adf3d66a19fe18e0fd9981fe162" + }, + { + "alg": "SHA-512", + "content": "d4ddedc15f89b5b5d5ab9ee36687022a87471beeca2d6744714b55501af3f639ab8acd5344e7a05fccb3d43c733865a4e497ac3ddfa738ef7b1c76781dbd0aaf" + }, + { + "alg": "SHA-384", + "content": "6a48a01a1a0c8ac39748b350632ca0a83c1ddb913318fda11ef34f8d220ac2bf9dda574e70f5da4b81fc7ee5d1c3cb03" + }, + { + "alg": "SHA3-384", + "content": "2e8f169e75c6efd79acdb52a074a8e3837e7125b9bc088a5d6b1ecdf951fe8c24ffc5c6a115a6792d901462094aa95ba" + }, + { + "alg": "SHA3-256", + "content": "1a473b1da9ddba87af01a31f5f56ba1ee0e62a8f239081b5ba833f2d4e6b0e81" + }, + { + "alg": "SHA3-512", + "content": "f167d4999b1a59ed2f764c557f369fdd851b674fdfd63738ebb542079ae0ad9dc375820ea3376da7c79d917b8ee0dc3052bc85e516ed5d3c86f18f66ad342da2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-boringssl-static", + "purl": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-x86_64&type=jar", + "scope": "required", + "type": "library", + "version": "2.0.66.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-aarch_64&type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is statically linked to BoringSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727041" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "4441722abc53e09574e6c82813656d1e" + }, + { + "alg": "SHA-1", + "content": "f9087c62033e3590ff65f1eac790c61e7a143b6b" + }, + { + "alg": "SHA-256", + "content": "3cf31a82c0d2c79b48050f02a60d08e9a17db00759ca1f7920cd35d842c7f95e" + }, + { + "alg": "SHA-512", + "content": "3342dafa064b43ebbd11345be1dbe1f9c649c468f398dba040ad88e0983abf90c3e915e3e8d740b05e3600b4775797d15c8a903f2d1049423171fac015dbf7a1" + }, + { + "alg": "SHA-384", + "content": "ab126a84ad9ad4c7d217c4f5b2dbd31bcf91abd32c6ab0330064d4edea6576219c378b5eef29a9e215b7da776be41bb1" + }, + { + "alg": "SHA3-384", + "content": "d14ff4e5dc54d178aa027306cdb9710b2fe8b61043f3e7bfcc32031af824848f1fb8345b0a12f399f6891487890b24d9" + }, + { + "alg": "SHA3-256", + "content": "da1a0b482d456b0abae6247e2882ce615bdd19b68dfd33e57c873c832c1e9fa3" + }, + { + "alg": "SHA3-512", + "content": "55e9e9257a2ed2fc55980ad5e234977f9852306ca3a6e09a6a72d54a866f1093cb54be3d566da30ce6fccc442a36f358b09869a34062944f6646c4891198144c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-boringssl-static", + "purl": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-aarch_64&type=jar", + "scope": "required", + "type": "library", + "version": "2.0.66.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=windows-x86_64&type=jar", + "description": "A Mavenized fork of Tomcat Native which incorporates various patches. This artifact is statically linked to BoringSSL and Apache APR.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727043" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "9281b3e1a91022e690f687bed5ea36b5" + }, + { + "alg": "SHA-1", + "content": "67a59e4a561b1e1035f352a400c58efa3f4892cf" + }, + { + "alg": "SHA-256", + "content": "4f5a5665d3d8c4b2d5ffc40a0c4b07f94399b7d0a4ee01966df0bfc6f49d4524" + }, + { + "alg": "SHA-512", + "content": "df455b4873e6c49b5de4a5a614809fe880f5b4ff20719a91a11474ec7ac24fe63eb71346be2f5953a18c08f8b0acfdba8ffe82e101ea69ce19dd131d11710984" + }, + { + "alg": "SHA-384", + "content": "e145e5cc674f61869a9fde78af2218a8a6607533fdbe9c1b02c16982a810e55a2822c3f9679ac6ffea1b637d3a17b1d4" + }, + { + "alg": "SHA3-384", + "content": "4861c9b03c17716707f7772c64da7104b64db318c84cf4c77ca51c90d8cea9b2f9a3f188466258f9649523956926a10d" + }, + { + "alg": "SHA3-256", + "content": "fb8c090db48a907229d5013a418cda436368c991257defbd30f4c4df05ed3c60" + }, + { + "alg": "SHA3-512", + "content": "aa4fefe14774746976fbe20080ac699569f75a641f918a49d41e45bf65cc2bf74d40b0bbbcc55cac56c24f2785db794458727e3e03676098e67e4100da41d8d0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-tcnative-boringssl-static", + "purl": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=windows-x86_64&type=jar", + "scope": "required", + "type": "library", + "version": "2.0.66.Final" + }, + { + "bom-ref": "pkg:maven/io.projectreactor.netty/reactor-netty-http@1.1.22?type=jar", + "description": "HTTP functionality for the Reactor Netty library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactor/reactor-netty" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactor/reactor-netty/issues" + }, + { + "type": "vcs", + "url": "https://github.com/reactor/reactor-netty" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865615" + } + ], + "group": "io.projectreactor.netty", + "hashes": [ + { + "alg": "MD5", + "content": "0a7b1d46c4aee43cf3551d19ce48849b" + }, + { + "alg": "SHA-1", + "content": "2faf64b3822b0512f15d72a325e2826eb8564413" + }, + { + "alg": "SHA-256", + "content": "55aeafc497b5a88eed3c6c88265c2d7b8f77fc05d5da58da4857a43572ac1dae" + }, + { + "alg": "SHA-512", + "content": "15a907846fd58466c1c0e189908b9b3136caf9c6faac50f040b1d3976d3dd692a19aaa5c0a6979c773055b38a7d0467ea087fcdc917e9f51fd496623684954e9" + }, + { + "alg": "SHA-384", + "content": "bbc36bb58c7a74608754e71ace43232fc0f79e11af029b6a7206edc6154d3ec637353f32e7179090dab913b72865f220" + }, + { + "alg": "SHA3-384", + "content": "3e469cf51c83161ceae3602d9199b8f3f48b475ff825d47a08519905d58322bfc3dc5eb6631136d9c8650a761e1d0fd1" + }, + { + "alg": "SHA3-256", + "content": "bdf549b672e0977d29aa1d5b2e2165320be03e90314ea50044bea0798b2bf747" + }, + { + "alg": "SHA3-512", + "content": "93ce197f73c972f1f08760e4719638279b86d618acb2dee7ba8ca503b0379ff3a1c541dc19712485227929e56904bbc7ed432058ba3ff00464280de8f10264ae" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "reactor-netty-http", + "publisher": "reactor", + "purl": "pkg:maven/io.projectreactor.netty/reactor-netty-http@1.1.22?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.22" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-resolver-dns-native-macos@4.1.114.Final?classifier=osx-x86_64&type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-resolver-dns-native-macos/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-resolver-dns-native-macos" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13117023" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "387323f307825288697862bbaf0e8697" + }, + { + "alg": "SHA-1", + "content": "243567097d4d6f0572937d57df94107a1f36cdc0" + }, + { + "alg": "SHA-256", + "content": "a8ccb464f93d10bd70c0b1fbc96835cfa234623f353f880edc7a76d3115509a4" + }, + { + "alg": "SHA-512", + "content": "1ed595cc3e7b5d3102daf090276f8f6df27af742c0ba91d3772323f50a3243ce08f3b3fd0bd2c16d578fd4ca6d3012146de9b5db9feaea463ec45cc9b772ba30" + }, + { + "alg": "SHA-384", + "content": "28f6f72145536187fa6d34bb5de8dc02360764ef2d166063b870da1668de947897a625057b7756ca5de2d39bcbcc26b6" + }, + { + "alg": "SHA3-384", + "content": "43039d83f02e1c901a5e5426d316da5990c3a1addbad6297380644997c43ed68683472af28df5f5ca41cff28be45adf3" + }, + { + "alg": "SHA3-256", + "content": "b9fceb7ec7c334e10d8d2a70599a84e22f0cf47ae6caf781a2a4f5632136abad" + }, + { + "alg": "SHA3-512", + "content": "150d8ed40a1254c1c84861b7110592e533eee5526cc88d4ec7ee91d9b341d9cdd81b822bb937ba742f7936630a596318d47197cbca1bf0eb85a4e36502e7d510" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-resolver-dns-native-macos", + "publisher": "The Netty Project", + "purl": "pkg:maven/io.netty/netty-resolver-dns-native-macos@4.1.114.Final?classifier=osx-x86_64&type=jar", + "scope": "required", + "type": "library", + "version": "4.1.114.Final" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-resolver-dns-classes-macos@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-resolver-dns-classes-macos/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-resolver-dns-classes-macos" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076256" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "ea420a9a1b3f0828ff653922124a2a50" + }, + { + "alg": "SHA-1", + "content": "ad72f08f8c17e711517e9d98a022342bce6d0313" + }, + { + "alg": "SHA-256", + "content": "cacf0c067e4d07cbdbcfedd3c75148983c2f1e1d9969aa595c6d5f98cbbb1983" + }, + { + "alg": "SHA-512", + "content": "fad780af4d04280dd2888ad6e5c3670be763e08a3c31fd3d0a4f6ff854041a5e4ff7f73573d3e6af5f0eb93ad4cb60a970fd3147c78d36c94d0a999fb21f67d7" + }, + { + "alg": "SHA-384", + "content": "5333e8bf8c6c7c8628ef461eb5342576c8464b2a2b7ec3300021b68cba289eea46b5b51f2f4462f38b9c153bc13652c0" + }, + { + "alg": "SHA3-384", + "content": "650edea4f456e7291d81a84ff26a2d42eaab6beb043717ef0d36374dae47633a366364caba45ebbfc9a8fef5e1ce32dd" + }, + { + "alg": "SHA3-256", + "content": "1bc39ac7fb3af61ab8118e97b7561499c2b5ec68bce624ec4fb639274d4181b0" + }, + { + "alg": "SHA3-512", + "content": "70b6393dd2820b75b0be2fbdb3d72645ea37a44c0be0615fb127dca2542e7195acbef6c822cf9683d8ff46727e69293a70f4cc434d34d5abe7c74af4f1bdbeca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-resolver-dns-classes-macos", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-resolver-dns-classes-macos@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.projectreactor.netty/reactor-netty-core@1.1.24?type=jar", + "description": "Core functionality for the Reactor Netty library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactor/reactor-netty" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactor/reactor-netty/issues" + }, + { + "type": "vcs", + "url": "https://github.com/reactor/reactor-netty" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235048" + } + ], + "group": "io.projectreactor.netty", + "hashes": [ + { + "alg": "MD5", + "content": "9e340636b345d43f0653bc06db747f4c" + }, + { + "alg": "SHA-1", + "content": "a57b9cb6da0d298ad05e2563183060351288018f" + }, + { + "alg": "SHA-256", + "content": "e796c2e2acd3e30678d74a80f92788e8ee50877fb535e70d6c8c7b5f98227071" + }, + { + "alg": "SHA-512", + "content": "079ce8e13055faeba5172ab9f7b56df72f621b606d7fc33c6f707b1482ab84cfefdec4124b896eaef88800cc934d2a0c9e53d5952664d368c28d384385c0e222" + }, + { + "alg": "SHA-384", + "content": "8d520e807b2e4ba7f4051cef351b86b0f155abd382fb958fecc0f34a26b70ffc50f80c098f139bf38b28037d82b9c1ca" + }, + { + "alg": "SHA3-384", + "content": "0b3af5858e4683474295fb25e9122a239ae42183a806e6b961dfb40da2232f97dfff7dcc4626115768b0cac51cd59284" + }, + { + "alg": "SHA3-256", + "content": "c1c1ac6c50e5f4df341a3aa318ee812d855b61110228421322e92279cb2873b7" + }, + { + "alg": "SHA3-512", + "content": "160ec46d615cb38b3827744108966f4b7789884dd9d8cc5677185373e971c5b0408fd12db60ae86a5afa7fe00e3e8d7e57257ff68c6831e8501679eb06e20ebe" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "reactor-netty-core", + "publisher": "reactor", + "purl": "pkg:maven/io.projectreactor.netty/reactor-netty-core@1.1.24?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.24" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-identity@1.13.2?type=jar", + "description": "This module contains client library for Microsoft Azure Identity.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/azure-sdk-for-java/sdk/identity/azure-identity" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864925" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "4861abe21dd55d60156e21871885ca29" + }, + { + "alg": "SHA-1", + "content": "50a1daef3eb5c6ab2e1351a3e3f5a7649a8fe464" + }, + { + "alg": "SHA-256", + "content": "f00ebc38b1dcf75a35129b8b0ad434514c84fd310c7afaf12824bd04e590f243" + }, + { + "alg": "SHA-512", + "content": "1f8a9c44d8667e1b9b7906f4b533fc6bcd47c48e6e7e7cfd00ea330b2e183d58dfe99da1077d5d7b53cfb87f12d809bb573ad9199c0aa108d038aad7a8c6a64b" + }, + { + "alg": "SHA-384", + "content": "1f45c3fab1fc2afb5cb75379ebeac2f4bcef2c0faf7c2096b3129a1caddd9f51e2b045a139e0bd8c2224d7793b32b563" + }, + { + "alg": "SHA3-384", + "content": "2d95f17e5e6d57efb6bbab4681c8fa73b190ef12b2ba60284fab90295ffd36bc96d0e1f080b44aedbd3a449de4df01f3" + }, + { + "alg": "SHA3-256", + "content": "e61b511b913053a0dcc0dc8bc1665a79bca437395b4a543f00ad568fc11b594f" + }, + { + "alg": "SHA3-512", + "content": "400ef15c15abb2e89840aa03f764848119aa4aef52c2fbb247640af0469bf684cd3157de331ae97e3e9436fb80c74f30fb778bd1c0fa798767d1d8b93c1daf33" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-identity", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-identity@1.13.2?type=jar", + "scope": "required", + "type": "library", + "version": "1.13.2" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-json@1.2.0?type=jar", + "description": "This package provides interfaces for reading and writing JSON.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864927" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "fbc930503705fd6ed47e971b7ec90a83" + }, + { + "alg": "SHA-1", + "content": "d7c1f2d7256e73df17538c296c360649757e3c5b" + }, + { + "alg": "SHA-256", + "content": "c7419ae04f668eb4dc3864cd64a6b77207abd93b9ee784f042dea7cb452840de" + }, + { + "alg": "SHA-512", + "content": "8ea69f0bd9cc252e53daef6ad036cea44d2393ee3882a872fbf1b0eada8b8c432c013aefa5d51f4192cad799ea6f1487bbd99a7396c5501495f2bd0d4fdb8b1c" + }, + { + "alg": "SHA-384", + "content": "e36e7ebfe74e8a0730d887457719b65733c1f0443f1c28bdfd19b7cf0a9dc9cfc066a59c55bf54108b10b027ce7ae8d8" + }, + { + "alg": "SHA3-384", + "content": "5a6e396d485e3dd6f2463be54135817c23c513c3def0a62a3f0785ea3d9e4e4c6236182504256a441c73a2be92eb0255" + }, + { + "alg": "SHA3-256", + "content": "349d03fca18ba6162ef41b75bef96e5a3c85a4a7d5763e438d4d36e93d0b7eea" + }, + { + "alg": "SHA3-512", + "content": "73c5d336756ed041fac34cac9d13f266cf42676a53194f41374865ba22f855c7ce0ac318ffb803e34a834d6c63a4c56bc0d20922f0472e4440ab9caab3e55814" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-json", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-json@1.2.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.0" + }, + { + "bom-ref": "pkg:maven/com.microsoft.azure/msal4j@1.17.1.redhat-00001?type=jar", + "description": "Microsoft Authentication Library for Java gives you the ability to obtain tokens from Azure AD v2 (work and school accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft identities", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AzureAD/microsoft-authentication-library-for-java" + }, + { + "type": "vcs", + "url": "https://github.com/AzureAD/microsoft-authentication-library-for-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13084507" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMJSJBS6XIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.5.4:1.0.5" + } + ], + "group": "com.microsoft.azure", + "hashes": [ + { + "alg": "MD5", + "content": "7838455463ad238fa32eb51b52740286" + }, + { + "alg": "SHA-1", + "content": "3944f1c1ea1240a8c511aa63222a2e524d19f5f5" + }, + { + "alg": "SHA-256", + "content": "9a799fa9c2079eb86f5f23681e3b0d8500927501cd27de55a11a866840526262" + }, + { + "alg": "SHA-512", + "content": "e14896f712075c2e717a1fda60d703d6dc13fc8fe43a7f27406bbd1349e5d28a60b81b38f9ef96834a94d6ad74d8b91197adde2cb48a9b17b3d51449f249604b" + }, + { + "alg": "SHA-384", + "content": "417871c4deff4d6656c4a641cda52e60350ce4da64ae43f409172e95a5596fcf5e016a9dcecf4836cd4d73b9d7e9e9a3" + }, + { + "alg": "SHA3-384", + "content": "911372c5f18fda5edc5a1948ed3af7148e30d4964395ef237a99b3cb021b4768b114ae949265365904bab6384d432e35" + }, + { + "alg": "SHA3-256", + "content": "ae1881385aca24a0603160dafe6b2d7209c2bd979a52298f7e31e510efbb79a1" + }, + { + "alg": "SHA3-512", + "content": "ace07e49d5ed3d6798c2b78645a5020b54b73c0f9724d3b5aa694e948cb4f5635921af034ad88be887a05672b8096e316463bcc9a19da4bc246779d8361cf723" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "msal4j", + "pedigree": { + "commits": [ + { + "uid": "fde1f8ec89f6508febb8adc70709756079e788ea", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/AzureAD/microsoft-authentication-library-for-java.git#1.0.0.redhat-00010" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.microsoft.azure/msal4j@1.17.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.17.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.nimbusds/oauth2-oidc-sdk@11.18?type=jar", + "description": "OAuth 2.0 SDK with OpenID Connection extensions for developing client and server applications.", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865413" + } + ], + "group": "com.nimbusds", + "hashes": [ + { + "alg": "MD5", + "content": "7ea0239e0e285c7625964893dcba95ec" + }, + { + "alg": "SHA-1", + "content": "07c7ec4f4066625ff07a711ad856fa04da1ff9de" + }, + { + "alg": "SHA-256", + "content": "e510e8c61c603584b7a541988bb7b2e3321c2d392e4943f5e77e396d994182bc" + }, + { + "alg": "SHA-512", + "content": "3c1ccf96b250951fdf9668c91bcc7d920b7c1121e7c775fff65f377534b4f3e58548ec0def4907d4133909f7e18954c94c8c6ff1179aef183f22d1f86c8bb222" + }, + { + "alg": "SHA-384", + "content": "d3a75aceb12500525b20fc6afab2e82485721f44160b9f381695ebff053208e9aab939a9a72a09065efdb6085a9970e3" + }, + { + "alg": "SHA3-384", + "content": "812a1e54be6b815e8e476a180ca6472e50d2b8cf6e265faf4a1be6eb612fc625b09bd618ec370e58979c6d1d6ee45051" + }, + { + "alg": "SHA3-256", + "content": "bb551508e33977ce04687beb44dbb4c8bfde746d37e111e6af8eff881e05727f" + }, + { + "alg": "SHA3-512", + "content": "e8a30d10a59954974796e465055336970cdc876aae804d88e5a8c4ea711ad3a9a0edd37266867286168a2522f8285ac8c2f60f4d807a297969e4f7a742c03d15" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "oauth2-oidc-sdk", + "publisher": "Connect2id Ltd.", + "purl": "pkg:maven/com.nimbusds/oauth2-oidc-sdk@11.18?type=jar", + "scope": "required", + "type": "library", + "version": "11.18" + }, + { + "bom-ref": "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar", + "description": "A clean room implementation of the JCIP Annotations based entirely on the specification provided by the javadocs.", + "externalReferences": [ + { + "type": "website", + "url": "http://stephenc.github.com/jcip-annotations" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/stephenc/jcip-annotations/issues" + }, + { + "type": "vcs", + "url": "http://github.com/stephenc/jcip-annotations/tree/master/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/72886" + } + ], + "group": "com.github.stephenc.jcip", + "hashes": [ + { + "alg": "MD5", + "content": "d62dbfa8789378457ada685e2f614846" + }, + { + "alg": "SHA-1", + "content": "ef31541dd28ae2cefdd17c7ebf352d93e9058c63" + }, + { + "alg": "SHA-256", + "content": "4fccff8382aafc589962c4edb262f6aa595e34f1e11e61057d1c6a96e8fc7323" + }, + { + "alg": "SHA-512", + "content": "02fcd16a30d0e68b3e9e4899731181c6abb7117baa15c096ca940e01dde08bb86101cbeae552c497f8a90d923b5fa2f2b6f3850baf8dc94dbd399887924a9069" + }, + { + "alg": "SHA-384", + "content": "88b0ecfde391a3d8468349c70e1539569768dfac3233dfe0b4660904df04e6c6bf26ed9c0784b9b22c122c3448e2a6b6" + }, + { + "alg": "SHA3-384", + "content": "487b53f48b55b98a61ae60abedc43543887944867aa6bcb78d5ed46e2d0d7c19510c5fcadc362d939313feafdcfc55e1" + }, + { + "alg": "SHA3-256", + "content": "3e79c8f58865d2d58a5311a8bb45772007f07e7f3ed2780784d1e4382dc934d0" + }, + { + "alg": "SHA3-512", + "content": "ff32665e1b6d8176ccc7e8c836ca7343c2603dab053e42d79b4258d51a14ff63933c67d24034169ac91e11ebda21cc2c84a2a540072e656d2a8e6fcea7808421" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jcip-annotations", + "purl": "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar", + "scope": "required", + "type": "library", + "version": "1.0-1" + }, + { + "bom-ref": "pkg:maven/com.nimbusds/content-type@2.3?type=jar", + "description": "Java library for Content (Media) Type representation", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/connect2id/nimbus-content-type" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/connect2id/nimbus-content-type" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12690360" + } + ], + "group": "com.nimbusds", + "hashes": [ + { + "alg": "MD5", + "content": "f0fc0d6be73e838863e2197c03a27c3f" + }, + { + "alg": "SHA-1", + "content": "e3aa0be212d7a42839a8f3f506f5b990bcce0222" + }, + { + "alg": "SHA-256", + "content": "60349793e006fba96b532cb0c21e10e969fe0db8d87f91c3b9eaf82ba2998895" + }, + { + "alg": "SHA-512", + "content": "58f7fe3b4303cecd6eac73c3345af71536479ce4bc38c88153bdcf6176a7cf5a0875420ea4a6024b4e734b78de08a8e544014b435cb63416c759b957ad3818e4" + }, + { + "alg": "SHA-384", + "content": "9dbe31f543aaf807093fe1dd18a0ed33346252e2f6fce598e1b193b9d73fcebf79608fce6a620ede8ea7adf45f1a7422" + }, + { + "alg": "SHA3-384", + "content": "67b8b5d051230739ee85678006758450cd6510c5fb9a6b3134d43f644c2d70bc6dc3cff6133b132b5b158a1f346880a9" + }, + { + "alg": "SHA3-256", + "content": "b8046b3dd12321400b4643ff0c47ea5c1e77d6252177bdd8be6f0e0b234c80bf" + }, + { + "alg": "SHA3-512", + "content": "734a6a5a383aac8dcfaca09c8e37637f74334ce2d5c050b519277ad7c20f065fad44b5a6417cdc32d6cd43f80c0e1e0c37d9daa9279651facb6c38cb88376396" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "content-type", + "publisher": "Connect2id Ltd.", + "purl": "pkg:maven/com.nimbusds/content-type@2.3?type=jar", + "scope": "required", + "type": "library", + "version": "2.3" + }, + { + "bom-ref": "pkg:maven/com.nimbusds/lang-tag@1.7?type=jar", + "description": "Java implementation of \"Tags for Identifying Languages\" (RFC 5646)", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/connect2id/nimbus-language-tags" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/connect2id/nimbus-language-tags.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9981910" + } + ], + "group": "com.nimbusds", + "hashes": [ + { + "alg": "MD5", + "content": "31b8a4f76fdbf21f1d667f9d6618e0b2" + }, + { + "alg": "SHA-1", + "content": "97c73ecd70bc7e8eefb26c5eea84f251a63f1031" + }, + { + "alg": "SHA-256", + "content": "e8c1c594e2425bdbea2d860de55c69b69fc5d59454452449a0f0913c2a5b8a31" + }, + { + "alg": "SHA-512", + "content": "494267766c974ce16a99cb221953edc91fde8db0c920230758ecea0ea9d3006e95d86ad46f7a9d61b810d85b0fa6da9a3ce2b507cdbe4be320c499eaea93666b" + }, + { + "alg": "SHA-384", + "content": "fdc2cde39a1b07a2542cbc07222afd6292ae19cb1f9ae008476f7ec1b8ebe1e3e84aca08e47e1ef81887a23ac5267d00" + }, + { + "alg": "SHA3-384", + "content": "b0e673087533f60173a11a55b0fde554c0830e7b3b6609e1ea6546de19fc9a97fbfe6eee73580d09b2de66989d0603c7" + }, + { + "alg": "SHA3-256", + "content": "ea208d4eb55212ce9835a9be60396861b0fc33f4161efee3736c3e7159acb9f7" + }, + { + "alg": "SHA3-512", + "content": "450f819981d73711c30d838261ff55a7f1988c8b965c786708dc27fbd10a2018cfde82b8fee5d7d1022eacf085dfdabe22d9de92462eba80e2c15a116c3c73ed" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "lang-tag", + "publisher": "Connect2id Ltd.", + "purl": "pkg:maven/com.nimbusds/lang-tag@1.7?type=jar", + "scope": "required", + "type": "library", + "version": "1.7" + }, + { + "bom-ref": "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.40?type=jar", + "description": "Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/connect2id/nimbus-jose-jwt" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/connect2id/nimbus-jose-jwt" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12517430" + } + ], + "group": "com.nimbusds", + "hashes": [ + { + "alg": "MD5", + "content": "42ce81c8d034f163663d23e8bbc3638d" + }, + { + "alg": "SHA-1", + "content": "42b1dfa0360e4062951b070bac52dd8d96fd7b38" + }, + { + "alg": "SHA-256", + "content": "77128ed53756421bf59d2fc7f31554da29ea81cad8a5345977275adb7c5254c8" + }, + { + "alg": "SHA-512", + "content": "cf7b5bf6a042ddf1177d085d4d6a00b36684c10fb0a8e8db6d6d71063490bc3fa66ed45cbee12bb8258c85964a2226b53a97ee62b94e79f95e3c4aeabe3745e2" + }, + { + "alg": "SHA-384", + "content": "fd16f9d4c375305d0b818a7b6d055e6329689e63d7f4273f84a93fe785a38d5e47a2a9471ecc1009627631fd08aa93d8" + }, + { + "alg": "SHA3-384", + "content": "ae88942f397da119fa129b447d4612d82014281496021db75e4fceaebcceefd939e5e09866c27c9efeb5f186f4aff7b0" + }, + { + "alg": "SHA3-256", + "content": "63e671c32a85c27bf2ebdc8845cfc07dae44e26fcb50f4e06e6861029befc7c7" + }, + { + "alg": "SHA3-512", + "content": "68b8bc49dd7916bdb5fbd9384d787cf5190d301d7922e00e3e3129e40621dbcde24d4f7e20ce2fe170e5300e3bc547ca3dcc81a54a8c1d61cb3b5c0eb7514c78" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "nimbus-jose-jwt", + "publisher": "Connect2id Ltd.", + "purl": "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.40?type=jar", + "scope": "required", + "type": "library", + "version": "9.40" + }, + { + "bom-ref": "pkg:maven/com.microsoft.azure/msal4j-persistence-extension@1.3.0?type=jar", + "description": "Implementation of ITokenCacheAccessAspect interface defined in Java MSAL SDK (artifactId - msal4j) for persistence of token cache in platform specific secret storage: * Win - file encrypted with DPAPI * Mac - key chain * Linux - key ring", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AzureAD/microsoft-authentication-library-for-java" + }, + { + "type": "vcs", + "url": "https://github.com/AzureAD/microsoft-authentication-library-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12692051" + } + ], + "group": "com.microsoft.azure", + "hashes": [ + { + "alg": "MD5", + "content": "7bc0a0a50fd149b732e1fbec92a4b0a3" + }, + { + "alg": "SHA-1", + "content": "8a8ef1517d27a5b4de1512ef94679bdb59f210b6" + }, + { + "alg": "SHA-256", + "content": "dfc41c817fbfa76057af6ffe4379dbca6a5e16b8e87df8bdda23f371756c2d09" + }, + { + "alg": "SHA-512", + "content": "241bc14048540dfafa4829d622762dc0cc27449c17cc1a3ca3dc862158b39c2d3110fbb509248b358d7d71137f41341bc30b3a7ee947c5cba560795aa5134688" + }, + { + "alg": "SHA-384", + "content": "7a0d45afcfdcba1230e298665f61a8796fb440a6aa06b761ba52ed8532a88430558de6edd0f961b19dd52c800b53812f" + }, + { + "alg": "SHA3-384", + "content": "b0defc249784cd4cfd78b593aa892bd23c887568db72a5346e8661d261c5947cc9591a90e7e52cbacef57b37a7b0f037" + }, + { + "alg": "SHA3-256", + "content": "595a734561521dd1345ff90249dc53c8399dcc12892e88d9a436f26ca727a898" + }, + { + "alg": "SHA3-512", + "content": "3ac4348c835ea5aee11aa16707bffc36af88d0c24be2599630bbfb5c5a8f1892ecf4abeffad15bc12476f754b4287a863dd44bc87764e60b98683a09a6027298" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "msal4j-persistence-extension", + "purl": "pkg:maven/com.microsoft.azure/msal4j-persistence-extension@1.3.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.3.0" + }, + { + "bom-ref": "pkg:maven/net.java.dev.jna/jna@5.13.0?type=jar", + "description": "Java Native Access", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/java-native-access/jna" + }, + { + "type": "vcs", + "url": "https://github.com/java-native-access/jna" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11174776" + } + ], + "group": "net.java.dev.jna", + "hashes": [ + { + "alg": "MD5", + "content": "bd2e5bc6b4b020c2d9a6e17a8e9bcef1" + }, + { + "alg": "SHA-1", + "content": "1200e7ebeedbe0d10062093f32925a912020e747" + }, + { + "alg": "SHA-256", + "content": "66d4f819a062a51a1d5627bffc23fac55d1677f0e0a1feba144aabdd670a64bb" + }, + { + "alg": "SHA-512", + "content": "954b2fbf88e30597276beeceba7d0d0915248f666ea4f7df0bc6283bdb03ab92967421336e2b029a87335dcb07ec5e6af1eb5ea776a6d391727df56c16fc97e7" + }, + { + "alg": "SHA-384", + "content": "e9054151e084c41cf6c51a05ba2ec457cf8f566b79f36d069c1d30cc1c039dbc844645c7bc4122070e0bc55fad7b3041" + }, + { + "alg": "SHA3-384", + "content": "8df953e9a1e2f5d9769b4c683a04171fed3be964a1ac3c2c1ac7229d80f59ebe94e4bb36d9adbbbb425a74d205e03bc2" + }, + { + "alg": "SHA3-256", + "content": "1a9cfd09c8fc6869ae12d4bb25bfa58573fedfae8b5416473bef0329c4d2e36c" + }, + { + "alg": "SHA3-512", + "content": "daf6a64049b812264ff667d08a4966e0da1bdf627983e5bcd1b3d534ce3ab09cf2f39c8e4b448e8ca6270750be5d3110f1f3726860d904a45e519014200d806d" + } + ], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jna", + "purl": "pkg:maven/net.java.dev.jna/jna@5.13.0?type=jar", + "scope": "required", + "type": "library", + "version": "5.13.0" + }, + { + "bom-ref": "pkg:maven/net.java.dev.jna/jna-platform@5.13.0?type=jar", + "description": "Java Native Access Platform", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/java-native-access/jna" + }, + { + "type": "vcs", + "url": "https://github.com/java-native-access/jna" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11867692" + } + ], + "group": "net.java.dev.jna", + "hashes": [ + { + "alg": "MD5", + "content": "7cc7af47ad1f151faa57ef0624b2f271" + }, + { + "alg": "SHA-1", + "content": "88e9a306715e9379f3122415ef4ae759a352640d" + }, + { + "alg": "SHA-256", + "content": "474d7b88f6e97009b6ec1d98c3024dd95c23187c65dabfbc35331bcac3d173dd" + }, + { + "alg": "SHA-512", + "content": "ddfce8060983b3bf73ae939f7f77f133052aadbe4d3e9d1992f1d8bf9c7210611bf3931ea72137059bd1341a8d4d137910e843c3a52fa50526e21143319f078e" + }, + { + "alg": "SHA-384", + "content": "cb5144546ed268fdcb7f4d7daa6ea5d08d1076e3c8b92798e606c28837ca5a9bd1ac4d990ef90f9fafbb6ca9aa400e7d" + }, + { + "alg": "SHA3-384", + "content": "19bf59aff41bb8fdc19e5b42319d269bbba5b42b9f97da8e8d7be2ac8b8ebbffdada2e0c1e9cb4b8c144f24d8cda410c" + }, + { + "alg": "SHA3-256", + "content": "ea633e35cb9e7de28e971b56e3e1102c3e53c664533e00f6afc8401bb6ef9095" + }, + { + "alg": "SHA3-512", + "content": "dead0da9c98d0352de25641765e297e36bec122c7ce6c97953dc7cf32ef5b96923c8bbd444aba0d7bdd716b6a5b70e232ad0ea8f60012c18c924420c6c5360de" + } + ], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jna-platform", + "purl": "pkg:maven/net.java.dev.jna/jna-platform@5.13.0?type=jar", + "scope": "required", + "type": "library", + "version": "5.13.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-endpointdsl-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel DSL :: Endpoint DSL", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-endpointdsl-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-endpointdsl-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235046" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "284afeb0efde4517e0ba7cb7b6f7638a" + }, + { + "alg": "SHA-1", + "content": "0e17b98c356c2ce0f0d911fef47b7a98900c9d5c" + }, + { + "alg": "SHA-256", + "content": "0dfaa2033c61fd4c905165b8a8cea392f3be5066a251771f6cd01d001d4633f7" + }, + { + "alg": "SHA-512", + "content": "7bed9431e6ac180b358f774c028091c1142d28bd3f5afc4c3fc757ce6a0dc1c9fbd671a87df622aca2e0c918e7272b6ca93e0e91f6ff50859c9f5f3666748a7b" + }, + { + "alg": "SHA-384", + "content": "bc889c48fd2f7d314c5b3007a9d614a40a98b67313d8315eb5c1377e18e89ea1bb50153e8026eb99c138f75ee49eca89" + }, + { + "alg": "SHA3-384", + "content": "755f872f2ad46fa14a02296cbc54740e36080f28f54a71fea5b4e9b67256c4293784222a7a87d6a94a122d617c7160ef" + }, + { + "alg": "SHA3-256", + "content": "101f15c0aa0df57a565cb9797de3a51ebd75e3f8d5c4d3a66d7c7b0d90134d82" + }, + { + "alg": "SHA3-512", + "content": "194a89b5ffa9fc81987c7456ba54328974f78625293cd67f6cc5cda77fdbc2d6e3bdf513dc23be1b516a671bde8f1ee16ea48667021b06bd2fa55b1d4681c9df" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-endpointdsl-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-endpointdsl-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-endpointdsl@4.8.0.redhat-00017?type=jar", + "description": "The Camel Endpoint DSL", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-endpointdsl/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-endpointdsl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233833" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a8c939e950ad62be972c10378fa8b68b" + }, + { + "alg": "SHA-1", + "content": "070a650e837d3d5a960d4ed4c8d0e8814ef15cef" + }, + { + "alg": "SHA-256", + "content": "4fba964691cd0e05bbe05c3e417d7f2528a4f32ae4d25a5a17d7997af9d03b20" + }, + { + "alg": "SHA-512", + "content": "7cc1eb7073f6e5e27d52326de52df1773272e92149c6c84fec3331dcfe4e32b36eb3239eca4de71e00c20dba923f4fbae0ccef26e5fc6335f1cd5028c5d17f83" + }, + { + "alg": "SHA-384", + "content": "b4232c153b231fabff511714a811ca2c8eb3bffb38dbf3fa906b1b6f104e21e48f9bbd11cfefd0480c9dd634b95149ec" + }, + { + "alg": "SHA3-384", + "content": "cb0518df847d9da999f68983beb90177e46d0c169bacfb2355deb321af4f84b04458888c13af8774ff086e26622c21d9" + }, + { + "alg": "SHA3-256", + "content": "ded3b1f38171e2dae3e3dc2a0186f8dae13619e0ec60201aa38f908bf44c94ab" + }, + { + "alg": "SHA3-512", + "content": "d58de21f6310e3185b3c835de0180e22d407f78f738aace9a98b6abc58170d4d258def9298c0ded65943dbcf07a51de48c251f0c111bb724e96dc694dd152ec7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-endpointdsl", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-endpointdsl@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-eventhubs@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, Azure Event Hubs and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-azure/camel-example-spring-boot-azure-eventhubs" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-azure/camel-example-spring-boot-azure-eventhubs" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-azure-eventhubs", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-eventhubs@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-azure-eventhubs-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Support for Azure Eventhubs Service", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-azure-eventhubs-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-azure-eventhubs-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235025" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "16766151e530275521a9838e0604b876" + }, + { + "alg": "SHA-1", + "content": "acccf5862ae0938a12328b7af261072bce0af7d2" + }, + { + "alg": "SHA-256", + "content": "192450d617546ae3f8fbd4c5a5895ae11acde1151dbb4258eff432c9385e1600" + }, + { + "alg": "SHA-512", + "content": "6885c64af739bb758bc5b5067f79f4a4601b49c6f2f795ac3528543c942e5897475b972c4cb72dd7fe5666940be46b0becfc0f072d49ba6ed792828041a18a7a" + }, + { + "alg": "SHA-384", + "content": "5da31d44da8eb1b146c0839907310706ed2fef23c467b0c4a9a531fe0f71934cf8f2f8f62731dcc8287c82ea13ea4bec" + }, + { + "alg": "SHA3-384", + "content": "2b568e7cd321594bee0429e9875aa2aa55397e622074f648bbdf8518fc95c11af39e64050f48922191a523d6a686b17a" + }, + { + "alg": "SHA3-256", + "content": "c60ce9d0e159643c23f030db6df661533b417e78f38c324ab10b2ca18fe2774f" + }, + { + "alg": "SHA3-512", + "content": "d283e565b1ace6748269da41d0811224bc43889791c90d8c5b8cdd3fae096ed81343bf667484c2f06b9a87deaef9f79c62250f42d4921742e81956b1909da2a1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-azure-eventhubs-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-azure-eventhubs-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-azure-eventhubs@4.8.0.redhat-00017?type=jar", + "description": "Camel Azure Event Hubs Component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-azure-parent/camel-azure-eventhubs/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-azure-parent/camel-azure-eventhubs" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233722" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "627ee1bbcc5ad5cf33431a9d40ac1f99" + }, + { + "alg": "SHA-1", + "content": "7aa406a94fad83728bb90dba814d5f3dd0667d70" + }, + { + "alg": "SHA-256", + "content": "f68c34df126ff344a5196bfbe20311a9caa5b9ac2a07363f5fcbe15f3c26126f" + }, + { + "alg": "SHA-512", + "content": "e391141bb7416d22020c8955ac3735095a6bf1669a2eb111907f607783c21c54185ffb70e463626815ffdf297933310859a8353b70cd19024e92629140f3f1f2" + }, + { + "alg": "SHA-384", + "content": "3f166ca0b7938d54296e1ef90d8841591a72c53a5bd19edd17a02c14829cbc0dcfc4c24bd6e3ff834cf692430604413d" + }, + { + "alg": "SHA3-384", + "content": "3730ad4e11eecee4e16545dda7abcecc53f9c8cd56ff8234b68104cbcad0a3d8b41872ddadca8c827f541bd42d8e0986" + }, + { + "alg": "SHA3-256", + "content": "6b2a9d93ee39a30a81d794b31ca8f4474b1b87ea68894bba42a5d2f7df225585" + }, + { + "alg": "SHA3-512", + "content": "c6ee0be2c763a85bae7276752a4e9170296b7db072d1fba45734e2edb839c97c780700417ba9b10924d1525b0fa8898c698a4648f4337dd4b89bb7ca52dfd260" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-azure-eventhubs", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-azure-eventhubs@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-messaging-eventhubs@5.18.7?type=jar", + "description": "Libraries built on Microsoft Azure Event Hubs", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864931" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "97c60cac1b3639feddd07720ed60bc79" + }, + { + "alg": "SHA-1", + "content": "c8ed992e99b88a1b9b744457d865b4364fe4de8e" + }, + { + "alg": "SHA-256", + "content": "7aa75db7b5d836cbd71fdaba19db387b45c14697a6ff4c3953b8a342ddb328b6" + }, + { + "alg": "SHA-512", + "content": "fcfd9d6a68e5bc0c21e20779e55fc71f1b5417efbb3ef824703dc15fed45a4ca32508eb575a69b06e0c36af9462ec1571cf835db9579adf7d80910170becc4f3" + }, + { + "alg": "SHA-384", + "content": "2ac3f8beb2fde054d61724f6a26f96bebe44aec29f522793a47fe5ec19b07c2de67002f413b3f5ce84bd0add2aa56e92" + }, + { + "alg": "SHA3-384", + "content": "9c0dc44f4431455ff960dbeb402787086655901be7ae05e719e9e1efb971c525f461563805127b779b2564c991b28f98" + }, + { + "alg": "SHA3-256", + "content": "a772ecd8b918957d9b5a63d53f64e48b03f598e97c8d1f604aabc142db496cdd" + }, + { + "alg": "SHA3-512", + "content": "26f330ab2743ca28e66ec8197e68612f24724e29f5a56db338733b94452809f20e3802eafd3874bb55cc18a9a432dc9775f8fe734a2e59ad8de1e5d4eb11b565" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-messaging-eventhubs", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-messaging-eventhubs@5.18.7?type=jar", + "scope": "required", + "type": "library", + "version": "5.18.7" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-messaging-eventhubs-checkpointstore-blob@1.19.7?type=jar", + "description": "Library for using storing checkpoints in Storage Blobs", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864929" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "afffab4ab0f4b3c1e6ec03c75e38458a" + }, + { + "alg": "SHA-1", + "content": "37f9847cc2029cb240db577aa35831ee5b989167" + }, + { + "alg": "SHA-256", + "content": "2a3e82004424d5b07ea2aa06d2e6e1fd167f9837493a98cfd3594f3653888305" + }, + { + "alg": "SHA-512", + "content": "c6f9c82c15e78936b3b4d992dfd3904946d53dea45b1528a919f79e4011e1449d6a179940c8d5f827d34a40cbceb8d4569692615b811693b134dace0326780c3" + }, + { + "alg": "SHA-384", + "content": "e34e2c9547932b14be85261f6751a8a4457c54b8cab4d22b60571050d456be2b1a1ab1705b673ca63575afefcddbd305" + }, + { + "alg": "SHA3-384", + "content": "4dab39f7b4cb52cb9d2f606377a8ccb54de73e58841036f9522fee90261a5ef31ff9327dc8d210ecc123db108c466624" + }, + { + "alg": "SHA3-256", + "content": "2987a45afc479c786659dd687b8e338e0f6795aebbc1b2d852a5450469c0b778" + }, + { + "alg": "SHA3-512", + "content": "59fab65d3e035fb23cf8de9fc46de3e14805e0a56b3efd8e05ea1bf1e4447d09d5b138d612c2eddadeac379eb26d72333ce1a5ec3273926f4686fe87d641238c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-messaging-eventhubs-checkpointstore-blob", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-messaging-eventhubs-checkpointstore-blob@1.19.7?type=jar", + "scope": "required", + "type": "library", + "version": "1.19.7" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-storage-blob@12.27.1?type=jar", + "description": "This module contains client library for Microsoft Azure Blob Storage.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864940" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "a964b7e547204f21613e47547e6cc6c7" + }, + { + "alg": "SHA-1", + "content": "77c40850c7642c30bddb3d8d7372d1f64a0fbf39" + }, + { + "alg": "SHA-256", + "content": "31915426834400cac854f48441c168d55aa6fc054527f28f1d242a7067affd14" + }, + { + "alg": "SHA-512", + "content": "088df7f4323ad91dd7a1b4fe76e0cd8265d7297ac6c9b19ec8d1c40ad161be9e8d708778022792e463666839c6266425b4f586f404bcd1d16460e8382a257dd2" + }, + { + "alg": "SHA-384", + "content": "b79fe89238992c1f5927080980bde358449fcadf180f259f70b5b3b3eeda0a48e4f390300656e9e090556ef76a9f8c1c" + }, + { + "alg": "SHA3-384", + "content": "1a57dc6592a11aa19b319246d8546ae9e6cdd41085deb0095f1ec184c9597af2c302ad42840a79b0a292845d2f037fcb" + }, + { + "alg": "SHA3-256", + "content": "8d33ce2c12a60f86972ce345ab568836048d67d1486c13ebd3275405b92bd775" + }, + { + "alg": "SHA3-512", + "content": "e5eb79ea6211677e47cb5c7e757aa5ac2e339589381d1160f4ebce2fb7ca87c507b65dc716eed0aa19775d29b10256fc5d05c12bed8476bd7363049c80f6e12e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-storage-blob", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-storage-blob@12.27.1?type=jar", + "scope": "required", + "type": "library", + "version": "12.27.1" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-storage-common@12.26.1?type=jar", + "description": "This module contains common code based for all Microsoft Azure Storage client libraries.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864944" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "a21c56bdc0d2191d4b54b91372a8a0a7" + }, + { + "alg": "SHA-1", + "content": "68997fa67056c422f2af9ea5e8b8386f57605bd2" + }, + { + "alg": "SHA-256", + "content": "b0297ac1a9017ccd8a1e5cf41fb8d00ff0adbdd06849f6c5aafb3208708264dd" + }, + { + "alg": "SHA-512", + "content": "53b7a2a651d1a9c4d57ea8a4d68c565299be88ff2267a78ebbbd73e7e21c36d3c731cd7bed90d2b4c8a592dd432fac937480615056b030d7353734890a61c53b" + }, + { + "alg": "SHA-384", + "content": "89fbfb193e6558c8b0a70782dded01be13fd3ba2c0ef14c334183ba528b4230dbc3daefc5e21533463011f7be6442727" + }, + { + "alg": "SHA3-384", + "content": "3a57d054fda75a614316bd930ff412d6b2d08bec9e1a1219e9330168932a1bd5be2dd77d7f6d242e76522320bc5dad5f" + }, + { + "alg": "SHA3-256", + "content": "0f52fb3a82f0dd6ba23dad8f2d7d6b6c09ff0c9a63aca0ba678cf40062e7b138" + }, + { + "alg": "SHA3-512", + "content": "54c165ea07977a119dc87306d9f77e45f4ad283b9d5ab48982e88cd3df15f4aecf6d52e341fe22a563ce66953b49b3f6db4595cf8670c2a2611fbb9507ecf991" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-storage-common", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-storage-common@12.26.1?type=jar", + "scope": "required", + "type": "library", + "version": "12.26.1" + }, + { + "bom-ref": "pkg:maven/com.azure/azure-storage-internal-avro@12.12.1?type=jar", + "description": "This module contains internal use only avro parser code based for Microsoft Azure Storage client libraries.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Azure/azure-sdk-for-java" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Azure/azure-sdk-for-java/issues" + }, + { + "type": "vcs", + "url": "scm:git:https://github.com/Azure/azure-sdk-for-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864951" + } + ], + "group": "com.azure", + "hashes": [ + { + "alg": "MD5", + "content": "58de3b8692b0e2fa7fd89aee00a77d76" + }, + { + "alg": "SHA-1", + "content": "b66b79fa23cb9fe058e1301961fbd2f90afa36d9" + }, + { + "alg": "SHA-256", + "content": "b5405fb42fa93413dfb24bbdec57d1a9915810c5cda5fe27dd2fe5b27f8d8767" + }, + { + "alg": "SHA-512", + "content": "67ada45061ed70bcb37aa54ab5c619166afdeef39d62fc086603c59c5fb7bd1b7062fa19a434dee05140c54512343acf9e1ded859cd2970cf636860664beb2dd" + }, + { + "alg": "SHA-384", + "content": "6657e4772a8fabf88408336f5198b2fad9efa212e8fd152d497c4e47510f4ecdc09b564079ce3c47def2fc6673a08b04" + }, + { + "alg": "SHA3-384", + "content": "40555156d6af2287442ccafb86ec84413507310c42e59768e59405892a3307bf7e15888f19288f3447eda6251738d12a" + }, + { + "alg": "SHA3-256", + "content": "bcb81114a7b9bbe427839fba5bdb7121cea4d7147e8f9b29dd282b4d88a06578" + }, + { + "alg": "SHA3-512", + "content": "5e97456baddccf00f374b94ca114392499771d502c29a2cea5324825a5497f55f0500cbfd63a3aa9843df6f0e2f062d8bb7f1231974f904c5f94cd65ebbd4fa1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "azure-storage-internal-avro", + "publisher": "Microsoft Corporation", + "purl": "pkg:maven/com.azure/azure-storage-internal-avro@12.12.1?type=jar", + "scope": "required", + "type": "library", + "version": "12.12.1" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.17.2.redhat-00004?type=jar", + "description": "Data format extension for Jackson to offer alternative support for serializing POJOs as XML and deserializing XML as pojos.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-dataformat-xml" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-dataformat-xml/issues" + }, + { + "type": "vcs", + "url": "http://github.com/FasterXML/jackson-dataformat-xml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115846" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAO" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.dataformat", + "hashes": [ + { + "alg": "MD5", + "content": "89adf71035b98e9199b461b71cdc7758" + }, + { + "alg": "SHA-1", + "content": "07afbab68034d9e425eaba33aa2f99d84430e559" + }, + { + "alg": "SHA-256", + "content": "b52f2667463881478d049fea4d38828d2e4e40693e37b502a0ea02c74cb08d4e" + }, + { + "alg": "SHA-512", + "content": "272c76063dcd476e2106c333dc3167198408c3055a5a12e726838759bbdd4d1158451f697e53514ee83bcdcc3acac03a01ab3f6c4b9e9d59dffaf7b8e5d8a096" + }, + { + "alg": "SHA-384", + "content": "90fb5db53258fbb77e37fa0d780b73926c2246f8a60bf57111fb2ffa7082361ea31f37651eeeafecc65a17d976bc7516" + }, + { + "alg": "SHA3-384", + "content": "8e40f08a21ed5d3726081c161d5a09faf4dab0d348ff50b9d6045fab997b9a69db174c14500f8baafdf6f1893efea732" + }, + { + "alg": "SHA3-256", + "content": "9aa77bd8ee9b99b47e542d00bcf5bddadba08219db2c944256a94cf4b2bd58eb" + }, + { + "alg": "SHA3-512", + "content": "d928f1f8ad8a2f9dd409a3780f5dacbe4ae8cedcfdba93376ed1886564d7eaa73b3f23f80e7f4489c13fb56c673ff969ae25822ede9f58122f7360b217806f69" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-dataformat-xml", + "pedigree": { + "commits": [ + { + "uid": "8329a8034aca1906471be41cc49a7373e8329008", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-dataformat-xml.git#2.17.2.redhat-00004" + }, + { + "uid": "1d0d5c19f6c0d57dfe83204d3c9bc34edb3f91ec", + "url": "https://github.com/FasterXML/jackson-dataformat-xml.git#jackson-dataformat-xml-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1?type=jar", + "description": "tax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/FasterXML/stax2-api" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/stax2-api/issues" + }, + { + "type": "vcs", + "url": "http://github.com/FasterXML/stax2-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12720250" + } + ], + "group": "org.codehaus.woodstox", + "hashes": [ + { + "alg": "MD5", + "content": "af8377bc7882332e22456616a9f164f6" + }, + { + "alg": "SHA-1", + "content": "a3f7325c52240418c2ba257b103c3c550e140c83" + }, + { + "alg": "SHA-256", + "content": "678567e48b51a42c65c699f266539ad3d676d4b1a5b0ad7d89ece8b9d5772579" + }, + { + "alg": "SHA-512", + "content": "00efc5d4d17540fb180c5b20d456630a8b3262dff46676689ae916ba16f0fbd9b1a71c7badfb254faad6597f94fed1edb96f77c15f40178eaf4d8cd35cea5e8d" + }, + { + "alg": "SHA-384", + "content": "97a6a9f0cc666776e4a4f08729c303d2a602ce5c25ee633cd6c54c72f12d11e9d43634ca6ca4ef7da5973a52030384da" + }, + { + "alg": "SHA3-384", + "content": "683a1f110ab84333e7517dabe175b91d7ea2fbead2f9d02acf798c588a7508bc67580642afa8d57441bc56ce610d5b0f" + }, + { + "alg": "SHA3-256", + "content": "5e8e54209fb6b580e928e703ef11645aff1a21dfd47cca2dc0e53d0befaef09c" + }, + { + "alg": "SHA3-512", + "content": "d79338a481605c94e144c967cb7adbc6cfd06ee6a1182b5ebc8cd8ad3deedd707931e404aa197bc94d3b5a5d82a2e6dd6a2f6cc9dafc42ce3ad5061076b05199" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + } + ], + "name": "stax2-api", + "publisher": "fasterxml.com", + "purl": "pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "4.2.1" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.woodstox/woodstox-core@7.0.0?type=jar", + "description": "Woodstox is a high-performance XML processor that implements Stax (JSR-173), SAX2 and Stax2 APIs", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/woodstox" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/woodstox/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/woodstox" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864982" + } + ], + "group": "com.fasterxml.woodstox", + "hashes": [ + { + "alg": "MD5", + "content": "497e4f32ca6f31e5c1bb8e9405831e74" + }, + { + "alg": "SHA-1", + "content": "beb19c02e7e28a8a4acf4a9cc8c3280ec3b94722" + }, + { + "alg": "SHA-256", + "content": "eeb3853282c24964a93a6eb4c1bbcb60c8d09fd8e0ffc75ab64ad21045a1fa78" + }, + { + "alg": "SHA-512", + "content": "f7a687d2778fbc7081ef5f0bcc1c780d52783446d52e3598662513608647096e487d628aa998345c03fb9691bdf3768341bb8126f132c2721de33aa5bd802ec1" + }, + { + "alg": "SHA-384", + "content": "7b1fb07b52ce2307ca0cb15921fa37d8d41e80ef63e5d36813933a1fe7a2b00d456c364d91f26ed030df9c7b76a29d4d" + }, + { + "alg": "SHA3-384", + "content": "7cbfa405777e00b798d2d2379688ebd8b3f4a5e483e9a9797ca38cb747480a2edffb33c2532fe87c91d1afb2f32e9f11" + }, + { + "alg": "SHA3-256", + "content": "62a20ee9764b9d19aed1b0df6dc850496409f638ed152dea65e2a5ed73d6cb3b" + }, + { + "alg": "SHA3-512", + "content": "07d1b8b84aeeae98020fcb439b6ff69c34868741a739d7aaf7cdbe7fc76af1d204b114422441a7db856f3aff3691399e7e1ea1f67ce48e1b42267352767ba11a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "woodstox-core", + "publisher": "FasterXML", + "purl": "pkg:maven/com.fasterxml.woodstox/woodstox-core@7.0.0?type=jar", + "scope": "required", + "type": "library", + "version": "7.0.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-endpointdsl@4.8.0.redhat-00001?type=jar", + "description": "Using type-safe Endpoint DSL", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-endpointdsl" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-endpointdsl" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-endpointdsl", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-endpointdsl@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, FHIR and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-fhir" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-fhir" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-fhir", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-fhir-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Fhir Component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-fhir-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-fhir-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234652" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "c234742e48f2ac87a236ddd386992c5b" + }, + { + "alg": "SHA-1", + "content": "e138d53b0c22becac8f25556f3c50d79f866e910" + }, + { + "alg": "SHA-256", + "content": "ae1732f69e34523bda249671dc6306a050ca8e009592798efe066452b395b2c5" + }, + { + "alg": "SHA-512", + "content": "ac411a87ca14971e048aaf5e7060587012d15f1aea78b8ab4217d81bf7da1686828386afdb0ddf242d26972b15a541a498bf1148e6df1ea79891ac1430db569c" + }, + { + "alg": "SHA-384", + "content": "cbf611c74b6bfdb0bdd0b5acacca01aff08d0d979e76c6907d4456a463b060604d6bf0098c31316a5c40a7a16614ba01" + }, + { + "alg": "SHA3-384", + "content": "2cf54debeec2c0bb6625c9882f7763ddfada0b8fd8c81f0a8eae778b8ebe0828adea823fd64a128360ef4e5e6b224f5d" + }, + { + "alg": "SHA3-256", + "content": "00c580cb492880e8efe070faf1e246685cd7adc0d4b27e22652dd28ae3cf904a" + }, + { + "alg": "SHA3-512", + "content": "8a9c03ed06e1d724af5dddf18c0a405b372c1cb8611d99061762745ec90a34cf02671fbbcb7d6b20fd1179b02d98a5359d2743e83647fffeff4d88dea40c2eeb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-fhir-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-fhir-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-fhir@4.8.0.redhat-00017?type=jar", + "description": "Camel FHIR HL7 support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-fhir-parent/camel-fhir/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-fhir-parent/camel-fhir" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233471" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "e2cc31a41799164670ca54e2b9dd53b6" + }, + { + "alg": "SHA-1", + "content": "19f0c8dd5d0c003ea4a09c87f0eeeac45d9642b2" + }, + { + "alg": "SHA-256", + "content": "4f87d821675a4d0dcc606f8ad80ec078f35f82d0e46843cc5859a934e5027cfb" + }, + { + "alg": "SHA-512", + "content": "3d88838da52bc4bbbd51cc76794f3e7578fc72748329fb687a2b151be60d3c9a0a8702a637cee6c84034dcc5f01286fe398c2176db52d34c4952ef1e38c019e7" + }, + { + "alg": "SHA-384", + "content": "d6a8b6038e6c5420e342fea77d2af5a04951a17954cdfce43be252228f1f53f99617759c0d34b27665a05047f43e3fb3" + }, + { + "alg": "SHA3-384", + "content": "c4b88dbc8c4f50ec139a43a07dd68b02797bb3dfbfa33f80222756a94be25388a2f007d7976c95b4837ad90c216b42d9" + }, + { + "alg": "SHA3-256", + "content": "005eeddd565896d34bf03addceabe0e9d07b2452cb9e84edc36df93b26f9bd15" + }, + { + "alg": "SHA3-512", + "content": "0c0cddfc436d8d28afb6570bbef06e913ab987b0dede20da8a2f128458485203273d44e34b56e46496a3912cd0d4c66c95999fa487933c8d2c828e2e50884488" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-fhir", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-fhir@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "http://jamesagnew.github.io/hapi-fhir/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143245" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "cf5f243edda69c172933c44d2249e522" + }, + { + "alg": "SHA-1", + "content": "06c521ce9d2a4668848534acafa6f0909324964a" + }, + { + "alg": "SHA-256", + "content": "39b3a1722aba1834a38e7344b23120a2c4e62e71e07cb794d8ae8e6ea357ba8f" + }, + { + "alg": "SHA-512", + "content": "620df2901f2886ac1cdd800675426e1dd9d048596009a1552a989eeafbbab625b559e087f7da516d6d19f23c0674a328fc9019fd1b9d43d29fdddb3a6e0bcea1" + }, + { + "alg": "SHA-384", + "content": "f9be07b107bf03510252019f7a6c4a85cf55f5283388a1183783bec1b4ae50de70c6445bf59d9615188a4af9b419c596" + }, + { + "alg": "SHA3-384", + "content": "e226e3431a3a4a310196f3d3945fd4467ca05c401fd7fb1ae78e69c7aaa808fd8fe959ca6bc73c67641dd36e0a3d8031" + }, + { + "alg": "SHA3-256", + "content": "5ab733588781a5ebb29c5e48d1fb6c4c4cc7d04d88f2a04e8745e1b91b83b3aa" + }, + { + "alg": "SHA3-512", + "content": "1f52217c9cb1747d6a2edd37d4a481841dc17a64d76439d2d3f2735abd680a1c54c0ee15819149c56d15c2606b628faf32b7f3e8925a433e82e85509aecd8de4" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-base", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.23.0.redhat-00002?type=jar", + "description": "Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.", + "externalReferences": [ + { + "type": "website", + "url": "https://errorprone.info/error_prone_annotations" + }, + { + "type": "vcs", + "url": "https://github.com/google/error-prone/error_prone_annotations" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12150243" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7ENB5XN2DYCC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11.0.16-8-mx-mvn3.6.3:1.0.0" + } + ], + "group": "com.google.errorprone", + "hashes": [ + { + "alg": "MD5", + "content": "a4834892b17aaed4ba55104ace158737" + }, + { + "alg": "SHA-1", + "content": "ab8d8316e06f335191ebddc7d97e4e217c1fa1aa" + }, + { + "alg": "SHA-256", + "content": "9410354489b8a4c2eecb402b0f878625deed9d7e1e5ec319d822d60caab8bbe6" + }, + { + "alg": "SHA-512", + "content": "f5c0672517f169037dcd4770c28dbf8e4fafc5c1517cc5a09f4413973bfe593cdb454a7acf22d2e7a7eb9f496d6b02672d140eb2dab5f1d9d22c258b58966b6e" + }, + { + "alg": "SHA-384", + "content": "237149410230539fbe2084df333ba612adbe3613e918a7939c5883bf75b8bdcc64dfdd111885ea917558ac204bc8bfb5" + }, + { + "alg": "SHA3-384", + "content": "499df56612f8fd83542a73b935dbcd86b88d9ab524736235be5298e1ac96e7dad1db812aaf45d6018a624ffd64ba6843" + }, + { + "alg": "SHA3-256", + "content": "a6f4112575f50943b81107e33375bf42bf87d2ee78d3c8beb11a8b90e6148543" + }, + { + "alg": "SHA3-512", + "content": "5afdb9664f86455ec01fbe846f40ed0edcfae846a117269f339b758e7167b965a5e3c0afee78288792cbb7799a23eddc0241a6071ef4e2f5397fcfaefc28f0cd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "error_prone_annotations", + "pedigree": { + "commits": [ + { + "uid": "441837b7cde236ec6c15781aebbe05a6e391d074", + "url": "https://code.engineering.redhat.com/gerrit/error-prone.git#2.23.0.redhat-00002" + }, + { + "uid": "ff5e5f7a519f40b10d2b24ca5fccfc70dba3d94f", + "url": "https://github.com/google/error-prone.git#v2.23.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.23.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.23.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.slf4j/jcl-over-slf4j@2.0.16?type=jar", + "description": "JCL 1.2 implemented over SLF4J", + "externalReferences": [ + { + "type": "website", + "url": "http://www.slf4j.org" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/qos-ch/slf4j/slf4j-parent/jcl-over-slf4j" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12734014" + } + ], + "group": "org.slf4j", + "hashes": [ + { + "alg": "MD5", + "content": "c077b88c43f9d63f64f9880fdb457efb" + }, + { + "alg": "SHA-1", + "content": "9d08badad22f1ac07deac9188ade596472a2bfd9" + }, + { + "alg": "SHA-256", + "content": "5744d62c5af556e839ab922c9fa3f737f0a5971e478ba68b2eb5256b2842ec78" + }, + { + "alg": "SHA-512", + "content": "5c4c540ac68898e49a126611665bbe47e660591a6aaf9f1d1c342116a2b0f6b5f7225d8072917b1fab0cef4c5ca48c0d1508655ce5ab368d7c27be78b3c75c87" + }, + { + "alg": "SHA-384", + "content": "90c2ce65783350a6bf25cf6abe6a4583f7ad9ec8807ee51fe7543c7a6a163ecd5141c29853c3ea35e05c0069e09141f4" + }, + { + "alg": "SHA3-384", + "content": "c65b56e6743867a1de077828446999c0f8de4b47fd56e40f136157735143f462ebb5fc3f6fc02a3db790a81cf823c1bc" + }, + { + "alg": "SHA3-256", + "content": "c00f9fc1f31f03afa6ad252a7aff15edaee78b2b742bf65a97cdd74f7189120a" + }, + { + "alg": "SHA3-512", + "content": "9e7c5af053bc0334fe2a4c9c2c6311a55c34b54889a2051c33e97eb9edabf3ea1064a017de4b510a54f77720c9a24ffdb832218bc92b4db6fc3b9cf972f268dc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jcl-over-slf4j", + "publisher": "QOS.ch", + "purl": "pkg:maven/org.slf4j/jcl-over-slf4j@2.0.16?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.16" + }, + { + "bom-ref": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00018?type=jar", + "description": "JSR305 Annotations for Findbugs", + "externalReferences": [ + { + "type": "website", + "url": "http://findbugs.sourceforge.net/" + }, + { + "type": "vcs", + "url": "http://findbugs.googlecode.com/svn/trunk/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12177254" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7HNVMNTCDYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.google.code.findbugs", + "hashes": [ + { + "alg": "MD5", + "content": "869b689455cf2051b591bb4d3ba30e5d" + }, + { + "alg": "SHA-1", + "content": "85c9e14b9ca471567411a78d5d39dd1cc3e4d0b6" + }, + { + "alg": "SHA-256", + "content": "a4be6871ffc5bf53e5d9b24b128b1eb89f2d61b617f192fc7f21d361de94385a" + }, + { + "alg": "SHA-512", + "content": "8889cbeb74ccd34913d81fda526ec184d9e831f6f7cd875d4914ebfdc1e7576dfbec43e43baca77a463d5c183b156a72b6f34c04a11f6cddde66dd3b4d7d7213" + }, + { + "alg": "SHA-384", + "content": "24eb8db93df5adf899c52edfbc8f1f0d4bc63a3b80a9fcba227577cb0565c8c0035026a595c429be6bbb9f4dc4a85c40" + }, + { + "alg": "SHA3-384", + "content": "17042f961b27baa8b81966f34665c0b18d19b9b76255770bd6c051f8151b3ddc1d612b96385b21af5e2cb37e39c599e5" + }, + { + "alg": "SHA3-256", + "content": "0c87b2e11d9d1d4ed09717b8ea54c351495249e7d35d1006da454c151b2bb55a" + }, + { + "alg": "SHA3-512", + "content": "c4d7c162ff253d000096fec82cbb49bb6b3f7fa3fc5d9c5d3d1c0f7da46809dd7d88afd6323797ed5d67b795abad5ada6cc456bb490d6d2327fd5221ed7d8f91" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jsr305", + "pedigree": { + "commits": [ + { + "uid": "ae5b39e26177dd8e16e35279dadeab1299ef3c55", + "url": "https://code.engineering.redhat.com/gerrit/jboss-mobile/jsr-305.git#3.0.2.redhat-00018" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00018?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.0.2.redhat-00018" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088668" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "3203bfa170ff7c4a6fc3cca5008051f3" + }, + { + "alg": "SHA-1", + "content": "12b413fa47b0243217b3f337422143e616c7f5af" + }, + { + "alg": "SHA-256", + "content": "127a005f764c934b8ae48050b17ff75df95db68c04351f161dcd541e6a418001" + }, + { + "alg": "SHA-512", + "content": "eade9357210c20d0cc0a2703d09d030d94e62f5a91cb79903730f3f4d2b4c00a976700fb67cae1e5eacae51805fe3c5b6764bfaec37c80eb900e10ab68df990b" + }, + { + "alg": "SHA-384", + "content": "ed249f12c314de9bc5e1d0580fb31136e084f1a1abf683a0dec7580dea7d0010470d82196d135c8f8ec69e6eccf18abf" + }, + { + "alg": "SHA3-384", + "content": "e09b467622c19fb331dca6901404aac40ba7095340a904c9e25f54d0c23070d9a2eb4d8cd472a474da4ca0a5ee05a22f" + }, + { + "alg": "SHA3-256", + "content": "86655c7139816d94db9850af0ffa642d03e2bf41354a136a84c4e0b87f174b1e" + }, + { + "alg": "SHA3-512", + "content": "7714b6ddb7397ed2ff8625253a91255e01001d1a79655a9342563e1f855c4151857ef3f9ebf4f497b7d073ef0de50c33102a833db3330c3e071b3d69fff7bc62" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-api", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-context@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry Context (Incubator)", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088625" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "bb74fc243543aeba4f7b43b413c180c3" + }, + { + "alg": "SHA-1", + "content": "d59616acdb56432722a5577add45c7b9ee84fd65" + }, + { + "alg": "SHA-256", + "content": "67ccfabe279d0992adb23381434d5a3a49bd329a95e53aaa50c33e82933e8505" + }, + { + "alg": "SHA-512", + "content": "de2298648a90fecaaf02efb0b86d58ac8a2b88e65290fde140c68f16f541d0a8563108791e6bc3cd07aa7d696275b0f613eb3af292e39b05f2ae5dde93bb7c10" + }, + { + "alg": "SHA-384", + "content": "d149a4fc9f84b1704ab292a577315213e3277367a4a9a321c0b52a97c7eb2ae8fe75fcf56459670fcdffe7a64dac474b" + }, + { + "alg": "SHA3-384", + "content": "c0b6453d108a6f128745beb1697f3bccd080ff4b2519394546791817100f687013e344bad038818444264efc095c99ac" + }, + { + "alg": "SHA3-256", + "content": "74a3ced514e3eead317415f86cf4aeb72a55cca629dfdecf11f6daa538e2f352" + }, + { + "alg": "SHA3-512", + "content": "fbd92b1570350f11389ea0bcbcaef16ab6e3564f20fb664671b54764e83d692fea11358073ce966202bad9cca265caa31815494139e6a9e42a89c68993c8b08d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-context", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar", + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499056" + } + ], + "group": "io.opentelemetry.instrumentation", + "hashes": [ + { + "alg": "MD5", + "content": "bf6c1528557a3b8c6bdf1bbe4b46a773" + }, + { + "alg": "SHA-1", + "content": "29dcad4d145300e877bac0fea97da04d877cb905" + }, + { + "alg": "SHA-256", + "content": "b52df05d2bcd71c4520461ea752560bcab323e4b91032c47af640682fbbba008" + }, + { + "alg": "SHA-512", + "content": "15ceeddc8a2439d4665e0a95a74388f981cb0b4a7a351c495dbe3047028c0bfc56b03b6ee3e60bf8d65c2f11c22914d638a32da16b70effb840bac71e8308b76" + }, + { + "alg": "SHA-384", + "content": "ce5b09b8376b4ae0891c1000497833c76a40b738465eaed090ef0c596a6e310d96bb44fa0a7d78268c1bf9e8744550c1" + }, + { + "alg": "SHA3-384", + "content": "8c45321fbba8270b5612ca703a203533853ffe5810f740a5f2b5f9cbb47b55e47d34739888d961add98448f4041ad233" + }, + { + "alg": "SHA3-256", + "content": "2411f0ee557ec5ecb6e578183add9f54eaffa6149f2ddf6e5f349125be9577ae" + }, + { + "alg": "SHA3-512", + "content": "3dcb1d8a88b5ae6bd12e2b50e1a8859516ab9fe94d3d11ef635d2391ca5fb3d8db49317865f68986b2f1eabb58eb841f7a28d553fb1a3bb949adea764768fdaf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-instrumentation-annotations", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.4.0" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-client@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143213" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "1c6768f40ba15bb36982a437e52bcd25" + }, + { + "alg": "SHA-1", + "content": "c3f1cc3e65e9cceefe0719e1b81394bf37da84c1" + }, + { + "alg": "SHA-256", + "content": "007a39049df8cea4054ee57efd3d54970cb1f4c270f8a606873363908884445b" + }, + { + "alg": "SHA-512", + "content": "ac3f7a0405efd167f03882c3ebad87f268a63d33503b50c513d1b918d036caef7a76cab73423d0d8b1990d0bd2dc4e753225a134d1d807cd57bfe7e7cc6a228b" + }, + { + "alg": "SHA-384", + "content": "b636f0dd2766671dead491ad9b0e462c6ebb176969642ec93518d3d9d3fbe85ee733d950a6044bbf56bcdc3f91032577" + }, + { + "alg": "SHA3-384", + "content": "79ec7cc8c970945fb92abc9a0c1a45a89246ff57ef3a24fcbe7ee50288fae37186fe10145c2ebc638dbcdf54437d94ec" + }, + { + "alg": "SHA3-256", + "content": "3111345800cff1537629a83606d6a5648f577a9c3e13b54d2e3da7547c7eb13d" + }, + { + "alg": "SHA3-512", + "content": "b283f63e010e70942f990bbb5ea7cac2518008d66dfe4c7894509568049a8e506f8550489f9e769723da16edc9148a2810b85cda875f3a9adf4f7484904fe4d5" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-client", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-client@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-fhir-api@4.8.0.redhat-00017?type=jar", + "description": "Camel FHIR API", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-fhir-parent/camel-fhir-api/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-fhir-parent/camel-fhir-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233797" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "8e7b273155ee77e929b0aaa6904ddea4" + }, + { + "alg": "SHA-1", + "content": "fb7b820078883870ee19a49908bffb4458099038" + }, + { + "alg": "SHA-256", + "content": "23277deb907042ce087b5fcd6f7de7017534e9aac295568d08014923171b6c7e" + }, + { + "alg": "SHA-512", + "content": "703b38967f8bee8ead25c489006ca72ec41b0bc81f496e42a61ff70b52e200c13b1ef37ba685b370e54396ab2144e1f26680e8887ffcb25e0f52241ccfe504e1" + }, + { + "alg": "SHA-384", + "content": "697dd5cca01f08feff9f75e321778fa021b93d8b51a0df93e15a39775a16b2ad5412ebfd087cfb96ff2433c9a49cf72e" + }, + { + "alg": "SHA3-384", + "content": "223584afe66054d19ba984cbd85b46665e085567a87693e8c1eb123b7f67058422237dbd3b21dc25c53259ef6a95efe5" + }, + { + "alg": "SHA3-256", + "content": "f6912f128c94777e49f6ca41ea20400c293e72902c6bd5dd54a5b8139bfd2d05" + }, + { + "alg": "SHA3-512", + "content": "9da5e956b437fbc2b66e3eaffd9f218761bf176105f5668bc7b21d13cc547b8aa052f1d7c085f6829978a5b29515f2d9e409794f7ac5493fffe368fb5059cd9e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-fhir-api", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-fhir-api@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r5@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-structures-r5" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-structures-r5" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143231" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "be4482638823b1e9b8e0bb056ad7fdbc" + }, + { + "alg": "SHA-1", + "content": "8a246412adf57937cb899b121c1ed1203b8f6bef" + }, + { + "alg": "SHA-256", + "content": "a9b2cd401cab1faef7b81b7f93748c1c3d09e891ba96f511ae4404a550382607" + }, + { + "alg": "SHA-512", + "content": "f7fa2747e1d9601facfce83e7599a15623cc695281e9cace523e7acf201f689c73ccdcd5b5056e032337c7f98ab260d745452fbcc0bc75147354fd38c1674801" + }, + { + "alg": "SHA-384", + "content": "52afc4e92117e5b51a9ea623641d01680d6f5aa609a770aaf6725c8c0baaa59c8dd362a7781749ffa63032168c93f647" + }, + { + "alg": "SHA3-384", + "content": "237c7d4ce27f7169add44e5b0f38a5f6a663263be912aee1a7d44519d908001564259f51afb44b83aa6366d41256e987" + }, + { + "alg": "SHA3-256", + "content": "5cf259e3ad21d205267fd69f43512d218efa7024e1e1a2a9741f8f8b69ee1e75" + }, + { + "alg": "SHA3-512", + "content": "ec65419beef3b62da845e1d46a3eb743ca2f95d1c3530e10c5c353d8cc986fc902a548e901eedc8ab31da3f9371cdc5607a2045bf2cbee079c0302948c19259c" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-structures-r5", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r5@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.utilities" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.utilities" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13142963" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU6S67W5FQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make-python3:1.0.2" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "0a81faa6af475bed76367954d37d8fd4" + }, + { + "alg": "SHA-1", + "content": "fe4317a30ff32e29d5f5811e0e91bce67aed575f" + }, + { + "alg": "SHA-256", + "content": "3af785a4277f1da89ac6a1168dc06e9507721c2c51d555b091fb866a73d141d6" + }, + { + "alg": "SHA-512", + "content": "fbdeafa72ce87c2cbfc6f9e19f68648f254f5bc06bff99fea60f66807b7c599f137cdd5ed6a9832022dbe329b33b6f0009d79d4360f4298323c84bc15cdd5867" + }, + { + "alg": "SHA-384", + "content": "477bd097de7412fa1eccbe4c1f8f76a0592b86a1c2e0f544f3af5760b67682c901521cb1bbe3392bb8507780e8d7baca" + }, + { + "alg": "SHA3-384", + "content": "dc5521c948036028ce5090a046198ba57136728c39f328887c690d608a09cc80b71332ee6447c472610007f7461fa232" + }, + { + "alg": "SHA3-256", + "content": "f7dfe11da09f64a5fcdec5b2e4c94634c66d82504dac8bb038eabdd61acc0178" + }, + { + "alg": "SHA3-512", + "content": "2c8451ad462ee236261aa571741afcd115560e8ff02f5129596c876d0ef8d1181e4a9fb5b03ca15f784f4bad53531a018ee58ef12d9131154974fa9b7a3d3d60" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "org.hl7.fhir.utilities", + "pedigree": { + "commits": [ + { + "uid": "126a768de78fd347313a53e3b87fbf18f68802cf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/org.hl7.fhir.core.git#6.4.0.redhat-00001" + }, + { + "uid": "26c445c8fc841d5e73c4662391b970f4a2bcc805", + "url": "https://github.com/jboss-fuse/org.hl7.fhir.core.git#6.4.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.4.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.ibm.icu/icu4j@72.1.0.redhat-00004?type=jar", + "description": "International Component for Unicode for Java (ICU4J) is a mature, widely used Java library providing Unicode and Globalization support", + "externalReferences": [ + { + "type": "website", + "url": "https://icu.unicode.org/" + }, + { + "type": "issue-tracker", + "url": "https://unicode-org.atlassian.net/projects/ICU" + }, + { + "type": "mailing-list", + "url": "http://sourceforge.net/mailarchive/forum.php?forum_name=icu-support" + }, + { + "type": "vcs", + "url": "https://github.com/unicode-org/icu" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12150466" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7ENB5XMSDYCA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-ant1.10.9:1.0.5" + } + ], + "group": "com.ibm.icu", + "hashes": [ + { + "alg": "MD5", + "content": "2746cc1d5ff26b212e263886e1a7959d" + }, + { + "alg": "SHA-1", + "content": "85bcf6c8ed69b2652e3ac3c2047d6486f0fbf68d" + }, + { + "alg": "SHA-256", + "content": "3349db38e3e830b457b43c6982604b588e51370deccc6aaed2eb366cbe5906b3" + }, + { + "alg": "SHA-512", + "content": "cb8995996fafb9e645feb1397d20091031f03a0c98ea584bc25dfffc968936b70b69b152b99dcb067bc04cdb2bb851c351497b77dce973588196ec2caa93010c" + }, + { + "alg": "SHA-384", + "content": "b192649448a72ababd343f60b4beda569ca7a9d83e3587b7e7b0b9ddd648d5cc0ed1215a2bda8c2f80ac3e68e4000374" + }, + { + "alg": "SHA3-384", + "content": "f287a81a60b15c729cd0b437ce2233e0b795c905460cea3fae9df14211a1e71155a6bf76b7567c0dc28819ad2f5e0630" + }, + { + "alg": "SHA3-256", + "content": "077b07935d8406463992277b6236b32acbacc90b75f4aef1c50f853e34d91ee9" + }, + { + "alg": "SHA3-512", + "content": "19bc455a8b151217973e4fcc7863873dc99870770795c66fb3b89589809644d7fc78d9c801e03cf9c522221985c2000a24e4d8d60fa9a2e21232261bc3078d78" + } + ], + "licenses": [ + { + "license": { + "name": "Unicode/ICU License", + "url": "https://raw.githubusercontent.com/unicode-org/icu/main/LICENSE" + } + } + ], + "name": "icu4j", + "pedigree": { + "commits": [ + { + "uid": "04e64deec340dc188c2f052b5ed7541179329e15", + "url": "https://code.engineering.redhat.com/gerrit/unicode-org/icu.git#72.1.0.redhat-00004" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.ibm.icu/icu4j@72.1.0.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "72.1.0.redhat-00004" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r5@6.4.0.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.r5" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.r5" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13142955" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU6S67W5FQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make-python3:1.0.2" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "28a3b894756e1524e9a8fb03ef32c5fb" + }, + { + "alg": "SHA-1", + "content": "77ea79c9894ed5b902cbae38154306c9d001dd04" + }, + { + "alg": "SHA-256", + "content": "3d1430c5c280579f3ba319388d0b5879c6c6134361e3ef89479b34e2cf663926" + }, + { + "alg": "SHA-512", + "content": "d68c4bd56b73d8caeef0f6d6afb55bd50007f3102c3ffb7cd0600af63d44982cd9c53ea3ae7348685200d4367569c549e9c095cbebd4845b360f1c25a14dabbf" + }, + { + "alg": "SHA-384", + "content": "517ee5bdd5cd1d076d1c061a22fe1d71cd8ca738d8d78aa9cf3bad999ae4a29acc7019c679dd5b8bedd3a00ca99a2250" + }, + { + "alg": "SHA3-384", + "content": "5a962a3a4f5b46cc3acebc913853f017078b8ad681be9fc4e18db7dc2aea88d738f3c4b14b6f14a1da65036f67c85513" + }, + { + "alg": "SHA3-256", + "content": "2a0b4421c90c1743b0306cc62a19dc1e54c3acfee39fd78ec84f25dadc911409" + }, + { + "alg": "SHA3-512", + "content": "d0d9e7d5c9fa7d9811375ac1894d343e53efa32d77002e64351fa72ba8eb84754697df1510849f1e1153272e292d79e1fe57a122ec61f636759c79af282f53fd" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "org.hl7.fhir.r5", + "pedigree": { + "commits": [ + { + "uid": "126a768de78fd347313a53e3b87fbf18f68802cf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/org.hl7.fhir.core.git#6.4.0.redhat-00001" + }, + { + "uid": "26c445c8fc841d5e73c4662391b970f4a2bcc805", + "url": "https://github.com/jboss-fuse/org.hl7.fhir.core.git#6.4.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r5@6.4.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.4.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.37.3.redhat-00001?type=jar", + "description": "Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/connect2id/nimbus-jose-jwt" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/connect2id/nimbus-jose-jwt" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12063975" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A66GWKCSCDYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.nimbusds", + "hashes": [ + { + "alg": "MD5", + "content": "c9c53ed3a69bfa37d9cfb2f460e4191f" + }, + { + "alg": "SHA-1", + "content": "17ab932129321acc23dbe3dc009b069d03764d58" + }, + { + "alg": "SHA-256", + "content": "2bd8fbb224046d2dc0a09274387ffca77280456c5475a0254ed962dae775cb62" + }, + { + "alg": "SHA-512", + "content": "dc4a262b7dae2f98c47da3076d480bebc4560d18e1aa4e6f0d21dc6385282d2d93198f6871bb9dc07073efd7adafbbd2ea7b9b6a9de97b78423b66f38802111f" + }, + { + "alg": "SHA-384", + "content": "426018203c9f0cd7d4113450bde158650f746a44f106e7825a71faf164c22ac47356a1ed85caa70563550276bc6d47f7" + }, + { + "alg": "SHA3-384", + "content": "914367c09c7d9b6105cdbdd6751b336ecabbdeb5280fc51c17356f43bb0c063bc4901414420b6c0d0a21b8e8b350fc36" + }, + { + "alg": "SHA3-256", + "content": "f354862e837042b3ea497e2a0c449cff90fa466d614c1703fe35e2f79156e0cb" + }, + { + "alg": "SHA3-512", + "content": "b0ed316955afc8a7b2e13159b68f95fb42e9812660f3ab5da52f65a4cbd5b848fd8775c45d637ccb45c01852666565603f5f9a3c4424ae59d0bcb4e40d492983" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "nimbus-jose-jwt", + "pedigree": { + "commits": [ + { + "uid": "10d1373f9e301318b75a7560a8aa75796d5969e4", + "url": "https://code.engineering.redhat.com/gerrit/connect2id/nimbus-jose-jwt.git#9.37.3.redhat-00001" + }, + { + "uid": "431f492225d8812cc6e57c6ebe1363e2fab2baba", + "url": "https://bitbucket.org/connect2id/nimbus-jose-jwt.git#9.37.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.37.3.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "9.37.3.redhat-00001" + }, + { + "bom-ref": "pkg:maven/net.sourceforge.plantuml/plantuml-mit@1.2023.9?type=jar", + "description": "PlantUML is a component that allows to quickly write diagrams from text.", + "externalReferences": [ + { + "type": "website", + "url": "https://plantuml.com/" + }, + { + "type": "vcs", + "url": "https://github.com/plantuml/plantuml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11921961" + } + ], + "group": "net.sourceforge.plantuml", + "hashes": [ + { + "alg": "MD5", + "content": "ec80de29d3d3ecc2bd231f9136b69de5" + }, + { + "alg": "SHA-1", + "content": "6ca77dd474eae7a2a1581e4b236ede5515ae25a7" + }, + { + "alg": "SHA-256", + "content": "5da0824b088ff9f03950de231fc8a0037b173d90587477a0540af30eceb3a91f" + }, + { + "alg": "SHA-512", + "content": "7c4f13a0380a617aebb502701b9dbb90008893b1ea0f3b793271358cf09ecf90ddba78fde2f33a377ce813dfee18766f3a4ac6ad010158b3335cee9ab0fe7975" + }, + { + "alg": "SHA-384", + "content": "053fe2b8de25f3b39ad291d5d3eb3874b9254ba1c95cf35861d34c62923f3ad14bb40999971d18c5fb1c270846ec3c50" + }, + { + "alg": "SHA3-384", + "content": "a71f7578f2448178cbcbfc0ba3cde9a9043cc0f1eee951b8228c9532804a1401eb87bc7cfe99f0cf48a4699ccc9347ec" + }, + { + "alg": "SHA3-256", + "content": "ab5c64aa8fdebf65ad320e56741475b2edf7703f9058b9d3ae33e1047e24330e" + }, + { + "alg": "SHA3-512", + "content": "daf903fe356220e159179f2f04541c3fd8cc07527f653e4343a99c73386daf5fac67ac3912c5c6f8bfac7560b2c449e3e9da24c45d095db4d35d167daf41cb4f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "plantuml-mit", + "purl": "pkg:maven/net.sourceforge.plantuml/plantuml-mit@1.2023.9?type=jar", + "scope": "required", + "type": "library", + "version": "1.2023.9" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-caching-api@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-serviceloaders/hapi-fhir-caching-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-serviceloaders/hapi-fhir-caching-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143252" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "025b18fb293171befdc097c8b3312989" + }, + { + "alg": "SHA-1", + "content": "a4a7462e4b1003b75fbdf68abff95744f6b58bd3" + }, + { + "alg": "SHA-256", + "content": "bc496d46be8dc37ac8dbd87521ba52415560e4ac53d19f0f3d759c73712150f2" + }, + { + "alg": "SHA-512", + "content": "35c6b03bb632b634e4bb7b780c38cc4fa5053232b76392ffb72f54b02cdab814c0be57d0bcb5de9a5504cf930f11de59435a0f757dd4949a2072c3c757a2b4af" + }, + { + "alg": "SHA-384", + "content": "6e1b6a2ef8934933718e5d5e3c765ec9cfb27261834416d69f0b4e2d781c2b2d0196f21b5cb2a322ee42b936b444842d" + }, + { + "alg": "SHA3-384", + "content": "6f24912117c5c98c7abd7e9c739be7094f4842d248f96a11497575c2538138f1677f56da2f50fc348f79d01d11a3c25e" + }, + { + "alg": "SHA3-256", + "content": "a5395a7d99ecf5aa747201f30018cc1adc0f19edbb63d9b3dd8e8eaa3a7a6898" + }, + { + "alg": "SHA3-512", + "content": "eb0304b5e5096b559caccfaa360e4ba420a2c82c009804ef7d10ae5333e830e675f2199b1661f7c1681b87b518009dde51221cce76fe6e23a5b3fcd422c055ed" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-caching-api", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-caching-api@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r4@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-structures-r4" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-structures-r4" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143148" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "a37f255411fbbd2a7c2433a78a94a9a1" + }, + { + "alg": "SHA-1", + "content": "df84391015887fdbf34febf68c86f41c503d44ab" + }, + { + "alg": "SHA-256", + "content": "809a8256b4b4b19e07d10548e4ecaaba1ca3fffe9ac467aa07ea4626b6b5f29a" + }, + { + "alg": "SHA-512", + "content": "4cbd3d7ae6c227c52575becf8706017f44006e59d1868f58c61c7b40802b822e7462e990dd243acc61c57325cabc6081a27e1be8426b82e805a91c9548709a03" + }, + { + "alg": "SHA-384", + "content": "b3dc394826dedc02087174ae8ff0c4666963fcacf9001accc8f362e48d7f8937d2f516a7624a2b594638e3443269e98e" + }, + { + "alg": "SHA3-384", + "content": "500fba064fec9b70cb9bcabfcfc2ec4e7f299d6c20f466164fc90cf479be7b02cc90b8a2d807baa37449ef46b9928ddb" + }, + { + "alg": "SHA3-256", + "content": "01331c021d5b9ff491438899fba793d03244d277f83fe42498700bda9b30264f" + }, + { + "alg": "SHA3-512", + "content": "a1ee38ff12baa9860374d58439df0e45901e9f1dd86ba588f975c884cde041b1263d7c68a78832d5d5e4a4c87d1372ed711a8178761e0bfc33136e6e258d65f7" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-structures-r4", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r4@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r4@6.4.0.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.r4" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.r4" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13142940" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU6S67W5FQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make-python3:1.0.2" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "264a89aa145e92b4bc0e636699baa149" + }, + { + "alg": "SHA-1", + "content": "8e0fd8675930de72a98600aa019d9c858e902321" + }, + { + "alg": "SHA-256", + "content": "0d0c83451e7eef90a6266e5fc6d0854bc51324886332e954eb4b1abb3a34d626" + }, + { + "alg": "SHA-512", + "content": "1e4c0c04ab817246a5bf4d8c1d19d71b214a2b69ec9193c98cbd97ed6afc3a5d9214efed2b11c3c339af31b361908829c2a31693b682c44fded211ae6ef63971" + }, + { + "alg": "SHA-384", + "content": "e5c34bf911efec721cea031a266aedb8331efee13002d89026b2a7440ae409473032f4dab2be599246091bfe94ebe460" + }, + { + "alg": "SHA3-384", + "content": "eb43faa8be578f947bcd763526de9f385d43a5afc059ae4965ffec41f7fa9cf770c9f10208a14da228e1a0fe9f389f06" + }, + { + "alg": "SHA3-256", + "content": "52c140bad655dede9fce1670539f8741d1d4ef52cbb6fc88ac5b33c32d57c492" + }, + { + "alg": "SHA3-512", + "content": "4e44734d9a1575b8114c8fd0ce5281e18998058845162551b17e377e38610b197728f4de338a5cc06780c896e6c3ddae1099a1c387a486393e1c365cbc31d4b8" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "org.hl7.fhir.r4", + "pedigree": { + "commits": [ + { + "uid": "126a768de78fd347313a53e3b87fbf18f68802cf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/org.hl7.fhir.core.git#6.4.0.redhat-00001" + }, + { + "uid": "26c445c8fc841d5e73c4662391b970f4a2bcc805", + "url": "https://github.com/jboss-fuse/org.hl7.fhir.core.git#6.4.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r4@6.4.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.4.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu3@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-structures-dstu3" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-structures-dstu3" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143193" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "82efae430c15d587bce14f388f4e0dc4" + }, + { + "alg": "SHA-1", + "content": "d2d0d91ddd3f70bbd8053ef577279bf4bbc730e6" + }, + { + "alg": "SHA-256", + "content": "7fd6932b3c1f594fdd654089ec1ff675c367f1951417f4d0ae6b3e1d2d6f6de7" + }, + { + "alg": "SHA-512", + "content": "b66acb3a32079ef6f3587a25081f9fe6c6cce3dc571a6a78488ff88eca308bbf617d81516b9137eca024c7b8fdbebd5f838572e76b98852a439e61e37cdc53da" + }, + { + "alg": "SHA-384", + "content": "525a2754819cbe326255360142f4cdaf5c77fff427257c8c416e1c1ee5d8dc791c693f4df79867e6d966f992788b423b" + }, + { + "alg": "SHA3-384", + "content": "dd472457b2326d852398ad3f202db0a2d08bebeafa32dc0d5a48b8338436fe38680009a686a5ceb5554bc7f330b273a1" + }, + { + "alg": "SHA3-256", + "content": "6ab35f69959a533b5f9710e3ef8959b15d5a5ba2ba76d58ba0640e280062517f" + }, + { + "alg": "SHA3-512", + "content": "60ff2709c72359440b9ba535701b7b991d6e705b302d2dabaaaece045f3fd6510069fc7c085d1abcd30db89526c103d68c847b593a4eabb81e690c1bf2af1e59" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-structures-dstu3", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu3@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu3@6.4.0.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.dstu3" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.dstu3" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13142948" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU6S67W5FQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make-python3:1.0.2" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "fb272065e70ed1523682f1919e1594e9" + }, + { + "alg": "SHA-1", + "content": "3c29303d871fb5397465a2c689a1ccd9e809ef7d" + }, + { + "alg": "SHA-256", + "content": "54d3a3e1f93c8fbdd6faa87191812a291c21393e838fdfb59e1f279950001685" + }, + { + "alg": "SHA-512", + "content": "8b8e863c6c984f3736f644f45e049c1ecf6ac981997de9b7cbb1f92c8f514340996baf1458401d3fa588fa24e8089d98355d378a1a1d2fca3794ec9d9a0ad2d3" + }, + { + "alg": "SHA-384", + "content": "0dd694b971371e14561f3f4014806e61e90e72fdc63146886148355ae1f572cb283d379097b3e7b527325c6ed2efbc1c" + }, + { + "alg": "SHA3-384", + "content": "6f1ce45ad8e997b0906da1e61fd78a37f82c3632e74ef77396eec9461ccb3be95ad6fcf7f7ef372ae3a06e5c72a2ed28" + }, + { + "alg": "SHA3-256", + "content": "630a202debdf34428fba1d88e5851c2cc16930aa32c8fe7b8b106f65e90b7800" + }, + { + "alg": "SHA3-512", + "content": "ca55e94a3c8d2742d2764d32136a43eea94cc586c26489665b36945200e0638688d0bbd5c45eea5c417737d77d5ed7c19981c2d8610b5152bf12642230bdd75e" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "org.hl7.fhir.dstu3", + "pedigree": { + "commits": [ + { + "uid": "126a768de78fd347313a53e3b87fbf18f68802cf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/org.hl7.fhir.core.git#6.4.0.redhat-00001" + }, + { + "uid": "26c445c8fc841d5e73c4662391b970f4a2bcc805", + "url": "https://github.com/jboss-fuse/org.hl7.fhir.core.git#6.4.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu3@6.4.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.4.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-structures-dstu2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-structures-dstu2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143203" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "4b74a35ab929053725a1d7787c7c8d6f" + }, + { + "alg": "SHA-1", + "content": "47dab1dbd437df89f7e41b2ff4b1c8953e41830c" + }, + { + "alg": "SHA-256", + "content": "c8c4d4c552fec18f1aa32b8c572c20fe5b215b5afb3e16b97e79c4aec720c880" + }, + { + "alg": "SHA-512", + "content": "b3eb9f3bf32b0e78c73abc1cf8e5dc1af00fe815396a1194c43cb5cabc61fd459756dfa5de18154f108c7d8b98ec4242904bed827fb3c61b00cfd0f08979cd8f" + }, + { + "alg": "SHA-384", + "content": "40d79723e50f45f93a746380cdfb79189de290a9c3f5d3460d9d0424912b41e8cc829f7fd02860d65dcf39516ff28185" + }, + { + "alg": "SHA3-384", + "content": "d64ae8f67c7594eed8069f7038761b9f5b4f263bae6c15e1ec94c7a2087fcfcb9b6c27a47fdf69defbb2a7a1e0392e26" + }, + { + "alg": "SHA3-256", + "content": "07a2062a6a11b58c00b7741ed99df9d1d61b1c61058c4d08bd2f10f98e2ed82e" + }, + { + "alg": "SHA3-512", + "content": "ecbed5d30358f1cbf61b6d353fab9e6a0007c21a1b67f3fdbbe4bfa09579cc03c850a3032de4d99c35c583979f565927a84cfd40d0d401c18ec4f63b5e9fc70d" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-structures-dstu2", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2.1@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-structures-dstu2.1" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-structures-dstu2.1" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143118" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "585c88180b9a576f728d77abe18a49e8" + }, + { + "alg": "SHA-1", + "content": "c21523520867b0164efe9b4db62da05a024bb67a" + }, + { + "alg": "SHA-256", + "content": "2d88313838b858de04bdf862c349a2f3bd718beccdf1a72ec77bdcea84a6d915" + }, + { + "alg": "SHA-512", + "content": "0892cf20218df1e09e49b43b97f401e7d4b6691e8e3d61f07403d91eed26b46e3cee7bae04f13342e12e5f750996fd64ec395b4fde26dd76d6a619832bc3ee8e" + }, + { + "alg": "SHA-384", + "content": "11cf4facf54fde538404fe68c6567ceafa31f39edfef1d9a6f2448357edb607510fe85da259ae42b5fe5738643925cad" + }, + { + "alg": "SHA3-384", + "content": "a32b59cc0ab572f2feb8de3f4dd87b56afee2345fa764600292722ded44f27f4a5cd3bc8f67ce0b80a650123354f253a" + }, + { + "alg": "SHA3-256", + "content": "135fe0eeced32d075e07a57e923fd3c1ee3bc95c255d772f7571fd54aeb25919" + }, + { + "alg": "SHA3-512", + "content": "2f216ae414a1cec6a826686ae7aa85f9ee697a13f3d62cf097556cddcba0ec5f55cdb2c0f2d7393295e3d3bf569a107f523f25b36eaf26253fd20164ef31c60e" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-structures-dstu2.1", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2.1@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2016may@6.4.0.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.dstu2016may" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.dstu2016may" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13142951" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU6S67W5FQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make-python3:1.0.2" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "31ac2cbb48241ddd202f32085371b0cc" + }, + { + "alg": "SHA-1", + "content": "54427f358abe35db807ce63b6295c7f605709bd9" + }, + { + "alg": "SHA-256", + "content": "e145723768c2032e0aaf13ddebbd9c750e3fcb861b9e3d96fb7855875ef5c576" + }, + { + "alg": "SHA-512", + "content": "7730cd23e6e1fbdf1c48b3ce5d2fd4341a6aa34388b74f08fd121cea6d3bd30653e2aef7b0f64fca56e579ac32a3f1d9beea2f83d916fb00227a472ef4ebb8aa" + }, + { + "alg": "SHA-384", + "content": "fe55d8fe3ae64a62558d57f3186f8eddb04f660daca3684ad599cd70970a420f44ffb4d74efda43341198abf7a21b15a" + }, + { + "alg": "SHA3-384", + "content": "33a41531a3daf9f7798b03ce4d93d8e293ebdc9a6f9ea21c2d24af301d7e0bb6fd2e44fa0adc238de34a79b8a8cb3b96" + }, + { + "alg": "SHA3-256", + "content": "a1db70176eb96e225ec78b45c6ded108479304602629e4b2309ba4bf69b0854b" + }, + { + "alg": "SHA3-512", + "content": "af5dd989955025ee84e2826fad157495c736462f7cd618d1d6bed57720a2db6fd91e056c680b33a7632b2b3849a91a24163d20a1e9605f4b797cb5406155113e" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "org.hl7.fhir.dstu2016may", + "pedigree": { + "commits": [ + { + "uid": "126a768de78fd347313a53e3b87fbf18f68802cf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/org.hl7.fhir.core.git#6.4.0.redhat-00001" + }, + { + "uid": "26c445c8fc841d5e73c4662391b970f4a2bcc805", + "url": "https://github.com/jboss-fuse/org.hl7.fhir.core.git#6.4.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2016may@6.4.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.4.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.ogce/xpp3@1.1.6?type=jar", + "description": "XML Pull parser library developed by Extreme Computing Lab, Indiana University", + "externalReferences": [ + { + "type": "website", + "url": "http://www.extreme.indiana.edu/xpp/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://gateways.atlassian.net/browse/EXTREME" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/airavata-dev/" + }, + { + "type": "vcs", + "url": "https://sourceforge.net/p/ogce/svn/7748/tree/extreme-repos/xmlpullparser3/tags/xpp3-1.1.6" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11923238" + } + ], + "group": "org.ogce", + "hashes": [ + { + "alg": "MD5", + "content": "626a429318310e92e3466151e050bdc5" + }, + { + "alg": "SHA-1", + "content": "dc87e00ddb69341b46a3eb1c331c6fcebf6c8546" + }, + { + "alg": "SHA-256", + "content": "6a808919712867f0c4cb6e3f77457466a6fc186a4b6c41433eef79deee01ca16" + }, + { + "alg": "SHA-512", + "content": "49f7106774944ab02f6cc2b4ea3171f555aa43c0f32cf92fea8cecc34df106a90c2c6060f1768221be1a83292b09a3a91b030e181fc69ddbb9775e0acde42b44" + }, + { + "alg": "SHA-384", + "content": "41e7f2997ce52661190f670bc83d6db4ad5bf064019124d1cd8d8ca0918307994d36bf9f0950628a0cf4bc9cf31a4919" + }, + { + "alg": "SHA3-384", + "content": "a437dfafae86f0a2a9c30f98cfb45c7dcc2dfc808ee19972b1ac7c0958ba302cd077975137c575904193793f5581c4e1" + }, + { + "alg": "SHA3-256", + "content": "5c7ea39a1456902ce69273914742f333187fa72c5cf693a7641b9cc931131743" + }, + { + "alg": "SHA3-512", + "content": "4d468b0988ecde811ac24756502f54f9e9c9fb240c45f4b1c1542dce8318631a2033f28331d012f58671ce793ec047957b6b5efad512c57168cbcd211257b7ca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "xpp3", + "purl": "pkg:maven/org.ogce/xpp3@1.1.6?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.6" + }, + { + "bom-ref": "pkg:maven/jakarta-regexp/jakarta-regexp@1.4?type=jar", + "externalReferences": [ + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/70581" + } + ], + "group": "jakarta-regexp", + "hashes": [ + { + "alg": "MD5", + "content": "5d8b8c601c21b37aa6142d38f45c0297" + }, + { + "alg": "SHA-1", + "content": "0ea514a179ac1dd7e81c7e6594468b9b9910d298" + }, + { + "alg": "SHA-256", + "content": "85ea3985d7fec552d6de6f02d8e18789c3fcd539081eb8c7c444eabf6cb3f7bc" + }, + { + "alg": "SHA-512", + "content": "ff21513dae9717c3b3eb15feadd606ea74d94d253cc7f375ef06b6ac91c7fbb52aabcf470cb3f5a10ff9ac73afd6a002c046ec9763b97a7c22e5ddfa48e6dc89" + }, + { + "alg": "SHA-384", + "content": "3d88d4a7311784a5067d30194b71358472da9eb8c7e56f80ca164fa70addc90dc95e038148ee7da238fca66512625115" + }, + { + "alg": "SHA3-384", + "content": "9696982763375d54e82a00e44efdcde745ae1b6419e89ecbb54bb4b185d8f39991ad8e76f96311e8ead04cd085ea7a65" + }, + { + "alg": "SHA3-256", + "content": "52d09667806d49ab635927809ad5191aaebe6dba44bafba1b0d9186b54a3e7ef" + }, + { + "alg": "SHA3-512", + "content": "b05e6d5e78d82b7b40130c0464da093f5bb419e8ce14de86b85262e85ac1df9014046f5c091e36bcf49c79b70c92f2c1b77094f327be9d871c75852594e4155d" + } + ], + "name": "jakarta-regexp", + "purl": "pkg:maven/jakarta-regexp/jakarta-regexp@1.4?type=jar", + "scope": "required", + "type": "library", + "version": "1.4" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-hl7org-dstu2@7.4.5.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/hapi-fhir-structures-hl7org-dstu2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/hapi-fhir-structures-hl7org-dstu2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13143177" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU7XZDIVFQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.0" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "d1fe3b0befea627e1e68c25634b952ab" + }, + { + "alg": "SHA-1", + "content": "318e380e367cc1d39c4c3858370dfac23d443279" + }, + { + "alg": "SHA-256", + "content": "61545a41a1d10c5b9967b8195b9106d7c63a9a98d2726e47597a1ad1ae05f242" + }, + { + "alg": "SHA-512", + "content": "b5f4bf039599e7f87c93c7288da48a53003fb67fb1555299382b3a09d1180037253c26d2588d2ceb2b794768b386835c396f8464387399a82f000512753871ee" + }, + { + "alg": "SHA-384", + "content": "15a981dd09f44839cb57fbc79dfdb929755093350bb023f26c42837af897b818983604afd1c7f5c1eb4d464affd97241" + }, + { + "alg": "SHA3-384", + "content": "4873da94ce9b7d29773cc22988d522654cb4480b18378cdcaf149732f9a5f362e0efb17bbd8fc24c66bb079123ab4265" + }, + { + "alg": "SHA3-256", + "content": "bc737d7064edafd4001889b546861327f570ff2f3451c70eb43eb1dce6fd6746" + }, + { + "alg": "SHA3-512", + "content": "d75d5feb790efb24ead30ac1585bdf74f62a2abd6c88eb3b0e69eb41a7e07892dcb092af0201e2182bf40f1c5c192fa152b929d43fb5c9f75f4cce05c0ad1a32" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "hapi-fhir-structures-hl7org-dstu2", + "pedigree": { + "commits": [ + { + "uid": "b6838a29377c5bd13433fc2f08649a45c654a350", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/hapifhir/hapi-fhir.git#7.4.5.redhat-00001-b6838a29" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-hl7org-dstu2@7.4.5.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.4.5.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2@6.4.0.redhat-00001?type=jar", + "description": "An open-source implementation of the FHIR specification in Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://hapifhir.io/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.dstu2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapifhir/hapi-fhir/issues/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-fhir.git/hapi-deployable-pom/org.hl7.fhir.core/org.hl7.fhir.dstu2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13142932" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDU6S67W5FQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make-python3:1.0.2" + } + ], + "group": "ca.uhn.hapi.fhir", + "hashes": [ + { + "alg": "MD5", + "content": "379c4a7d476acd77da5b934a19d1f416" + }, + { + "alg": "SHA-1", + "content": "e0706919cf85df3657d1f983767af1831c62aaf0" + }, + { + "alg": "SHA-256", + "content": "1c76efd4d9b63a8187b904535af9096c9046ae304b7a287f8668ebdccedecb3b" + }, + { + "alg": "SHA-512", + "content": "695ed7379abfdced31a12eb91956bdc6a36899b5251c85f8c865549e5dc35c199f477e348da0946e21f3bf5ebb0a63fffe7c9657f6edf80b7ad9564dc04f73a3" + }, + { + "alg": "SHA-384", + "content": "aae7ea304dccc2c751de11797e4416cd5053f99d79f40dee81e5653d5110e8cc5d2e6d0a09fcc9ec62a14691cc37cb58" + }, + { + "alg": "SHA3-384", + "content": "0a1345508b3445fbb87be248e7b2b6d2295aa85872d020587074d3a47999c0574b004dee0a89ca42a5535a14be90dbe5" + }, + { + "alg": "SHA3-256", + "content": "7dc1befcfe1bcc369bb89efa13ffe73805857b6e3050d78f0c195db0343909a9" + }, + { + "alg": "SHA3-512", + "content": "c0b5ee55f74e04638ae42fa3611f6e0ed0a69b628a02cc01d5fbe7a6e0080d75b7e18e24acc4c448de529327b97801dfc7b7d834841add9f207eb861c3ac6c15" + } + ], + "licenses": [ + { + "license": { + "name": "Apache Software License 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], + "name": "org.hl7.fhir.dstu2", + "pedigree": { + "commits": [ + { + "uid": "126a768de78fd347313a53e3b87fbf18f68802cf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/org.hl7.fhir.core.git#6.4.0.redhat-00001" + }, + { + "uid": "26c445c8fc841d5e73c4662391b970f4a2bcc805", + "url": "https://github.com/jboss-fuse/org.hl7.fhir.core.git#6.4.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2@6.4.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.4.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-hl7-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel HL7 support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-hl7-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-hl7-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234800" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "a9bffa2dc16af635d5e5b763ba19f314" + }, + { + "alg": "SHA-1", + "content": "440eb3f7edbf494b56e06b2a653a57aaadb6a176" + }, + { + "alg": "SHA-256", + "content": "04fabefd8565785fa3f06ac4650905a8690ee179bb1378b34ddd1f80ee81e8ac" + }, + { + "alg": "SHA-512", + "content": "4a629265a1ad0fd27968b976e280c44814ff3631534df42265bdba65e85db11dc95d97b2979d4ce0c92ac43c24bc824a9be9aaebbaf516dac9aeedda607d3481" + }, + { + "alg": "SHA-384", + "content": "0db8fabca74aa37890c45dcad24c8bc293e6d19944eeea1f99d0f91b8cf79bb80727865c2c7fc40c050aaf3b6e439e7c" + }, + { + "alg": "SHA3-384", + "content": "dff2a64c8cef2af8220f614f05c3bf880a10cfb4ee841694e33013f6e58e6503cbfb8263b61fd0b90c603632f221995c" + }, + { + "alg": "SHA3-256", + "content": "c8c335003067f83c5279d830d9cdfde1a58e3871cf97e3f1e9a60d52793c5c8b" + }, + { + "alg": "SHA3-512", + "content": "68bb1bd1f09c43e23753507251928c2ae822f0f1c2c223f09649af7ed5ddafaef6d606bcf861c91c339d0fad87b64231f5fba894b66192115e245b58baa65ea5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-hl7-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-hl7-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-hl7@4.8.0.redhat-00017?type=jar", + "description": "Camel HL7 support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-hl7/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-hl7" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233923" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "2a939cdc3416259c96e43faf6e753626" + }, + { + "alg": "SHA-1", + "content": "d843ef8cf51e9213439f24889c5ed342c2415ac1" + }, + { + "alg": "SHA-256", + "content": "64e1d0675bf60b08c89e8735cf7944d09052e57fb665be3d4473d85c7e1a98ac" + }, + { + "alg": "SHA-512", + "content": "e754fe6474dad08df4fa791a7d75dbb3ccdbeacb6c18948f5724bf4db3355881affdead190cdb440220b9054c111b4ae7eabf99f1e3b2cca77613de5f3592932" + }, + { + "alg": "SHA-384", + "content": "9c8b4549908c045455dff573ab502e3f11b0a15443692f4592c9a4b957f7d2d70a64abb746e7cc45755c95b6dfca21da" + }, + { + "alg": "SHA3-384", + "content": "49878c93e7f28d84131a361fabbcb879aa2ba60541f4909cb387be139f724b5fce2cafed75f83c9ebac279ffa18793a4" + }, + { + "alg": "SHA3-256", + "content": "b8151fcaf8072964c02f53df2b9f669fb4d8bea32e5bf0390b3d3dc78236b929" + }, + { + "alg": "SHA3-512", + "content": "fb4f34a5edc28575eccad8c5a1d53733407abb7f604bdf650b80f2c23e1ed9f75d90ea375778837384b71695916444519daa469ba62bb56d7b867f5725b4dadc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-hl7", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-hl7@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-netty@4.8.0.redhat-00017?type=jar", + "description": "Camel Netty NIO based socket communication component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-netty/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-netty" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233536" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "7bdd615f0f6dd6e052ccd8799f5e3dae" + }, + { + "alg": "SHA-1", + "content": "9f3cd2dce28d1f4bc0bbe5dc76433f6d1c53813b" + }, + { + "alg": "SHA-256", + "content": "09f737197935a991cca064fc15ebdeed99f4abb8ed1065bfdd5eb03f80c6d8dc" + }, + { + "alg": "SHA-512", + "content": "6d90a013e243ed3531c1fde9f54145e615acbf2633f539f48e9ce9fa1238bbfe1c4abc7cd5e4303b66069484cb0a385eb58edc41e83cc34132405f6c0b6cd2fe" + }, + { + "alg": "SHA-384", + "content": "e1e56b3345e4c1700d1f1dea9fbf158cbf90365e2bfabe7b7761f9ebe0429a462a6e58a002bbf04505d652f459e57a17" + }, + { + "alg": "SHA3-384", + "content": "345bba32c4e969b63063324c14cf91feee9280767428feb2be4724813df7dfbb3e3c50a6eefebaf59dd07ac17e6458ec" + }, + { + "alg": "SHA3-256", + "content": "f862c79174a597a897d960cd69baa9136fe7f76ac34d94f280fae9ae086ebdce" + }, + { + "alg": "SHA3-512", + "content": "f8c96f5f2fd10aac7fdc13ace381f17525465c007d58c5598d3b643bd24fd7e4ec1ea8917a68be282b21dd51476edffeeb970ffa941218585deab559920fca5b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-netty", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-netty@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?type=jar", + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "type": "website", + "url": "https://netty.io/netty-transport-native-epoll/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/netty/netty/netty-transport-native-epoll" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13076360" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDLPXNHEWXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0" + } + ], + "group": "io.netty", + "hashes": [ + { + "alg": "MD5", + "content": "3b5fbdb9848155dda00520bde6cfb128" + }, + { + "alg": "SHA-1", + "content": "d9abc43ed8ee6848a02bd907b5869d9f9822329c" + }, + { + "alg": "SHA-256", + "content": "c7f5081822cf95ab5e02852455c52136de2e9a0269c0a13e61e78439d763a3e9" + }, + { + "alg": "SHA-512", + "content": "613366c4c79823ebf8b1ab905aa6beceb71c6eb7cb7c0f3e32af5b3e01c21e442455a22b6141426dee85e2d138b314dcf2a071d16566a5fb5f33fcf9ffeca84a" + }, + { + "alg": "SHA-384", + "content": "ddb0dfd0a5c78bf4ce24599c5c05fce77ed54202e1c7aaf2c15bf4e1d25d88d1c6589e11bc8c405fc657e83b67392197" + }, + { + "alg": "SHA3-384", + "content": "9933713975d61324c97fb2f85b4d0263ef62b6abb7cfaf9403a83d490ad037ae308fe5ef8bdea1c15f2e744a85abf19a" + }, + { + "alg": "SHA3-256", + "content": "ba441456c966a1f240882a85f1a51303e6d8d9043ecdee6a63c0a85017eb28ef" + }, + { + "alg": "SHA3-512", + "content": "96147d5625f1a88a80598edb7b7821434119a3acfb78d81e1b564734a5d0ac122b4c34e125757676d1c07b3dc9087edf87d667875012381fb426ff234e47d038" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "netty-transport-native-epoll", + "pedigree": { + "commits": [ + { + "uid": "3c3922fb2503d537b3690752e5c3bddbfab8d843", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/netty/netty.git#4.1.114.Final-redhat-00001" + }, + { + "uid": "7679b9efdec71b54d06db91eef40ad913681294a", + "url": "https://github.com/netty/netty.git#netty-4.1.114.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.1.114.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi/hapi-structures-v24@2.5.1.redhat-00001?type=jar", + "description": "HAPI (HL7 application programming interface; pronounced \"happy\") is an open-source, object-oriented HL7 2.x parser for Java. HL7 (http://hl7org) is a messaging specification for healthcare information systems. This project is not affiliated with the HL7 organization; we are just writing some software that conforms to their specification. The project was initiated by University Health Network (a large multi-site teaching hospital in Toronto, Canada).", + "externalReferences": [ + { + "type": "website", + "url": "http://hl7api.sourceforge.net/hapi-structures-v24/" + }, + { + "type": "issue-tracker", + "url": "http://sourceforge.net/tracker/?group_id=38899" + }, + { + "type": "mailing-list", + "url": "http://news.gmane.org/gmane.comp.medical.hl7" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-hl7v2.git/hapi-structures-v24" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12032480" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A63V46K3CDYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.1.1-gettext-jss:1.0.0" + } + ], + "group": "ca.uhn.hapi", + "hashes": [ + { + "alg": "MD5", + "content": "b10ecf312cbcc8c5da652beda7394c2e" + }, + { + "alg": "SHA-1", + "content": "c504ac2b134285f914f5b21e8c184ffb2aad6a0d" + }, + { + "alg": "SHA-256", + "content": "d4686d89e47fd80467f1bc1e76fdc58e207fa971b35356049502d23def38377f" + }, + { + "alg": "SHA-512", + "content": "399274e4d05df2b4351edeb3edf7766e4b8bfcc94080b7d551872febf41ddffccee0c79c8667994120e23307a1d38c8393bdbd4b777a11062f5a925571996ef8" + }, + { + "alg": "SHA-384", + "content": "011012191c7e2cd98c70833f59928cb372eff4b18ce0f369a2cc414d880f2ebdd240488b5daebf2e1cd6845ce43916fb" + }, + { + "alg": "SHA3-384", + "content": "e2dd8ea5260b8d1b1acbf36544a6139522eefb2cfbc2ed91fdce7c80306cb8dc4db8dd3afbbc5d0392fe2b6089373134" + }, + { + "alg": "SHA3-256", + "content": "4268c64d08ad7fdc89005e8f3010e8253678a31370f1dbf2ed0c00ec675c7fcb" + }, + { + "alg": "SHA3-512", + "content": "c033d474adf7667e1dd0779b8e299633dad9cd0b6034f20b2819a990731063f43a05f6173d80d74ef94d0afc64eca10e1aa896a2bbf29b3663c66ecf320d23c6" + } + ], + "licenses": [ + { + "license": { + "id": "MPL-1.1", + "url": "http://www.mozilla.org/MPL/MPL-1.1.html" + } + }, + { + "license": { + "name": "GNU General Public License", + "url": "http://www.gnu.org/licenses/gpl.txt" + } + } + ], + "name": "hapi-structures-v24", + "pedigree": { + "commits": [ + { + "uid": "c6fe830b4b45a9e75e304dc8212743c3f02506c5", + "url": "https://code.engineering.redhat.com/gerrit/hapifhir/hapi-hl7v2.git#2.5.1.redhat-00001" + }, + { + "uid": "193a2ec7051439654feaadaef5b327aec3eb604b", + "url": "https://github.com/hapifhir/hapi-hl7v2#v2.5.1" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi/hapi-structures-v24@2.5.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.5.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/ca.uhn.hapi/hapi-base@2.5.1.redhat-00001?type=jar", + "description": "HAPI (HL7 application programming interface; pronounced \"happy\") is an open-source, object-oriented HL7 2.x parser for Java. HL7 (http://hl7org) is a messaging specification for healthcare information systems. This project is not affiliated with the HL7 organization; we are just writing some software that conforms to their specification. The project was initiated by University Health Network (a large multi-site teaching hospital in Toronto, Canada).", + "externalReferences": [ + { + "type": "website", + "url": "http://hl7api.sourceforge.net/hapi-base/" + }, + { + "type": "issue-tracker", + "url": "http://sourceforge.net/tracker/?group_id=38899" + }, + { + "type": "mailing-list", + "url": "http://news.gmane.org/gmane.comp.medical.hl7" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:hapifhir/hapi-hl7v2.git/hapi-base" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12032484" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A63V46K3CDYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.1.1-gettext-jss:1.0.0" + } + ], + "group": "ca.uhn.hapi", + "hashes": [ + { + "alg": "MD5", + "content": "80e48e130193f49b54d2734045f4d08a" + }, + { + "alg": "SHA-1", + "content": "bed17f00222c0f34b10a2ff6ae8bedb9182d46b1" + }, + { + "alg": "SHA-256", + "content": "868efc7c0855f8a1a2a9fd7e76389bc03dca139ff00f4a26f0a58cac1ab0c76f" + }, + { + "alg": "SHA-512", + "content": "9a8e18532400b30076e99383f9bb0352bdb0d3842ef423fd45cd53792aa3f06d292435ba569f21ef7985bfa5a00260b15e7cfb4904c19334ba52ead1361a060d" + }, + { + "alg": "SHA-384", + "content": "ba93205d87a11f000b93e51bff9f576e849f359b24c8b750a6f3b0efe6e41ef4449c6adb00b85ef533a8aa82fa65ee4f" + }, + { + "alg": "SHA3-384", + "content": "aef2f9f47ce1fd528a9713c684124e5a7b1d2280af10c86da4913d43bbc560bf9261abe80fd0a8a74f6fe3108658b520" + }, + { + "alg": "SHA3-256", + "content": "be4bde41d4f96462a17fcae93801bda0f82dd2a89a5c3569b431d0e810fd1a10" + }, + { + "alg": "SHA3-512", + "content": "67f78a7ae49acd59a360d744f58c03bbd20bd1df9543cd521db4b3c9bbecd2990dcbb64f5156b0c9ccd4315c0deba972672decef2b8fcbf8043db63f324f480c" + } + ], + "licenses": [ + { + "license": { + "id": "MPL-1.1", + "url": "http://www.mozilla.org/MPL/MPL-1.1.html" + } + }, + { + "license": { + "name": "GNU General Public License", + "url": "http://www.gnu.org/licenses/gpl.txt" + } + } + ], + "name": "hapi-base", + "pedigree": { + "commits": [ + { + "uid": "c6fe830b4b45a9e75e304dc8212743c3f02506c5", + "url": "https://code.engineering.redhat.com/gerrit/hapifhir/hapi-hl7v2.git#2.5.1.redhat-00001" + }, + { + "uid": "193a2ec7051439654feaadaef5b327aec3eb604b", + "url": "https://github.com/hapifhir/hapi-hl7v2#v2.5.1" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/ca.uhn.hapi/hapi-base@2.5.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.5.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar", + "description": "Date and time library to replace JDK date handling", + "externalReferences": [ + { + "type": "website", + "url": "https://www.joda.org/joda-time/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JodaOrg/joda-time/issues" + }, + { + "type": "vcs", + "url": "https://github.com/JodaOrg/joda-time" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12150113" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A7ENB5XJ2DYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "joda-time", + "hashes": [ + { + "alg": "MD5", + "content": "f1c3e2ff7c7b73d17147ef8057dc07c2" + }, + { + "alg": "SHA-1", + "content": "93ed7ef12e8204bdea695fac5edecdcd0b797fe9" + }, + { + "alg": "SHA-256", + "content": "d4a6ab0835c1302941a04c669bb4da749194b990087145c6a93b0b14ea9dfc04" + }, + { + "alg": "SHA-512", + "content": "783e9fcb87cf434c8073401f16f32bae1a63b28a2cd65e5c6701e9765c60cf022f3504bf7eb1acb28a28e229acd2ffe3a5065bf729af1afd332c9b3c6d21cf42" + }, + { + "alg": "SHA-384", + "content": "87b07a75b188ec4c3c11409e6411916372470ca6e582390803176fb45cfa9301e8dc758e1fa78b3754f126a2fac47167" + }, + { + "alg": "SHA3-384", + "content": "297c8bafd43eb4b778aaafcbc3ab06bef5c51c283e72537160f75456ddf46520bd714dffca60e4cfc3a9f53978259e7f" + }, + { + "alg": "SHA3-256", + "content": "cb4f7162f751717b767ecbb8ee64e8eb917b526dd071a64ac3034fb58a297546" + }, + { + "alg": "SHA3-512", + "content": "23e800da3f0f422a8830c195b223a14d042108fee95408953b3b01cd21a44525ff724d0a30e8bc816c8940657555380e78d6f6ac28313972ac98a44c133d640e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "joda-time", + "pedigree": { + "commits": [ + { + "uid": "0b5ffe19811ecebec277b7e6ff038b82922161a0", + "url": "https://code.engineering.redhat.com/gerrit/joda-time.git#2.12.7.redhat-00002" + }, + { + "uid": "290a451396637ed9ad52cce61e40382e8095d8fb", + "url": "https://github.com/JodaOrg/joda-time.git#v2.12.7" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.12.7.redhat-00002" + }, + { + "bom-ref": "pkg:maven/junit/junit@4.13.2?type=jar", + "description": "JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.", + "externalReferences": [ + { + "type": "website", + "url": "http://junit.org" + }, + { + "type": "build-system", + "url": "https://github.com/junit-team/junit4/actions" + }, + { + "type": "distribution", + "url": "https://github.com/junit-team/junit4/wiki/Download-and-Install" + }, + { + "type": "issue-tracker", + "url": "https://github.com/junit-team/junit4/issues" + }, + { + "type": "vcs", + "url": "https://github.com/junit-team/junit4" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/5569109" + } + ], + "group": "junit", + "hashes": [ + { + "alg": "MD5", + "content": "d98a9a02a99a9acd22d7653cbcc1f31f" + }, + { + "alg": "SHA-1", + "content": "8ac9e16d933b6fb43bc7f576336b8f4d7eb5ba12" + }, + { + "alg": "SHA-256", + "content": "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3" + }, + { + "alg": "SHA-512", + "content": "a31b9950f929a7e5a600d89787ef40e42a8a8e2392e210d0c0f45b3572937670a18a524f1815508cd1152cd1eaa7275cb7430ba45c053be365c83c231bccd3f0" + }, + { + "alg": "SHA-384", + "content": "9f85c56a77c699eb87630b9e8224068a34c296bcd9aadb52248dd4665036f5bf1048fe75e5cb590b59e7855ca716acae" + }, + { + "alg": "SHA3-384", + "content": "590cfd9396424583879ca8ad732870406bab18325ac72fb2bbe188b9611278d6341700badf7cfc32525b8ff42900c905" + }, + { + "alg": "SHA3-256", + "content": "a06b3fd2fd1d9f4306b58125484e3605a395afe5ffe2c801e43ae462f366a430" + }, + { + "alg": "SHA3-512", + "content": "a6d25ce3c14f9065f06dfd0e68e1dad5c03bd5de0a302c44ca4733d2cb87ec1bc6f0abd36d65aeee8caf328b6881432c4b682fa4b4b1fa931c3c950de5129fb2" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-1.0", + "url": "http://www.eclipse.org/legal/epl-v10.html" + } + } + ], + "name": "junit", + "publisher": "JUnit", + "purl": "pkg:maven/junit/junit@4.13.2?type=jar", + "scope": "required", + "type": "library", + "version": "4.13.2" + }, + { + "bom-ref": "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar", + "description": "Core Hamcrest API - deprecated, please use \"hamcrest\" instead", + "externalReferences": [ + { + "type": "website", + "url": "http://hamcrest.org/JavaHamcrest/" + }, + { + "type": "vcs", + "url": "https://github.com/hamcrest/JavaHamcrest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/3224082" + } + ], + "group": "org.hamcrest", + "hashes": [ + { + "alg": "MD5", + "content": "be43e37f4c7b4f6fadba382933006b15" + }, + { + "alg": "SHA-1", + "content": "3f2bd07716a31c395e2837254f37f21f0f0ab24b" + }, + { + "alg": "SHA-256", + "content": "094f5d92b4b7d9c8a2bf53cc69d356243ae89c3499457bcb4b92f7ed3bf95879" + }, + { + "alg": "SHA-512", + "content": "e6c3f02e25070177f8101f9ca265046f8c9569f82560051dbfb1e6a28c9937b1a7453f68e9a37bfce0eb69bacf45a743d16e78add931e98195d260b8a516557e" + }, + { + "alg": "SHA-384", + "content": "3d31875d5f5c398db6e29ea4e57ad18c9afb00b0926db20429435e74c1733f0e87189621c1f5edbf443b10bdcf7696c1" + }, + { + "alg": "SHA3-384", + "content": "435d92c73b0a1d7ec1d1218953e2c382057658aae9bcd71359d2daeee48407ac4c4c539b4fe321e97147f3f568f0a40b" + }, + { + "alg": "SHA3-256", + "content": "c34903e0e52796dce65958939fd536f475c7cc3733c31ec0e731ea4586daceaa" + }, + { + "alg": "SHA3-512", + "content": "ce294d68caa56282e800a7d237a008a715c80f4f6f50240e7cba88154c429d30647150e4c53042569e791ddd24634ad7fe8711c0bc0d84c14663a1e5c1fab932" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "name": "hamcrest-core", + "purl": "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.2" + }, + { + "bom-ref": "pkg:maven/org.testcontainers/testcontainers@1.19.8?type=jar", + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "type": "website", + "url": "https://java.testcontainers.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/testcontainers/testcontainers-java/issues" + }, + { + "type": "vcs", + "url": "https://github.com/testcontainers/testcontainers-java/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12446181" + } + ], + "group": "org.testcontainers", + "hashes": [ + { + "alg": "MD5", + "content": "235a3ef37e0b91ec3ce8e68f769c539a" + }, + { + "alg": "SHA-1", + "content": "0f29b06c6f2aa69f4125f6cb95ed61d3efe63c30" + }, + { + "alg": "SHA-256", + "content": "9186c04549a3dcab3e72cc4e4b1e58aefd7d4c1f226dc55178beb2308fe84645" + }, + { + "alg": "SHA-512", + "content": "43996c46adf7710f214f253e5f6514826e6608ea81d4e97c6e41f2e4b9c6c456aed2ec8476ef017cd4731932c09db48ee9ccc335069b4536b1aaf5a242606228" + }, + { + "alg": "SHA-384", + "content": "78fc694ecb776af312422a1f05f890ad5b6e74310c2b5fda17ff269aaf9e3cafa8a1f3325bbcbafbc64f4c9c1be017c9" + }, + { + "alg": "SHA3-384", + "content": "537810f6dd96db7b4204137e14ac50d1be86bf908105ea266a985f4f1e2ced3f95793c4202f084dd2223d323a7d2c5b7" + }, + { + "alg": "SHA3-256", + "content": "94be57984cc5fea86a50e09685a5c6b991a67760d56296ca75fef3c909eff265" + }, + { + "alg": "SHA3-512", + "content": "9de941ef3feed1dc6992bca184b014189f4f4f587651f3671faafad576c5fbd0229d65a6f71357b15bdceebb851e168b0fc963aa81f0a68b13fbfa3bbf22cf09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "testcontainers", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.19.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.19.8" + }, + { + "bom-ref": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "description": "General purpose resilience utilities for Java 8 (circuit breakers, timeouts, rate limiters, and handlers for unreliable or inconsistent results)", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rnorth/duct-tape" + }, + { + "type": "distribution", + "url": "https://api.bintray.com/maven/richnorth/maven/duct-tape" + }, + { + "type": "vcs", + "url": "https://github.com/rnorth/duct-tape" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/2481848" + } + ], + "group": "org.rnorth.duct-tape", + "hashes": [ + { + "alg": "MD5", + "content": "af347a22d19d632616d7a3fb63024218" + }, + { + "alg": "SHA-1", + "content": "92edc22a9ab2f3e17c9bf700aaee377d50e8b530" + }, + { + "alg": "SHA-256", + "content": "31cef12ddec979d1f86d7cf708c41a17da523d05c685fd6642e9d0b2addb7240" + }, + { + "alg": "SHA-512", + "content": "d0a041a0e6eb26b92f1554038dc169a87fcf0a935497b50b93c13d78dde89ac26339b45a0d69a5e8dcf076dea0d187dbe81cdf97a045f092d0936717d8e08c30" + }, + { + "alg": "SHA-384", + "content": "de8dd0f7939e2127da9d1012fcf94ca672953d0ae2edfd45213e688e9b170ec1251b64f1b0fbf6e0394d39a49b84e548" + }, + { + "alg": "SHA3-384", + "content": "f74101a4dc718fb1968838e81b7cd256cbdd8831c9179b7a491e0cf2b4f8d3b5115bae78ef6eb1200874a60ad542284f" + }, + { + "alg": "SHA3-256", + "content": "b1c78074dece82fc2781b776222055ecd47d4040394c1ef29fd962c88517b406" + }, + { + "alg": "SHA3-512", + "content": "4ab545b668dcfe87bf03179cdc550cabd1026de19c39f55fd7b54e7a3aaa08905cae0f7701c0d9863062693f9146f2ea06a6eaea7d75c632225d13a6a3b371dc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "name": "duct-tape", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.8" + }, + { + "bom-ref": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "description": "A set of annotations used for code inspection support and code documentation.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JetBrains/java-annotations" + }, + { + "type": "vcs", + "url": "https://github.com/JetBrains/java-annotations" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/1096182" + } + ], + "group": "org.jetbrains", + "hashes": [ + { + "alg": "MD5", + "content": "7b06437ed47fa7b4a8ec8909f4fb9022" + }, + { + "alg": "SHA-1", + "content": "8ceead41f4e71821919dbdb7a9847608f1a938cb" + }, + { + "alg": "SHA-256", + "content": "195fb0da046d55bb042e91543484cf1da68b02bb7afbfe031f229e45ac84b3f2" + }, + { + "alg": "SHA-512", + "content": "839ec18d4a6f930ecd39827ebd4013c13a7176003543b8f60056770179032648faf1651e9e73109e811881b68a39757ca7e39731a61ff4a3461637b196fe4f7b" + }, + { + "alg": "SHA-384", + "content": "c9d045a68ef2b0d5b12aa00b636e43af22de4c02f4dfcc6b5b7b04fdd57c98c7246decd2e5dc3eb9f1b10d929ac33a11" + }, + { + "alg": "SHA3-384", + "content": "25ad733b460552705dd624634191beb909a6ed35f2475723faa06551d9542b87e724266f5f6003350c39965a92b5e54c" + }, + { + "alg": "SHA3-256", + "content": "f731cde48fa6a20e57e97a829184492cfa5fe0e14a5082e7810205c2b9f1ac1c" + }, + { + "alg": "SHA3-512", + "content": "b6698f9d65c0a364854717e64edd5df4fb1c97300d4dc3cc7ae7194b0b7b9e826b3d800dd362e2ad05417dac6ee3b2164294796c3ae46f4cbed840c2481b79b1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "annotations", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "scope": "required", + "type": "library", + "version": "17.0.0" + }, + { + "bom-ref": "pkg:maven/com.github.docker-java/docker-java-api@3.3.6?type=jar", + "description": "Java API Client for Docker", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/docker-java/docker-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11969389" + } + ], + "group": "com.github.docker-java", + "hashes": [ + { + "alg": "MD5", + "content": "481b06bf68d688731e4cfa9a6e93261a" + }, + { + "alg": "SHA-1", + "content": "8e152880bfe595c81a25501e21a6d7b1d4df97be" + }, + { + "alg": "SHA-256", + "content": "3a81e4145291fffb67ebc75c0e19a56416933e912d8f217c378940424d2329b1" + }, + { + "alg": "SHA-512", + "content": "b0b7fd71446b6df6abf94b50ca037f02bf199fc916479073a98b766df0f48ee88a724086c6bb1acddf1bd076f5a4b1f17ab49e1eb76de8b9b67495bd7858aa15" + }, + { + "alg": "SHA-384", + "content": "7d3ee4721aa9ef75aa5b0f4f34e667290b71f0138e56b3c1f4dd8ba9cc87c7fbc2062b89ca440e1ff50a671ce274f97e" + }, + { + "alg": "SHA3-384", + "content": "1b44e0c0922a15aa8d531d0571a559c00293f484ab561f6c97ea0e7f782415963349615c77d9ac910c6f1a9db2016683" + }, + { + "alg": "SHA3-256", + "content": "8d24cc66def78aebc1e79fd2f3443b9c327c1058cb95a2de668f4d201cfac3ee" + }, + { + "alg": "SHA3-512", + "content": "25b604afee8471a6ddfe718194b720afe1d1abad2c0812e06f7b726b6f61d7658c4e070e963233fe1752f92cabb062d81a91333bf31aaff451a35afa89384d36" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "docker-java-api", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.3.6?type=jar", + "description": "Java API Client for Docker", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/docker-java/docker-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11969392" + } + ], + "group": "com.github.docker-java", + "hashes": [ + { + "alg": "MD5", + "content": "c50f4ed7c7edebb9ebb0cc5d0f43337b" + }, + { + "alg": "SHA-1", + "content": "c9cde0239ce03376f6dfd0465bd461853af22196" + }, + { + "alg": "SHA-256", + "content": "fdfd4c7d81eaf8659e6ce6bdbb986228619d9c7b654dbd5c85abd044f1de0330" + }, + { + "alg": "SHA-512", + "content": "25a5096c5824d4a902b71395b537dc7c7e4c75a9078f67d8fbb55989485374056be58b773a96f8832f22ae13e5b7573ab5cbc83e590cb0294a70f76c71eb0dc2" + }, + { + "alg": "SHA-384", + "content": "aeab4dd9a793c43618d344e07e283699ae7c7aabd86848681e00039419fd10521122f4a62589ed18366830dc8477d400" + }, + { + "alg": "SHA3-384", + "content": "ee26e71c2b52dbc755291b2e87e5f2885486d4f535ac7ea07d741ef29378a8cc996998a4b1964cefb45274fde4a6725b" + }, + { + "alg": "SHA3-256", + "content": "281ff994e719924e351a70e3a9475e713726bd62ffa85ef8bebe7ce261e0006c" + }, + { + "alg": "SHA3-512", + "content": "6ddc39f3c0487d3d3f9aa33dd02cc5b3d5819fdbee302189dd4677508a6e58e349bf3f21c5ca41087903025af474dd117a3e5e83f8fb2dfa117edb8579f7899a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "docker-java-transport-zerodep", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/com.github.docker-java/docker-java-transport@3.3.6?type=jar", + "description": "Java API Client for Docker", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/docker-java/docker-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11969394" + } + ], + "group": "com.github.docker-java", + "hashes": [ + { + "alg": "MD5", + "content": "94db99427257067b10e09aa1ca626015" + }, + { + "alg": "SHA-1", + "content": "0d536d16a297f9139b833955390a3d581e336e67" + }, + { + "alg": "SHA-256", + "content": "321529baaf7ab7f50c3e9a56f37b6dbcd9ef4a0a2d8466110e202a6e07f88598" + }, + { + "alg": "SHA-512", + "content": "f9c5b9e4d4b687b81eaff0c9d9d71cd8db277fae9ccbd5f5ee29d9ff55e5e23c9695894506598a9506d37cd986503fbe0d60f73bae9d6a2720ec651c73da97e9" + }, + { + "alg": "SHA-384", + "content": "90cc8b45fb11e03c74192e99f8ccecfd5fb5efa1997e10764924f87509de6140f1b07a8925e4895e2e6de1b65be1aff8" + }, + { + "alg": "SHA3-384", + "content": "3881aa8234979ce17edfc4d9990e059cc46544f899956e59e494fb97873524df1a22ed03d1e5cc5fef33b9fefa645023" + }, + { + "alg": "SHA3-256", + "content": "69d0b700d6b2ee7bf40e6e46ecef76823f88a343bc2745610df6897f9847f0a2" + }, + { + "alg": "SHA3-512", + "content": "dde90f8f9dbdad3fb3a8cb6b0928613509304e1e5c7ef94fa5fc2605a3441f4461ed9b3a4a003fbe895e169da2a2e1435d4752de6b9b14e0153dd851f319e3f3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "docker-java-transport", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir-auth-tx@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel, FHIR Authorization, FHIR Transaction and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-fhir-auth-tx" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-fhir-auth-tx" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-fhir-auth-tx", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir-auth-tx@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-csv-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel CSV data format support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-csv-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-csv-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895398" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "abe01ad3e586c1e4f7f4f459e73a6828" + }, + { + "alg": "SHA-1", + "content": "445c9602323936383e4eade78baef1c8c7bace31" + }, + { + "alg": "SHA-256", + "content": "05d84a89066596f6833b3cdec5922d5da01bc572768ad779a9acca37c4d00e12" + }, + { + "alg": "SHA-512", + "content": "7882e1582eb0f7f84b6482a3650173228832caca264846607bfc4553571cc6578f0c6e30cc4c3027b152fc728b61264adf7b7d34bae7608175dcd0a75f3bbda7" + }, + { + "alg": "SHA-384", + "content": "6f33172791faa985a869cad281e43a535f1c4d5b0fd5e086a05e97f492156282ebb02b5f442952fe22cfa385df25fa7d" + }, + { + "alg": "SHA3-384", + "content": "2dd532a1ad5e4e1a314dbe65d29e2209db7b9dea08dd92ccdc73a128fcc9db7e1918c48d6a5093beb0f71ed2da8251d5" + }, + { + "alg": "SHA3-256", + "content": "662a851e2d9b27fbedfca4cf3f1573b950be67984d7f541ac977e5ce4f6d4175" + }, + { + "alg": "SHA3-512", + "content": "65bd26c2da1cf7c1bb8548e272588d74d5fd59ded65f41edceba1488e202ec99959fcc271fd5956fb99284a8a688b4964018be97ca6c477b71fa2b0b737fa34e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-csv-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-csv-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-csv@4.8.0?type=jar", + "description": "Camel CSV data format support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-csv/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-csv" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865832" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a688115047c16feaa426231a30596699" + }, + { + "alg": "SHA-1", + "content": "b5cf6cd1d119f40c6abdcc76d809cb7cf91e2b36" + }, + { + "alg": "SHA-256", + "content": "b4a15235bc7e08ddbc37c91244844fdb73e70a2b95afe63f4e816c2d0de3afb1" + }, + { + "alg": "SHA-512", + "content": "589ed415a2dcc23d69d96325c6347576c6bc6a9c9c0cf1685fc23ae2d549404b3d46433281aae4e5b1e820a55543583c93e9c6f7c23f921118836f6c55350e51" + }, + { + "alg": "SHA-384", + "content": "5a869a2ac678e2cbd0bb93d784c7aef61980d35d2e30acaf40ebc40263ec8f93dd45e0298b3fb1bf33aaf58b957dc52f" + }, + { + "alg": "SHA3-384", + "content": "6181ddb1c8bc84914e17ccc3cba2dd211aca483e7ec7180ca9040b9ce00d1a8fd9b98ac5e8669983f3dc8043e87b8c20" + }, + { + "alg": "SHA3-256", + "content": "5e2b58b38c14c28a5e5dfa51558da9771f29acf037fbb1ee6229ce90cb960b60" + }, + { + "alg": "SHA3-512", + "content": "bba90de94e7c0c362e1779b36a5c997ca4f4692a178339604afb956a4808313cacfcd722c54a1ab10abe600853eb8513ed7c25ca0c9b7847bda1b68e128ac1b6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-csv", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-csv@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.commons/commons-csv@1.11.0?type=jar", + "description": "The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.", + "externalReferences": [ + { + "type": "website", + "url": "https://commons.apache.org/proper/commons-csv/" + }, + { + "type": "build-system", + "url": "https://github.com/apache/commons-csv/actions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CSV" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=commons-csv.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866293" + } + ], + "group": "org.apache.commons", + "hashes": [ + { + "alg": "MD5", + "content": "670327702ca6f22103531d20d140bc9e" + }, + { + "alg": "SHA-1", + "content": "8f2dc805097da534612128b7cdf491a5a76752bf" + }, + { + "alg": "SHA-256", + "content": "b697fe3f94cfc4f7e2a87bddf78d15cd10d8c86cbe56ae9196a62d6edbf6b76d" + }, + { + "alg": "SHA-512", + "content": "a2778e0c92e858e10b10d00c4fcee0ad5e5113208ecdbec91239b5ce27ac8bdd75abc224d2138d555657f27d34e9e6e80f386d9229737a0474582a5fe7419961" + }, + { + "alg": "SHA-384", + "content": "7c54e09fdfd7a16a704f94c0a3232e1cffef65ae5a95d58ad6157329bb639afd3adad4da1a96a04c4f2e4d894bad4d57" + }, + { + "alg": "SHA3-384", + "content": "82f1c8fddf576befbc07b598c57cf8c08c586e737ddd6437d10e903825eb2fa68d493f063386dd2384636a35e3a783e8" + }, + { + "alg": "SHA3-256", + "content": "b7cd34dba41399b1e9e2747189b7f870bdf473169a590c0a17de191a6203a0c2" + }, + { + "alg": "SHA3-512", + "content": "9bb4227b127c9022f7e50e2d23d2b2c07db8b1152bbcd7346c3b4378d4df9f880e053f5def0d6ec23611bc631ef452b9e65bd8aba6e239f1e4c2456303638109" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "commons-csv", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.commons/commons-csv@1.11.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.11.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-health-checks@4.8.0.redhat-00001?type=jar", + "description": "An example on how to work with health checks ib a simple Apache Camel application using Spring Boot.", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-health-checks" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-health-checks" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-health-checks", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-health-checks@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-netty-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Netty NIO based socket communication component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-netty-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-netty-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234897" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "dc35033a30c447153f077ed5618ffc14" + }, + { + "alg": "SHA-1", + "content": "b9291a476c96a88cd70f7c543ea81ea05d08576b" + }, + { + "alg": "SHA-256", + "content": "8cfa1f1df23c7bd8b25a0b45e2527845b4df9f4f7f2543473c37de51f0b7c296" + }, + { + "alg": "SHA-512", + "content": "3624f8a0cb31637b429c533eee333d020be97af11cc464f486beb463f010ec8bd8e74e9660ca7ab3ca35921db35602ed92ba9a91709226b65c289d41894fe8d5" + }, + { + "alg": "SHA-384", + "content": "ca56fe4bf3bdeb26bac0a450b9e80506e8daaacb96530a526b2235de38ccdff5d488a565f10faebaebad77430a4a45b4" + }, + { + "alg": "SHA3-384", + "content": "bd564fb5504392ca3cc4e42af10ba58e054f62313bd33fdc800df8c39bc4c036c9349db757433b6d5f7e9b06f016767f" + }, + { + "alg": "SHA3-256", + "content": "a4904329888a4d7240a9bac4e6d020ffc66f7abd31d87ef39e5dddf0c195e9f1" + }, + { + "alg": "SHA3-512", + "content": "0055446e6077eb0266776bb9b0c99d8267c000a8658aab90a682d0db00820fd0135c149f3902ebf9a9ea707ee857596bd6895a3d74b4dbfadd56391b87d8bd75" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-netty-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-netty-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-http-ssl", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-server@4.8.0.redhat-00001?type=jar", + "description": "SSL Server using platform-http", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ssl-server" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ssl-server" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-http-ssl-server", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-server@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for An HTTP service leveraging the given platform's (SB, Quarkus, WildFly, ...) default HTTP server", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-platform-http-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-platform-http-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235004" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "255e1e5295181d30c79a00e595969eb5" + }, + { + "alg": "SHA-1", + "content": "1c3e5254eb166880f0e14b092480ae2beba5b97d" + }, + { + "alg": "SHA-256", + "content": "e8e932298c8161cf2cb280358f0eb40c57cb741b16b0d9c053e5a6a6cff09f15" + }, + { + "alg": "SHA-512", + "content": "ff25b75fa2d5fd40967d67236e73e37ae4665a8e67ba7a729b42f7d965efbcbd3f7e6566828b3727834f137f38147b1fc9ce272d4594626ceccd487a69a6567c" + }, + { + "alg": "SHA-384", + "content": "7d5ab8b2382dc38c65dccf8ba8c4b39dacf35e9907cd0ee800c18718c7017eab18d022a83bf5d2951c360fcf33a5286d" + }, + { + "alg": "SHA3-384", + "content": "964a7768b4037e76986545fb6bd0c152a9557c4a697bf37a77ec8310ba3361a9b83cf578d3966bc5ab660a4653178ad7" + }, + { + "alg": "SHA3-256", + "content": "df73c06f5ab73b202f814cd03c443bef118601cd930168cae9eb0d676f16778a" + }, + { + "alg": "SHA3-512", + "content": "c714e28e21ca50e6ecba0f0ad9d76da9cf9359f28e8adf1d21ccd496fcb15f70ed3413c51f448954d412cec177882c8868664d943d8668ca61dbaa4a3c9205e7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-platform-http-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-platform-http@4.8.0.redhat-00017?type=jar", + "description": "HTTP service leveraging existing runtime platform HTTP server", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-platform-http/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-platform-http" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233639" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "02d970b9b649ff352d72953f1d43b9b8" + }, + { + "alg": "SHA-1", + "content": "0a83a9cb3ccf3ae2dcbd361aff4b64c492f17a47" + }, + { + "alg": "SHA-256", + "content": "b1ed25107ed1165feefa64981bb0648f396d3246c7f68aa028550fb4a13b2ce6" + }, + { + "alg": "SHA-512", + "content": "e745beb53ea80cac7e2d9f1b4bbb7ab86cb22bad92e8a5f2b63828f2ff1a8123459b754007f2d50c94135e602c893fd134daaaf2b20f9d274719d48f6b6696e3" + }, + { + "alg": "SHA-384", + "content": "6fd019c6b47010a531390d89473b73e85fc9b621cfde345fc5b6617194a76cb8e8e17ddfd86a80decd48db8e25ff9522" + }, + { + "alg": "SHA3-384", + "content": "8a3bb5f6030b06524ef106f04975c0a850c94e45b6d4c05cad821048ec19f6c2c3be629d6a6beebe0c70bbc7c95c6af2" + }, + { + "alg": "SHA3-256", + "content": "09e8d05f1c48866f372ceb4fc887d9b9694ec5cbb41ff9d591460c9e8269a0d7" + }, + { + "alg": "SHA3-512", + "content": "7484f72f75afeb654f87cdbf4053d0d0bc02dc7b01368e871d947e958b3b92e80689b9d7b3ebc43381acb2a77993e0e510ec30769fbcb3f4f290c0f94ceedd5e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-platform-http", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-platform-http@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-client@4.8.0.redhat-00001?type=jar", + "description": "SSL Client using http component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ssl-client" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ssl-client" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-http-ssl-client", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-client@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-camel-server@4.8.0.redhat-00001?type=jar", + "description": "SSL Server using undertow component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ssl-camel-server" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ssl-camel-server" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-http-ssl-camel-server", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-camel-server@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Components", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-undertow-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-undertow-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12873302" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "68f80beefb558cd95e082d0bff0d5a93" + }, + { + "alg": "SHA-1", + "content": "849df0e6d6c3ecad772bb5a60092a3c192b3bd21" + }, + { + "alg": "SHA-256", + "content": "27bcf117378b14f2b18874956bb17ca4619444f7bbe0eb0d500701ff4d827046" + }, + { + "alg": "SHA-512", + "content": "03455c27329d5dcfbc79201c77e30e673cf859d70de6b1c85ba2d0db6484712493b56fe8ed14618623ce74ff654c45a51beb7674c1c7a26466b719fbb7164f6d" + }, + { + "alg": "SHA-384", + "content": "f141105737e5a7d158d912bea8ec9aa9853028d12b18738b03ca946e414d10317ecb8e9bf32819d3ef8c9acb018579d4" + }, + { + "alg": "SHA3-384", + "content": "02be51b0e0882e5a734d70587fce2bc28ba03034d0990717b2a6743825a06ea5e8276f4a8b633e03712d4c04fcf296b1" + }, + { + "alg": "SHA3-256", + "content": "bae1785663629565f674e38d49fd5b5dc988f69faa28c97c33c0fab9d6b77635" + }, + { + "alg": "SHA3-512", + "content": "dab3d52d3c57657ef3da0bc3b9147095ea1aec8495ccca1ec5e18e65d0a740d7ca76e3222938f18e7d91004c3498df1ffaf5135dd09665dfaba38ac01eb8ea9c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-undertow-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-undertow@4.8.0?type=jar", + "description": "Camel Components", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-undertow/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-undertow" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895446" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "28f771fbf8bd010540783858966ca346" + }, + { + "alg": "SHA-1", + "content": "6605c018317b8b92b13d02a7e20c5355a7f428cb" + }, + { + "alg": "SHA-256", + "content": "f98e2b143a24a4a9370e9cc4231ef15b89275ee2723f6473d6621b47cf7fd6d9" + }, + { + "alg": "SHA-512", + "content": "13c1152fce7678f9a3c358516bf6b9c5b896eb4be9c40141ca452b3728df0662caeadc7fa2197ebd044ab98798959c90fdbcd0d0fb5414e5368e1710c2f2e01b" + }, + { + "alg": "SHA-384", + "content": "9562256b87474b84e2d45f638ac0f3d2ce08bcb6879ade2f410517699b446dc705e35a630963f8e8043afd3b026ce054" + }, + { + "alg": "SHA3-384", + "content": "d728ef88b835fc7546a515729b97f42004b099f9f6ae337d22b0f48288fc913c8793c91ea28421201498aa9870102b5c" + }, + { + "alg": "SHA3-256", + "content": "9f181cdb2caf7aa1374668218cd1156d86e5fc42e4aaa214664a8233fb546da3" + }, + { + "alg": "SHA3-512", + "content": "521f6d5edb2d9c0ad1fb603e12206f82e3ef426e938d61ae194baf70c7d80235d4684912beb43c392e4535f953546a1f1b6ee7a91403df1134e7aa148af83be6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-undertow", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-undertow@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-base@4.8.0?type=jar", + "description": "The Base Camel Framework", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-base/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865785" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "270da3b849ce3e81950206a4e0aa1fae" + }, + { + "alg": "SHA-1", + "content": "727fe4a316ca1c4b14bd118a9aa97baefeb8c826" + }, + { + "alg": "SHA-256", + "content": "6e41daf8a4b57455f223edb43f9f5c8af9cda9c87fe71faf8a0a5c70524ae81c" + }, + { + "alg": "SHA-512", + "content": "74ae73d5c3d8e38b6a9b1b0fd3e6e538796105ef4e41491fdb6fe3dfe1c114fbf83cab42d89d990f23a7f99754b6bfca79b0c7bb43dee587013dd05ab7e1f86e" + }, + { + "alg": "SHA-384", + "content": "622a9f541e35468b5a76d8bea505bb3a072d5f7118ecc545f6716632908b3f5925aeda74527d6b94f8660785bb7d678a" + }, + { + "alg": "SHA3-384", + "content": "683c399000a9821606ef8b53a0906a3f5e41efce3e0b2c509838c5c4c24d726c5f752a735c7fdef5bf9763ef5776a391" + }, + { + "alg": "SHA3-256", + "content": "f071ec7abf94cb3bb7c6696d3214ad708a32d6726ed98a85ba3784792b2e4cc4" + }, + { + "alg": "SHA3-512", + "content": "d93abe6a2e9ed86aabc571f1d6377b585fdaaec774830898d5be9f82e7d0df12e6240646fdb50e98ec4b797c12a141b8484704ba2760aabed143ef058dfb9ad1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-base", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-base@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-attachments@4.8.0?type=jar", + "description": "Support for attachments on Camel messages", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-attachments/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-attachments" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895414" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "4bbddb71ba8a10b8981d612e7c910582" + }, + { + "alg": "SHA-1", + "content": "88f6ae528e79d4ddfe5f0cb6203af9d1d59b8e33" + }, + { + "alg": "SHA-256", + "content": "fc655581917c67951e978fb06cdaed4999a03fa748f938cf83e507eeff57104f" + }, + { + "alg": "SHA-512", + "content": "df1fd445bba2b7c00ca200ef12cc6a22a0a7dac5a6785d528e6fac3191260fe213fe78f088c1ee6dd1969e3edbed2e122091cb5b70fd4230c3018ccb669cec3d" + }, + { + "alg": "SHA-384", + "content": "e22fcab5b0ccf6cd4181054770d4dc19dfc7906f3ef5c420cc5e805e8ff67ab6f1a26b53b95ea4a070c33c0a2f364776" + }, + { + "alg": "SHA3-384", + "content": "1d9efb1ab395c726f275d55cc8771b099af2f9c15e4aacfc4afa18e9d5268eba3972ff239064384a353ed832c424209e" + }, + { + "alg": "SHA3-256", + "content": "752f33ce4eb873c980a154c49324c3d8c32630a46b20f31d664d7d737be8f9f1" + }, + { + "alg": "SHA3-512", + "content": "f0c4ad0e751a56bf8d032d480af980ff7ea34b899f76fabac930ad2416c28ff3e62cca68d1cc83778d7df49f0a8a5c9e5cc7818d3a84b0e08031eb9d26990a4d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-attachments", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-attachments@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-http-base@4.8.0?type=jar", + "description": "Camel HTTP base", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-http-base/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-http-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895426" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "30300737decbf78b642bd4899c15ffec" + }, + { + "alg": "SHA-1", + "content": "3c6f0955d4038c1f64c88ee77a8deb747c744090" + }, + { + "alg": "SHA-256", + "content": "0125e5517b5e627faa078666dfa91f0b09eb59966073e8eaa602a5508fbb7f35" + }, + { + "alg": "SHA-512", + "content": "e14fb70f94a434633e4f9aadaf6a54197aee6d07d85028dbd0ec7d2d42ecc33ce5684622f7560fde1d79ba725f314895ae3cf2b00f9e30b88dda13e5ab476eeb" + }, + { + "alg": "SHA-384", + "content": "a6a9108becfa5e847612ccef76a032e52ce851609a9301402dd7b46e27d5a2da4e61a97e83305f9adcd9271ea3e1dcc9" + }, + { + "alg": "SHA3-384", + "content": "144e8b7235b78f67348382fcccd151f270439982f4130258e3f0f25533288a218baa7fd4c681141763fb09068cee6a71" + }, + { + "alg": "SHA3-256", + "content": "690536c4fbd6943ac9dcb6cfcb8e2b29ce494243641fccfd83c0b25c10f53f58" + }, + { + "alg": "SHA3-512", + "content": "857cbd8e3b4404c0a69939c858851de473fa32db322b0420be7f8335dc5a91e487d20e10b30cca489fc6e31bb4858a178bfe4d6a8b4bb1ebf479e7c9f36c0db4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-http-base", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-http-base@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-camel-server@4.8.0.redhat-00001?type=jar", + "description": "SSL Server using undertow component, to be deployed on OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ocp-ssl-camel-server" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ocp-ssl-camel-server" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-http-ocp-ssl-camel-server", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-camel-server@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-kubernetes-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Components", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-kubernetes-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-kubernetes-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234673" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "b59420e5737cf6b9e627d33577713386" + }, + { + "alg": "SHA-1", + "content": "68a5328b10bd70a1f4e91e9276a7297bd3a6c911" + }, + { + "alg": "SHA-256", + "content": "593d5034f527b460b0bc0db989a409f24f4bc5cdc161ee33ac04f93252ab76e5" + }, + { + "alg": "SHA-512", + "content": "e9adf1e97cf4f81edf23a8806e62d6f97b787d424a6cc1a58be41b7a9632eb06b4d13e76eb3e880e7e4a3429e9d7d294b82865a82eb63abec051035b253bd12d" + }, + { + "alg": "SHA-384", + "content": "1f3f7690c9751f9b9ff85325696fe36c9cfc116fc397fa310eb42427ed1ae7659ceb554abea865255df8467f628a0ae4" + }, + { + "alg": "SHA3-384", + "content": "1603749513727f388de96ae9f195872de0abf2994bb27bafa7c70ff24748bc5ea399b6c64e943eace0ec2eedca0d6ea9" + }, + { + "alg": "SHA3-256", + "content": "04e5e0d3819b5aa943302daffeef2756821c6ad5f1baeb4583e7c3e32b5adecd" + }, + { + "alg": "SHA3-512", + "content": "9678569bbe39e50980b3ef2fd1084f327d20af646feb4ebac322d42a8de950caf26e36ae9baf3c64bd19de8e52c853474fd5012b4c0baebf562d49cfde0691e2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-kubernetes-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-kubernetes-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-kubernetes@4.8.0.redhat-00017?type=jar", + "description": "Camel Components", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-kubernetes/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-kubernetes" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234216" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "5412610fec1b845409d7966166340b41" + }, + { + "alg": "SHA-1", + "content": "cd7249bb984232f71809a57afabfc39f5ae9df28" + }, + { + "alg": "SHA-256", + "content": "79e9be9d4a26069603852c055c67e158f17fda0235c470deebde7f70c0aaf48f" + }, + { + "alg": "SHA-512", + "content": "17ddab86d3a7a90e0c930259d7c53a0a2916ed5f2f0982b30877d404aa40c9a8e99b104f70ac80ab75d05870661082561eb4d5e88884ba66fb04ea30eacc44fb" + }, + { + "alg": "SHA-384", + "content": "e2545d31553d398bc0438b84452fda7fe4c97bd0e845ef9a80077add46939ed484e892e96cbdc8eabdfad62380d4686a" + }, + { + "alg": "SHA3-384", + "content": "00c4f1a28df05d8b0243132a485fd71040c8bcb4803ccfeefc09289db1a64d5474f7314470271257d5c6760196aec8b2" + }, + { + "alg": "SHA3-256", + "content": "af9aadf1d283cc011292b99619c327ad5dd9ed75459bb896536d2c8ac41c6381" + }, + { + "alg": "SHA3-512", + "content": "165af8296072f3166cb71e9be75c2f691e699e6967fb1317935d9d81edcbd356e51e7609363fc3a8bc2cd2fb46f5fb6a63657c956f991391de93e8c474d1a86f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-kubernetes", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-kubernetes@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-client@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021723" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "e90bd5c117501e761b476fc06144b54a" + }, + { + "alg": "SHA-1", + "content": "f9bcc6635cff7a4c107b45579e681a6514bbb3ae" + }, + { + "alg": "SHA-256", + "content": "441e5ff26673a6c2c949d9ce39b07d39084188ccb3f96dc8151e1704bd970ca2" + }, + { + "alg": "SHA-512", + "content": "35e2b41b3944870e3ef34050692047669030db18a374075c89742cce323efc777960463391ac6c848d13b27e8faaa0fccfba9930b926aeafdd1ae6e405ad2fed" + }, + { + "alg": "SHA-384", + "content": "8243ba6bfe0c101fc986cd4a80bd12c1f38e39edfad5d225181ef1df472a61d2b8b920a6d8e4d553ccc351fab6704fb0" + }, + { + "alg": "SHA3-384", + "content": "c6ad5e8c050a71e7b9b0acf1de0d625843b347040377c743ad5900e228248732e858485991ea1f8845ba60e426093418" + }, + { + "alg": "SHA3-256", + "content": "296a520f55776c1c2c4c90600b46b4aca5e5a6ce3211aef8e475f6b7a7dd24a1" + }, + { + "alg": "SHA3-512", + "content": "9ff68b9c33cdbdda1bc864fafa7d729dd9f54f202bd86812a5071db345c0e8620711b3122d4788fa147f6ad1ca2cbaa03c3a6b767e92a6c4207c89d0be5f8329" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-client", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-client@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-client-api@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client-api/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021810" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "6256daa5ce832d36638f06cc36385db7" + }, + { + "alg": "SHA-1", + "content": "e61c16c19f393bfd5e0807d8cedff44a6d4610a2" + }, + { + "alg": "SHA-256", + "content": "c26d34ad52165480b68483a96a4956f9bf203673d90ed43d14687505b27727fa" + }, + { + "alg": "SHA-512", + "content": "b4b7149cb820f1eadd0718d23ccbf08c2bc9b8a2a3eeb2f471d716d94637133f1fcc97aa2a610ed2603dbe752ba6df9f1853551b4335803dd8e52ff20e3424aa" + }, + { + "alg": "SHA-384", + "content": "cefaa3a115a8bbe5df94b503a567b84d71093400f64aead947c7208d58969882d72fe147b693def3ea17db926eef50a9" + }, + { + "alg": "SHA3-384", + "content": "9c91c927c6d34bf36b355c4ae59b73d9c796d2d4e987ffce4fd8052dbd9b2bfff5a9a1285905e36a7dd322b3811cd767" + }, + { + "alg": "SHA3-256", + "content": "39b8a87ab4f88c014015e31a0dfd9768f83648a1e7042736a9ed9f958dc935f3" + }, + { + "alg": "SHA3-512", + "content": "300d85bc201af2e5644702768cbcbeff85831fa242623070641e8f52b90717102f2554fb5361545aa3f3f8e646cb496d3b2da950074dac397755f87bfd16db18" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-client-api", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-client-api@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-core/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021735" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "accf4337027ab4644b0ddfc1c272796e" + }, + { + "alg": "SHA-1", + "content": "6265d95641064e60be90fabfc91983ae5138ab16" + }, + { + "alg": "SHA-256", + "content": "07d9217df8c570d3f416684bc2bca8cdbf4ee72aef48ccfe595553d0a514b4b2" + }, + { + "alg": "SHA-512", + "content": "b0d2eefa6dc46bc869df4419666f12b87314d4cf884e1cc7dce62d64105535ab567c326dc55b7cc6df6333cb79d5f4921005f33387529d958c0eb2372e66bd32" + }, + { + "alg": "SHA-384", + "content": "12aa006996ad477af1cb0e6f07d59bc98860b45b6cd126bcfac23a8bbaa5a089fcf3cdebc23ef239456fc289285a720e" + }, + { + "alg": "SHA3-384", + "content": "24af368064a2cbdd0f52a7a748e6efee0adea1b811c249659202d876bec975625f07c480e52a5f344db0b439c88d7dbb" + }, + { + "alg": "SHA3-256", + "content": "b73242a9fd868e490cb95c93e5fbd539cdaa954ed75afad3bf9179dcdc423365" + }, + { + "alg": "SHA3-512", + "content": "928b84a9a67eb5c51d2c9734deb4e78a76ee95ce6b71789d1d3d63ca041d22f32df0d20b95462c401e56362c4ad569d46105bb324f96e4382189376418db0247" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-core", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-common" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-common/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021554" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "bc01a11015f01051345d12cf667d8db7" + }, + { + "alg": "SHA-1", + "content": "52164381211b4f06e81078b6b4cde94c8b74dfa7" + }, + { + "alg": "SHA-256", + "content": "6e461fd6ce681c67e990eb7ec945a61dc684287e883269f9642e8eb67408fd57" + }, + { + "alg": "SHA-512", + "content": "6beccb9dd59398b06f5af64f7edbca816cc628d10c433dcd4aa4271598275d10b0604cb513cc7e856526f988435653e12c8f78d4dd80a5b109815ebbdecdb4cb" + }, + { + "alg": "SHA-384", + "content": "48cad2190627962ef6f9f31e47a19bc4436d5b5f4c8a2d5dc239a394a3c5fb2c0e50abba99ef02a462baa43817afc8f1" + }, + { + "alg": "SHA3-384", + "content": "f66d744f872daf665e9ea1debbd0196fac81ea3b1a174fadc1f58b54004687fce5264c65d420a89c074ded474305ace7" + }, + { + "alg": "SHA3-256", + "content": "a1ff89531e1b66ad2e5777d366629c6baf0f4a89e0b013391bfb08bb56ddc7ad" + }, + { + "alg": "SHA3-512", + "content": "90aa016fa112972f376568a1e78b6eff7265f64c724b021c57728323b830eeecfa14f5deee7ca9b40f466e5837b53310a101ed0fe080a82c4801dba18e0336e8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-common", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-gatewayapi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-gatewayapi/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021796" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "23d01db37854d05ef83297905aa9d732" + }, + { + "alg": "SHA-1", + "content": "f33e8804c504a6061d4cd114693807ac6bfab431" + }, + { + "alg": "SHA-256", + "content": "8e669552f38564d278f8b40ab92f4a0972bd250ff3499fb8ff13327f5e6ac4b3" + }, + { + "alg": "SHA-512", + "content": "2faa58fc9e3d1e0b84b2f62331a869f3a4fcee8c11504efd5860d60227db246c16c1ed487c10efe91a8d25fd1e7019ae97e14a1fb4777f138f14e5bb1a5f7ac0" + }, + { + "alg": "SHA-384", + "content": "2fd52c01c5ba719e8ec65eb93103e19e850f3e773ea5e23c2f714c6530910acd6f65611e801de607a992c15440185356" + }, + { + "alg": "SHA3-384", + "content": "a336d1eb04bff543225b1c85c01f947b1277d7b64fbe0129884198a03d3987eaa3fce74367a5df7bc07ac07b93818391" + }, + { + "alg": "SHA3-256", + "content": "51b88793e904cfd64acacf406601bc781823b4b157eb324a45a1d9a8c4fbcfc6" + }, + { + "alg": "SHA3-512", + "content": "67b4d00e095761c6274b367511a4993575a553c45b176a12fdea6d06783b7d878290382c8c6cc404a780f9cb30a116054528968e5d2b56c656c895e0841b59be" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-gatewayapi", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-resource" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-resource/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021669" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "b57d23d4759a812f85dedb26e4668308" + }, + { + "alg": "SHA-1", + "content": "7758745d6f82ec29d1dea266724de284929ff0e9" + }, + { + "alg": "SHA-256", + "content": "ab25f6881a62cd3f478bd0b32d726715a8a5d5f6d147da4ecce110a6d52a7243" + }, + { + "alg": "SHA-512", + "content": "a79a08f3c4a4c52176a4719b3b1a63e7ea69c480f03e2ff1452732309c5a5ace0cb2caa0a902b49b434b95831a835649a71a923f29cc27b54cd6f65f93b110cc" + }, + { + "alg": "SHA-384", + "content": "88b0ea1c99ee60bdf3cebedb0623585777bb52b85c668088c1cf9a9d1921aab0eb3429c6e582c1293091f1ebc536c88e" + }, + { + "alg": "SHA3-384", + "content": "721c20dc6bde47e0e4e1dda143fe5b1b42846aa21e052d886dc2ff6e8435eb1dcd744e903eb0cc7f562d2f99892b478e" + }, + { + "alg": "SHA3-256", + "content": "008a320f77611521c6c8e73be339f9ff3e58f831df66e0f0c3feb2c08c5f99e1" + }, + { + "alg": "SHA3-512", + "content": "7d83bac6c362a3d9bc0ba6120b0c556591df31b7a81df7aaa35ee4b7b90ba4aa5b1dd8ebab9cefa2e9b006a6faa4817be09482c9e81156c9b773ddcf994ee72a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-resource", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-rbac" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-rbac/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021438" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "bbaff50a8669eae4a97d6bcfd59d02ca" + }, + { + "alg": "SHA-1", + "content": "ca9c268871c3522bd3082fbd7392819c157ec5df" + }, + { + "alg": "SHA-256", + "content": "50b43151966cdcf49463f2a4d931833b42cae539d848870db990c4566a12b9c9" + }, + { + "alg": "SHA-512", + "content": "f319d5a2bdd4526bab267fa66a19dc6e0dd6d03958abedef631b3194bba2887b1fad9db65f453fee88d9f7e21a6622896c849e32159908f74b5750f0396187fa" + }, + { + "alg": "SHA-384", + "content": "7a8ce4e826abd5fb8a760e8ae6e40f9adcb2a9977f59a0fb57a4537975a247d34826d5bc6f824b91ad4555d5ef0dc433" + }, + { + "alg": "SHA3-384", + "content": "d3ba940b04c701567e236b80d4fd2150fd11b09703e140cf1cc4fea43d3975832a627c836faaa51ad4c8d1149d0d3169" + }, + { + "alg": "SHA3-256", + "content": "bb3eb8b89554dd550a7637b8fed0b5051e7996f58fdf6a4abe71722cbada99d2" + }, + { + "alg": "SHA3-512", + "content": "10e4de4a124c29222befa1a21681f330e6e9c9399619a85b1e0a4be0f0e299c913bec00b0afb6253b35b4ae28a072d2e868fad245a2d8aa0e5c7095ad612705c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-rbac", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-admissionregistration" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-admissionregistration/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021598" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "7168660e9ea0dc9b7ab825e5c00c326e" + }, + { + "alg": "SHA-1", + "content": "88ef509fd6f8d189a8dad17361abf474cf99cf52" + }, + { + "alg": "SHA-256", + "content": "5dea199210e49e478a8b32c9c52c0182ed0e46da81cdf374fe00ac064a42df12" + }, + { + "alg": "SHA-512", + "content": "a19a4828dade3a4a4b6ec1f3e56d4efed963a525a1392e4507fa857f145845b8c1e246a7241e4c000f5f632ef183f3011d930fa09925599e5e6c76c91a2cb2c2" + }, + { + "alg": "SHA-384", + "content": "c38b58f9a92e1a18bc67a46e754b4a409a24434712e711d7939ec8e9a025a2bab7f4ff98683ffb90568c57ee46aa9dd6" + }, + { + "alg": "SHA3-384", + "content": "6f66db1aaf9b619696a5311e546625b808b51b84e512571afa09f38620791ff39b1a7b55d1426044afb91bc0e603d3ca" + }, + { + "alg": "SHA3-256", + "content": "5322d52c66eacc92c04fa96a9d526b520ddb36ae3ea6320eb5a0826296758acf" + }, + { + "alg": "SHA3-512", + "content": "795dc5ba1ec65ccf0c4eafc273f5133e80e5ef3af58ee30413771c56c50627834101d94b5db34abe80eac1dbc6f69979d9168688e012592b37163e62b8cc8fc0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-admissionregistration", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apps" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apps/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021667" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "adc9c1f3f893aa2f3d64683500de50ac" + }, + { + "alg": "SHA-1", + "content": "f25fc3d3d9ed84f5e16707d4c7fe87cc35cf7cc2" + }, + { + "alg": "SHA-256", + "content": "257d6aabd8c4fd3db87a8e59e39849b148dc74142e41cf82d9c894b016abfc62" + }, + { + "alg": "SHA-512", + "content": "1ce984a6a4185cf264a5a06fc1ec822b99089d3533190230cb42d33a276700c136c4bf2a003e4d912f85ec9ba8ba2bf4a95f40f69cbb39e93e3feeb677feefe0" + }, + { + "alg": "SHA-384", + "content": "ab9f85a314043ad54e39dd3ef50d9a81cbe057211662ca04aef1cec539f66c3349736d1135970fa38b9ca5683f5296c2" + }, + { + "alg": "SHA3-384", + "content": "8bc670321aa6548b31c89e046d93b923203d2a111a5f3e995075fc69492691f1ea2667d9db09b3459bb3140fad16df09" + }, + { + "alg": "SHA3-256", + "content": "dced76e0888758d33ff5c7522a575a9bbf806512814f2bd78fbca2f297e48dd8" + }, + { + "alg": "SHA3-512", + "content": "d51832f7a78b9b8eafaef93ed2c986e82f583e6c3df8abc5867672643ce5b10dd058501e074ab65197014376e63e7f0cb19852adb8d55389020f942b04283517" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-apps", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-autoscaling" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-autoscaling/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021449" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "bc272f0fd61ea734ad2f708574e8314d" + }, + { + "alg": "SHA-1", + "content": "c90f8232215f529f76829cfa35112ea69e2e4621" + }, + { + "alg": "SHA-256", + "content": "a586236a1ffb9fd6a78198fe105b68422fa30f389d6ef57133e7331df15aa1e0" + }, + { + "alg": "SHA-512", + "content": "c7a4e757a8fee34659e8c1d959c9b92e1458a0e95b60648008565fe4dc360b077d81844949897f76cab968903f7364a63113a1f8b404a581414ddcc8c2229989" + }, + { + "alg": "SHA-384", + "content": "17eb73e2a26ebb347fda6ff6eefc18ed2bd6d539da7bf2a1a803141c6e5c7883faba84374fb9f1117052d8c91f8f8e31" + }, + { + "alg": "SHA3-384", + "content": "27f040154f8bce427625d024f37257119419d77568c630491ccc9b3eb7e6e19736e1f351589826842f0da11ae11460e6" + }, + { + "alg": "SHA3-256", + "content": "58eaf08708dd627cfd75b4eb0fe07c259816a864de0ebb7a9283ab099a166a8a" + }, + { + "alg": "SHA3-512", + "content": "ab3da84258d9059801a60521fa18eb1b4e89d21cf55a8b08d53eea60ed644e6d9a3366c1ffee098f4aca89bb1b0298b4ef15b9dfe333c6de27198a71ca611e2d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-autoscaling", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apiextensions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apiextensions/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021492" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "a498715a4dd53940f2b3f065348e42d2" + }, + { + "alg": "SHA-1", + "content": "e4c7e11a59eb4b5eef320476d7202a153625edc6" + }, + { + "alg": "SHA-256", + "content": "18e2c58aaf1ebf3dc6b084f0b1ce8379db7eaf8bb00eb225faaffb915ab6fdd0" + }, + { + "alg": "SHA-512", + "content": "ad11e9d51a7d9cc4c14776058e02f350e1129ec7d48095d64662fffc02f661bf014ca44dc6c81838d6e1b03ee78485309297ad0d1e5500db195195bdc024d5e5" + }, + { + "alg": "SHA-384", + "content": "51932faf74b89d55aaf5228496992a2d4c4b3f13edb3a032d27b379fb6a8fee13ce66d1c432a2239292aac48dd6832bc" + }, + { + "alg": "SHA3-384", + "content": "60033fb7552c9d04cb0d0b35fc3595124969f5fa946f1013f742a9f9a1623a78f62a5b2a0e39f6b64ddf3f68df520365" + }, + { + "alg": "SHA3-256", + "content": "aca3196b7aa79559fd82396cda9df158a22388505e91810a2431fee8c2199dd6" + }, + { + "alg": "SHA3-512", + "content": "477494d943e591f2a1d77b45a7f87f98503998de942fda0d9150240ed0c84c121d24d9a996f9cca39c53ae49fdff21fba1bcb106a7d998c5a1250a3946fbf997" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-apiextensions", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-batch" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-batch/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021692" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c80070060f36c3ddc3b46f754dde7637" + }, + { + "alg": "SHA-1", + "content": "58cebfb3e3c8cbcbf645fa2828db0f0b37eea812" + }, + { + "alg": "SHA-256", + "content": "d55f390661f0ef64ab75e3775c10083222f4c071023c25ae3e941f1d84c7c2f1" + }, + { + "alg": "SHA-512", + "content": "217ee82e8753be8cbd88ba2de98f4843d94422e9b97b2edaf92644cf8ea78cabd2dcaf4b8b1fa985e7dc863745fca1d2213b369183457f33a1ba0ea595ae513a" + }, + { + "alg": "SHA-384", + "content": "61a5867525bccb48974eacfd410d357f9501ccd975dc7047c2fc25a1cb71744e99eae617d3f3fba5d1fd697ae132b6dc" + }, + { + "alg": "SHA3-384", + "content": "23e4dacbd63b4fd1d70d09e5e1356190170758d9c9d36b7c81d02cc623856875f2f6bfa377e7fd1ba22224bbdebac94a" + }, + { + "alg": "SHA3-256", + "content": "d007770b08fd1135ddbce5e04fc6abb07682f109ea12f5c56917b4370b63840f" + }, + { + "alg": "SHA3-512", + "content": "042c776d9f55b7504fd5d2662d0236cbc2c0e9ba630fd1044984c97cd4e45339fc3ba23573d72c4a100a81be3e84f5797f9e40765a7ead8c7f4151d4ec070f14" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-batch", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-certificates" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-certificates/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021459" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "821ff6a0f6c9935332eaf61c7db5ebab" + }, + { + "alg": "SHA-1", + "content": "a9e4e10e0db6fc6e81f605aca7441080b55867aa" + }, + { + "alg": "SHA-256", + "content": "1ded6f417ff6419738861f0ab86d1daf869085f0fd5e43cff7ea37ea82749fbc" + }, + { + "alg": "SHA-512", + "content": "0b9b983f27871cc171a58011eee4ea398141a36b76823cc88d47033f78488b6d3a21c9d6d0b149677f11bd0c042fe9ca898aee98e7926af29e2ba36f3fa1dad5" + }, + { + "alg": "SHA-384", + "content": "0257661b21111295bacc905e4897bb74826f15f43e5139b970426d4f849be17dd3d012cdce0aab8d2d71cb0990c84c73" + }, + { + "alg": "SHA3-384", + "content": "adb5d5f2df914b84ec57694b4d5f7a2669017b971474fc832649f1a8cf8d1ef55128219feae65d383f8a8798243e2689" + }, + { + "alg": "SHA3-256", + "content": "eb52ceb1ba6e8309b9f52092fd231b150f2577ce52daac05e5ad9115a5342d08" + }, + { + "alg": "SHA3-512", + "content": "87806fcdbb8e133a70c2ea0e5a61fc3dbeaa18debbafc39774480f398f96cafda73e51c6ae1e17a38744e30c15b47977f36ffba5de050c38b2faa29436a5d657" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-certificates", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-coordination" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-coordination/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021429" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "a39788c8ba8ddd2dd6dfd03c0f0cb0f0" + }, + { + "alg": "SHA-1", + "content": "5f7ed26b92c2b1fce0c9277ffbe4e15b9c702161" + }, + { + "alg": "SHA-256", + "content": "1c9e356c15f24494c00ad43ee502263bf87d82d17f1dd240ffab31cd54d11a7a" + }, + { + "alg": "SHA-512", + "content": "d7d1069985dd83e0a3ae1a9ca786420e4720fd9b8b4ba9eef5b0fc5958f8ad09053b799b377bd1b1347c69a38b94dc58f8bf7134ff78fd8b558539a1b9c2496a" + }, + { + "alg": "SHA-384", + "content": "c91d333f685f8f492fb81e04f0ab136cdbdb623a76c11f6855a898c59ac606075ee92a51ed79acc1f9001b1ca7af0400" + }, + { + "alg": "SHA3-384", + "content": "b27612a55117ed5bcf0c76a44aabc8c067a26ee72cf5647459ccf55fae455850ce0ad18f8bf8effdad6fa6293a70b59c" + }, + { + "alg": "SHA3-256", + "content": "a541b0026efab8506dc5b774258eb39ddef5ecb754cf2fb15e878cf7ad7bd981" + }, + { + "alg": "SHA3-512", + "content": "ecf3a46784354b0efe0c636fb4eb8fc8a275317a0c1143de4925c585718b8e26dd5285950af7049d227564b9389aac7f47a41cf4c33216a755f911f3e55e4445" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-coordination", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-discovery" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-discovery/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021374" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "366ff688d6f504a35ac7940c94872b46" + }, + { + "alg": "SHA-1", + "content": "739415d6298bbc4c9c7321ed51739f00b4221d91" + }, + { + "alg": "SHA-256", + "content": "6f3252bb300d64551bb7ada8c835ce4117c68ee7b3f71c22ce3ebd4e90db6eb2" + }, + { + "alg": "SHA-512", + "content": "3b87ca7372fabd5906ad156fd5433a762631866da38f5b2a7a7d142de68cba5561b469a9780ca25353ab3181cde7486423bbe51ba40bd3a9703723fe77b2618b" + }, + { + "alg": "SHA-384", + "content": "5875be745c76a696cdf42e97399e74d67195c83a100973de67a240915c930c64cbba3d5eeed67c12ead0806886a8eb16" + }, + { + "alg": "SHA3-384", + "content": "e4f8efba940658c8c81217e2810f61fc0dce540ba79b2a4f395e85e23741ce1fd1abb52111a43467c69c9cbb81d99c88" + }, + { + "alg": "SHA3-256", + "content": "e47f875fd2533d442acd249355b72b33c62e1dd69be3530dfcf5462ac1c16e93" + }, + { + "alg": "SHA3-512", + "content": "54fab7bfa4eb12e6bd784a5b2cd0440342a35dcbac960c98885bf4a316c1a1fe97c12c07625e6b2107c9b419950e4634680e010f872140d54a5bb71e37a006a2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-discovery", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-events@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-events" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-events/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021542" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "cd1f50bb111212bff2eaefad72b73cf2" + }, + { + "alg": "SHA-1", + "content": "1ca011817218da80eb2d21c559e0cd72d54433b5" + }, + { + "alg": "SHA-256", + "content": "c29225fedb4a40c51517ac58b90f42ca41613582bf602c6cf905ef1f5fff3310" + }, + { + "alg": "SHA-512", + "content": "036bc78a5947b3cf3fee46725239209d9aab7b7a0272fb46567040c0b9d51dce69824513161b94490757a2dda3a78baa217f3a4b3f2666ba807f13c3fd1f363a" + }, + { + "alg": "SHA-384", + "content": "63fcf08b8b256de746a43386d6d0d357b49e29fc7c965cb1e519107e6d90b8dd29ba616618df8b59440787b392ab6645" + }, + { + "alg": "SHA3-384", + "content": "78f6c3376dba9987789f928a4b23157f09016696fdf24c6c1f99aad9bff60e23839c87767f277c92420e9d7263464433" + }, + { + "alg": "SHA3-256", + "content": "a459d8b4a0a4901e398dbd802bb0ce725fc097b5f435353ed8272c2e2723695d" + }, + { + "alg": "SHA3-512", + "content": "26a31b983e3f9c2d68fc8a0da33327227f7a13216f7a779a3ce804432e7b2437fe7d7dc9f8878000b9102767f7b223ce3516f6fe1eba106f86347d7ca1c19592" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-events", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-extensions" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-extensions/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021567" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "ed1cd75a3da0dd33be924f6d8b8b91bb" + }, + { + "alg": "SHA-1", + "content": "6736c7be49cbbf99d898d86741330638dd31f9c3" + }, + { + "alg": "SHA-256", + "content": "f5850804a704a8b4e5392684d756992844acc037648bad7760717d69c821fa13" + }, + { + "alg": "SHA-512", + "content": "2a7e575185a056cb22927b7bf04a8dd3ca0e9792d57100efd96253baae22e49fa8fbe2d8d950f465fecb1d1c0f16be3fc0eb21eb23043e6cc11695f359b12de2" + }, + { + "alg": "SHA-384", + "content": "04de311663fddc04d4e94fbea60203a1939f3038049bd9c94883e02600b7b51a0da762b7dd092c76668da51875f6fd67" + }, + { + "alg": "SHA3-384", + "content": "bf2f30440ba7d33880d8ccc8f33a11df50d0b875a539b9ff1c6e3ff92d4c4a2e03205f4eed527e77551accf1597cf094" + }, + { + "alg": "SHA3-256", + "content": "ecb8807a10d41f1fefb690c0a15f0862026f4953b12b3e5c6e2bcb7ced8995fb" + }, + { + "alg": "SHA3-512", + "content": "84a0ef545821f8a2f443adaa2da0a31baaa5a09bd51437a1852d55a333775fe26f51fc991f444c78d6e67b67192ee1c4fbccee1944486ab2a7f06f2e42a3b99b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-extensions", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-flowcontrol" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-flowcontrol/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021387" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "d08fb8dbd280a827dc2cfa7c67c967d1" + }, + { + "alg": "SHA-1", + "content": "8aa96b706a3a26410a928ea5e06b6b22b6ba6c25" + }, + { + "alg": "SHA-256", + "content": "d10533c326d4fba384fe31cc0eac263a1b2997edced1bd93785b65a1c3f0f3ec" + }, + { + "alg": "SHA-512", + "content": "e34deb8ff081e1fab2eaf09e2b1c14485346b1a86a71c76247053f147b5c3467a1767df057f926896cab643d71afc386fde127c6c42afc1bd773997990b022d2" + }, + { + "alg": "SHA-384", + "content": "65b29c800f8cb18e64fd6c5a507cbd1b0bbb5816a38b99f6f2c2b20ce18a3133d736c8d5f88cdd7c8c329b2b26c3f51e" + }, + { + "alg": "SHA3-384", + "content": "137d59b0b97eec2f77ce60c6dbddbdda5340719f08af21c2f139de6e95eac62fb31a5cb9c4709ac4d25bf0d8cf024c70" + }, + { + "alg": "SHA3-256", + "content": "79484ab4dcbe4f6a110123debb400d559363df421be92b4a0416ddb03136ee9b" + }, + { + "alg": "SHA3-512", + "content": "39dadb5f77d41d37b74c71d7399633fa5cb7a535d5061b46bdb5a1122bef3602c9d91c827cec89146f923a120acbfa3cf856c2da944621f14858be4bc7b21089" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-flowcontrol", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-networking" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-networking/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021452" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c1d77d8e90752f455a9b32e55b396d86" + }, + { + "alg": "SHA-1", + "content": "e8953e4b8c752f08cd4525067624ac4d55607557" + }, + { + "alg": "SHA-256", + "content": "5fd4bdc999ddcc81d9c9ac76df9ca7715294a56b64dfdabebef3a15f53d989ae" + }, + { + "alg": "SHA-512", + "content": "cf2d6c9c5c076f3ea1960ca43cd0ba41c9db6a58fc3a613f507cfa5ad29cb34a15e8678aa2da2d6dbfbb3d925e9fbc4f2b4310a2fa25c26a6695760824f2cd23" + }, + { + "alg": "SHA-384", + "content": "5eaf1c3f41b65f40d3e22c219fc809511dc692835d5494ee60843bb46b3a49d0513d590adaf6874231755557852d7cf2" + }, + { + "alg": "SHA3-384", + "content": "f08f7c672e160c9c04f88ae75fb4a05c493382da024d3fe1f399a7d2e338cca428162e5eeb71476c7c22a4e530404482" + }, + { + "alg": "SHA3-256", + "content": "602d51f7218b24e83bbd34399ce93581bf7669b0491db7662fcd3a32373ac91e" + }, + { + "alg": "SHA3-512", + "content": "bc605da8f498744cce169931c408d195328ac1dd29c34afc22ea26ae5ffee0b7d53a768e0e0efb6d2c9c5e1453b015480c78f7116c45b609282eb063d16fd836" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-networking", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-metrics" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-metrics/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021650" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c1c6928178f97adc91427ceee665632a" + }, + { + "alg": "SHA-1", + "content": "71cffb5b6896f776870153776b2913250a2e8c13" + }, + { + "alg": "SHA-256", + "content": "1adbbab19eff038af083505218476405228805f8d8588166237ebb3c9977e68c" + }, + { + "alg": "SHA-512", + "content": "2b0115d01d2cc9787e57f4b3b7364735ea096aa5f90bb5923f77d914c68c766382bdb9dbc1cc288614eb17eb93032fac9dcbda1875d0abdc920116573c7f2766" + }, + { + "alg": "SHA-384", + "content": "778f88db6e7f846ab05ebd7b47f5476c35d6a8c3de243be58666c4c8585924a51f0c68bd090d03fde904d9b7bbc266d4" + }, + { + "alg": "SHA3-384", + "content": "5e69a2c0c76efb1a6015b9b1d43e0aff3afcdc4d5769c5d9b1daa64e9d0b1b564fb6f87420b987f6a19a3f40b073fd10" + }, + { + "alg": "SHA3-256", + "content": "d1017e1df9f33dc80df53f71260803ba6fcdf2b5d23e4c20cc1a67e636b50508" + }, + { + "alg": "SHA3-512", + "content": "4646a3d352a84e2e3d5c0871e832c3c9e60bcfcddd27c44732a45c89088a0a2d2a4fea6c86f7cc0ae2fe40679765a9408216a107f0594d4d93ad333d7b448ad7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-metrics", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-policy" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-policy/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021372" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "2ce5498054a8b3df29a5cf66dc50b011" + }, + { + "alg": "SHA-1", + "content": "fad19a47b310d42ad5f96bc1dc946ce5d90ba362" + }, + { + "alg": "SHA-256", + "content": "7e3c5a7dabf214beeadb9920292f4d08b79993d7b807091482a625407e1f1ea2" + }, + { + "alg": "SHA-512", + "content": "3a6b31ea79a30d5fcd0770fc2a2b75a1435807be05aaabedfb495c0edcbde8e6dc8b470695d52b4dcf9a342631047f41bc28161839288aa45edfc02c35af672e" + }, + { + "alg": "SHA-384", + "content": "a5ffcf0f71bf278f41bb1c274245685d1aad04d24391da67f924eddedf56ac3fc4f9ded9c7991ef1e6b9e6e27ab963ba" + }, + { + "alg": "SHA3-384", + "content": "cfdd8867c37169e08d7ec9cc4336babed1b8b1d6903495e3390bc08622b0acb5c3da463ee4aa0ae574c07eedfaf0bcaf" + }, + { + "alg": "SHA3-256", + "content": "d27fcc974ee16e649891f1c2539cdfd725b3db0f3a4064bbcaa256057aa571e1" + }, + { + "alg": "SHA3-512", + "content": "4750a44d3895776b1a7ffcea88b93f9bfc20bf9bb901478e90a9c568e33a9f89f5e30ac6e43149ae9cf87098304bf30d4f955c88e575619bec1b7ea6da737042" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-policy", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-scheduling" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-scheduling/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021694" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "9e38f8ee34d10f9bf92be4c422ea2ca1" + }, + { + "alg": "SHA-1", + "content": "b3f4e144f4f0523f033f740e4e19b55199543e27" + }, + { + "alg": "SHA-256", + "content": "be6c2ac4608ca55d32eb02ec91e6bb8087d144d44f18f52d2a1ba3e912959ff4" + }, + { + "alg": "SHA-512", + "content": "4b93fcac89786d44bcfedfe57a4000ded2b1124577d01bac22ad0100abf7afed425b432808cd45d336f05932fafafce96a5b84acb6ea8d7d1a9e5996133ab275" + }, + { + "alg": "SHA-384", + "content": "f36b32ca226ac97e84b61ca48bb35176152a3c05664116be8e3df16b5cae2c22b7887ae8e3bbea251370d62b8f6b8169" + }, + { + "alg": "SHA3-384", + "content": "4ae9fbdf1c29bc482444d57edd1a150a4d5bc02c95ce06dc435a8c308d6e04cad5c997772be4eb771b72a709b386532c" + }, + { + "alg": "SHA3-256", + "content": "86663d0bd7cbf37986804acb7ea9c8e6cdd1dd2726ae4adff838121e0331df50" + }, + { + "alg": "SHA3-512", + "content": "a5d8c944f693c26e3714db5fceaffb689aa983770e8d739f19c06f7302580c9c7b41cdb9fa08ee03a5f80e017eb5f334d2d558b6dadf7e66cc7d3a80f79c09fb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-scheduling", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-storageclass" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-storageclass/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021676" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "5853f67d4112ee04d5ac6d6e0b9cb25d" + }, + { + "alg": "SHA-1", + "content": "7e9a1f2a060619c1d625d5ea935a12466c394af4" + }, + { + "alg": "SHA-256", + "content": "517d87bfde85d324504540a9395109c803449aef6546c2a3c647b8cebb979c81" + }, + { + "alg": "SHA-512", + "content": "f1d4c02000d77d70a11522ca163b4824e08e14f99b7157f9b61d5af5e5d3457df76081a0ef0b155985235ea5e27a68c356ea259566ab03bda507b63437fa9347" + }, + { + "alg": "SHA-384", + "content": "57109cfe2808227bac833b78f88ea4b52b8862ca54512880b0d8c84136a2a11deef3e36ed3119cb5e3249d2ba9b5a30a" + }, + { + "alg": "SHA3-384", + "content": "5a733f6cae5e8810e5cf91b2c3acd6020b5fc76b862e43e708aa482facd7514466ba9a26c528705b852fc519a8e0893a" + }, + { + "alg": "SHA3-256", + "content": "83adcec41f3f9f096de6fc509a09f69b684ae49227b29f9fdfed1eeb5c128641" + }, + { + "alg": "SHA3-512", + "content": "27de72812887d578a5a4b600ca42d30fa659168f5a41df88f63216af20461524d02da4f6bc2a3bf1c7b692a45538161c7f069ef73ce2dc8be50690c65365e0a5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-storageclass", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-node@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-node" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-node/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021357" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "11f9025a612772f6bc41a802661b8710" + }, + { + "alg": "SHA-1", + "content": "ccb4dfb1714bb22c08ce2c53631944a3e15f1f94" + }, + { + "alg": "SHA-256", + "content": "dc376d0abb28e24c05430f5f314b4a1c1e4359830815f364e1ab263f153caaec" + }, + { + "alg": "SHA-512", + "content": "dfb17f97552025bf79ab5a6b1707c0140ee8701785a96919158744b3b3fa2ff05070d3cafdd12e531a93a1bef8727153e9cf4c4973eb23715cf9500e893aa429" + }, + { + "alg": "SHA-384", + "content": "3e6bda0ae26d074f28ecebcc43a18b6dc9e83d8643db29c9f56a83a24900a66d95a4fb54befca225fd8dcdfd3959cc28" + }, + { + "alg": "SHA3-384", + "content": "867b2e3ffd9d033e255ef531b359b575877207fafbbbe1d472bce6ff1852967e6f5f4002a54e6d846efa44c41b9ed1ff" + }, + { + "alg": "SHA3-256", + "content": "b176e789849b473f650bb4b640b6cf628b868879e049bec7c78d7f66d575ff79" + }, + { + "alg": "SHA3-512", + "content": "7dd75472eaafa9bf5dac933200ea2a8534fb914a0ad4df2f221f0f97776417d639d3e2bea07118fcfdfadb1f3f189b30fa1d4d6ffc3ff29fa093d8566f318125" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-node", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7.0.redhat-00006?type=jar", + "description": "Core YAML 1.2 parser and emitter for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/snakeyaml/snakeyaml-engine" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://bitbucket.org/snakeyaml/snakeyaml-engine/issues" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/snakeyaml/snakeyaml-engine/src" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021339" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAO" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11.0.19-7-mx-mvn3.6.3:1.0.1" + } + ], + "group": "org.snakeyaml", + "hashes": [ + { + "alg": "MD5", + "content": "d1233478c37e4638d1933c9ffdea858f" + }, + { + "alg": "SHA-1", + "content": "880ff8a5abd95249c5178a3345ced2b72f85ab7d" + }, + { + "alg": "SHA-256", + "content": "314e74aa3fab8fe3718139d34920a01fdb09ce7329809359b9ac1aa70d7c2736" + }, + { + "alg": "SHA-512", + "content": "b26e6df2d3b3a56e0f4de7c9c3c972b18d2e301e8d120fa0adab5cc450ff437baf92484cd40875e401cc4554317ce0287a46a96822648775145d6d7a439ef357" + }, + { + "alg": "SHA-384", + "content": "823c2fbd625d5160b19131d421dbccabc61bda5999516942ba93d840d2d9cf762fad96d433b1f30bfa32c304b8132dc1" + }, + { + "alg": "SHA3-384", + "content": "7f7ee4b86fec271b620d15a5e74697db8dec92f800a5835724ca4cbc9ae594baad771891d54028ddcdb7ea8811fdb2de" + }, + { + "alg": "SHA3-256", + "content": "bd10a2e72ab0a744a79bd9cfe9a4699d5280aa0fc0d17dcd076d969d7d73cf8d" + }, + { + "alg": "SHA3-512", + "content": "7f6f4c305e2821a19613cf9dd5d35139be91925e79e4b4f4f86a25743e7fa5784cb54931c2588dd31c8aecf32989aad2622e73b0e787b16d9d4dbab9e98fb3a0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "snakeyaml-engine", + "pedigree": { + "commits": [ + { + "uid": "5c9581397faf2e215f7dfc97ba03322076270fad", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/snakeyaml/snakeyaml-engine.git#2.7.0.redhat-00006" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7.0.redhat-00006?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.7.0.redhat-00006" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "description": "Support for reading and writing YAML-encoded data via Jackson abstractions.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-dataformats-text" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-dataformats-text/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-dataformats-text/jackson-dataformat-yaml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115685" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAM" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.dataformat", + "hashes": [ + { + "alg": "MD5", + "content": "50879e8b8b7c8d172a385cee20ae0277" + }, + { + "alg": "SHA-1", + "content": "4885a84942ec5ce8f33f7b28b60f4cd09318ba76" + }, + { + "alg": "SHA-256", + "content": "362b23b4d50df95e8cfa24be0d8b74caee7043b229b0cadbc71d6dd5f46d7a46" + }, + { + "alg": "SHA-512", + "content": "c55f074c19fa864c2b12e7ca84d2a381ad2ecb3b4f452dda146d9efb20c57565fa0565d7d2e878fe8680f8507d73114129af5558169a960cdbbe431553549e2c" + }, + { + "alg": "SHA-384", + "content": "8df85a6747f1bbf91956f4cb4bd64522342564b64c6127a079d4df69e8406a09046132fa392cc00a35e23a5f4219c158" + }, + { + "alg": "SHA3-384", + "content": "3065348d4484ced3bcf509c5e7b242c1c0e41bad8571de8dc96c599bbeeb871a6f79c3b68c6767ad102076c6ac9cb568" + }, + { + "alg": "SHA3-256", + "content": "39595412def634b9fb7c223d40ed2f8ab1252e238e55c0b40e8c1a4e1d1921dc" + }, + { + "alg": "SHA3-512", + "content": "29a9b18a01cd84dcad848407b62d384d9a051404898ae21193795878ca383a8d784f52f6c1042e79532f11112fa8cffa613e9106bb23aa8cf7943ae000eedd06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-dataformat-yaml", + "pedigree": { + "commits": [ + { + "uid": "33892141d4da7581414ed849b0ee131406d2502c", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-dataformats-text.git#2.17.2.redhat-00004" + }, + { + "uid": "86f27f7c9ad482097702e3f15ddb58cb5ef353e6", + "url": "https://github.com/FasterXML/jackson-dataformats-text.git#jackson-dataformats-text-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-httpclient-okhttp" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-httpclient-okhttp/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021814" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "26b18881aa7fb1a63449255adde2d8f3" + }, + { + "alg": "SHA-1", + "content": "e7309f2a489f8d798f86de7a2b8c5c16826fdf55" + }, + { + "alg": "SHA-256", + "content": "17cac58c63d9b2853e5b8091a7fbd265ce670cd12a5dc4a2b80e10406bbad0b4" + }, + { + "alg": "SHA-512", + "content": "44a795f8c566c2aeddb0f5326732790f27ce21dd2e4b86755e8c134df38d1f5da07daa759900fb9f10dc54ba412413c88fc868e3bf186c7224287e73223c89f3" + }, + { + "alg": "SHA-384", + "content": "b1185ce6777d499e713dc38c2670da403e1622d346fc3fa84bbb65c2bc65a6be91c20552836876619d1f52d49d2ae2fe" + }, + { + "alg": "SHA3-384", + "content": "36efc2b28d7eaf9c1e760f544585d5a2f6cf50ffef487129b728f933b704906756506c097e9002c90de948bdcb7d8ddf" + }, + { + "alg": "SHA3-256", + "content": "18e693803f7f896b0987677eba7d9c8582c5ef3a479b1f8a0e9fc7e1220b7e5b" + }, + { + "alg": "SHA3-512", + "content": "f308d8f7e438c7198a3beb777d6539a9589ef44eea50b73476d2ee448bd5bd74eca03e821f88f2ef0d0db9251dba2225951411c30d212c6c5e2421bee4863962" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-httpclient-okhttp", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "description": "Square’s meticulous HTTP client for Java and Kotlin.", + "externalReferences": [ + { + "type": "website", + "url": "https://square.github.io/okhttp/" + }, + { + "type": "vcs", + "url": "https://github.com/square/okhttp" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11786173" + } + ], + "group": "com.squareup.okhttp3", + "hashes": [ + { + "alg": "MD5", + "content": "6acba053af88fed87e710c6c29911d7c" + }, + { + "alg": "SHA-1", + "content": "2f4525d4a200e97e1b87449c2cd9bd2e25b7e8cd" + }, + { + "alg": "SHA-256", + "content": "b1050081b14bb7a3a7e55a4d3ef01b5dcfabc453b4573a4fc019767191d5f4e0" + }, + { + "alg": "SHA-512", + "content": "da63f77c1cae377b40f6fd00cfbbe8177e760e4e622ae2c66860fffd3bbbdf605c8e8e415762e9263445b2289ee834100237c63949f2e01c30b6704315dd8f7b" + }, + { + "alg": "SHA-384", + "content": "0a8fbe4104c511169232caa90bc52b8a842b6b4cfba525b1c749ca25ede252992c1a3b6c0b6b43143949bc1f1eea742e" + }, + { + "alg": "SHA3-384", + "content": "f41dde0de63dba9c941083a9e9f9681e5e497149cae49988b1a5b36fe2263d351035ee378e06975b5f3145b91393cd75" + }, + { + "alg": "SHA3-256", + "content": "736a6abc2a2128ddcabcf46c9ba70e4656c2bedaeadbe8f9f76bb807db657b05" + }, + { + "alg": "SHA3-512", + "content": "b2a39d9dff52994e78774d628228f7b3959d6070db2b535c70a90de70a7a716ed011d4dc210886314c1ebad8478b2460c652a2bf68094dba30d3593a1a750c75" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "okhttp", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.12.0" + }, + { + "bom-ref": "pkg:maven/com.squareup.okio/okio@3.6.0?type=jar", + "description": "A modern I/O library for Android, Java, and Kotlin Multiplatform.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/square/okio/" + }, + { + "type": "vcs", + "url": "https://github.com/square/okio/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11304339" + } + ], + "group": "com.squareup.okio", + "hashes": [ + { + "alg": "MD5", + "content": "990f7b25bbd4fee8787ffabf89aa229f" + }, + { + "alg": "SHA-1", + "content": "8bf9683c80762d7dd47db12b68e99abea2a7ae05" + }, + { + "alg": "SHA-256", + "content": "8e63292e5c53bb93c4a6b0c213e79f15990fed250c1340f1c343880e1c9c39b5" + }, + { + "alg": "SHA-512", + "content": "1c3e2933a386af47266229824744245799a9f77f7f3d3bb44428eb81f02d5df6993e864c8fa794caf08a98fd81a89d5d670037226345a570905d8229c1e55c3b" + }, + { + "alg": "SHA-384", + "content": "e4ec9777dd2370075b21251db31a9e0562ef1ac142f7a9b114e7ff441995da9650014d59a53515255c5ae46397cb83ed" + }, + { + "alg": "SHA3-384", + "content": "79ae75c700d8f9d79f06a3a1b5a6c7b761169135342a41522ee531b6251a10bca60659af6bc41a23661f0538f9e5c1ea" + }, + { + "alg": "SHA3-256", + "content": "525741a53ff92457979461c8ccb7e1ec4cf4b8adf48dab201c5975cb8911c14f" + }, + { + "alg": "SHA3-512", + "content": "95759b086a3a2df1d90c3765fa297e859744de03e0877f515a360af8a33164c76b81c88a6c9cad01766aece61c50148a815ca21d341d9bdc021e3e0058af1a72" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "okio", + "purl": "pkg:maven/com.squareup.okio/okio@3.6.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.6.0" + }, + { + "bom-ref": "pkg:maven/com.squareup.okio/okio-jvm@3.6.0?type=jar", + "description": "A modern I/O library for Android, Java, and Kotlin Multiplatform.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/square/okio/" + }, + { + "type": "vcs", + "url": "https://github.com/square/okio/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11304337" + } + ], + "group": "com.squareup.okio", + "hashes": [ + { + "alg": "MD5", + "content": "26370180ff99a7e8a12dcaac2a70cc6e" + }, + { + "alg": "SHA-1", + "content": "5600569133b7bdefe1daf9ec7f4abeb6d13e1786" + }, + { + "alg": "SHA-256", + "content": "67543f0736fc422ae927ed0e504b98bc5e269fda0d3500579337cb713da28412" + }, + { + "alg": "SHA-512", + "content": "a592e93651fb5e335212bb25c1cf474c1b1076eda68d53cbdc82c383cbdd60114a62b698ca92a3b4b5e416d637a70f2ddabbf8a05551c62d59a240c3e3c3d2c6" + }, + { + "alg": "SHA-384", + "content": "825856eb690645dbaaa02a6047ebbfe2b2c0a9191d37c177b216160bd89286e98695fc91cd75a9b6ac7e8d1f3a106ff6" + }, + { + "alg": "SHA3-384", + "content": "07c656a88258ed39d50941355e955dfaa74dad3f128ff48e8c2654a53607e940ca3f3383f4f97f1b9e91670734ff1424" + }, + { + "alg": "SHA3-256", + "content": "95baa62978b92951e1921749529688efa24d0a329843427fe822cc4e90399483" + }, + { + "alg": "SHA3-512", + "content": "f2fca794345a93448b2c770c2525586b661447acbac32142fba0152320c164b5cd27d2d6a478e72e72c54ff4e0e93eaa729529b6f5aefa7e6d7b732d0d9532b7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "okio-jvm", + "purl": "pkg:maven/com.squareup.okio/okio-jvm@3.6.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.6.0" + }, + { + "bom-ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-common@1.9.25?type=jar", + "description": "Kotlin Common Standard Library (legacy, use kotlin-stdlib instead)", + "externalReferences": [ + { + "type": "website", + "url": "https://kotlinlang.org/" + }, + { + "type": "vcs", + "url": "https://github.com/JetBrains/kotlin" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12733353" + } + ], + "group": "org.jetbrains.kotlin", + "hashes": [ + { + "alg": "MD5", + "content": "4af413a0dcfd78656848746e324dd826" + }, + { + "alg": "SHA-1", + "content": "8c6b97a73550bb942dfad2325907ccfea9dea68e" + }, + { + "alg": "SHA-256", + "content": "8202e7f032c8dc6698d00c62867701546a7c12c4731ebddfb8eec0788e2eeee4" + }, + { + "alg": "SHA-512", + "content": "7440996feb5af36e9353064a30f7f8a2258cb93e151be1c29325267779b54cefa6b9d98ac04a452c23055d7a5ae81c4f1647d72c5e45714194f19b80a414f3f6" + }, + { + "alg": "SHA-384", + "content": "8b1f7594ed19879b5b775a4d94f5cdd27528655a99c9ed46a2d19a71c2e74d696bd22286611397146ed2f3ca6345e83e" + }, + { + "alg": "SHA3-384", + "content": "260deddf3d28dc4fa6457de98d4cd54c8f6ae4b14d9a7c9eafc5200519701fcdc7eff90fe7b631063edb43bab9583c40" + }, + { + "alg": "SHA3-256", + "content": "04d4ff9e601b5a2b047a1b0bf748ea50caa4c4811598af665e936451b6e4372a" + }, + { + "alg": "SHA3-512", + "content": "94aa3cd83f96fef2e02dc4af20de4b22318ca59a6334b2db00accf1d383800ee720961b8b7b0bf90bdc2b445a794a8c85a35ccd2deb1e95d7e03a4a26137e84a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kotlin-stdlib-common", + "purl": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-common@1.9.25?type=jar", + "scope": "required", + "type": "library", + "version": "1.9.25" + }, + { + "bom-ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk8@1.9.25?type=jar", + "description": "Kotlin Standard Library JDK 8 extension", + "externalReferences": [ + { + "type": "website", + "url": "https://kotlinlang.org/" + }, + { + "type": "vcs", + "url": "https://github.com/JetBrains/kotlin" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12733357" + } + ], + "group": "org.jetbrains.kotlin", + "hashes": [ + { + "alg": "MD5", + "content": "34513d27003b6befef92733e27ca2485" + }, + { + "alg": "SHA-1", + "content": "20d44e880a284f7b5cd99dd69450b403073f49b2" + }, + { + "alg": "SHA-256", + "content": "f94fdf78390ce9be30383bf039c5a935caea33b11f037fc7f86bbcee19287e5a" + }, + { + "alg": "SHA-512", + "content": "98b2213f68ee16cafdaca3f1caee97f71f6f16cade689840aec52ad833737381fe8483105990eed06623d6a96b32b024c472597670e167f112fb130e600d4bf8" + }, + { + "alg": "SHA-384", + "content": "87371bc178898dfb3df16bffed44fe098a385d53b6d2436ad0ba43d4809cac96414aef5d23ae2fd8b6ad59c2e31b83a1" + }, + { + "alg": "SHA3-384", + "content": "cbcf7ae5b6e8f78f9dc9a07806d72216839f181240bd711e8634b2b20fb5ea982becb6b73ace3c69c8d2952f4176b41d" + }, + { + "alg": "SHA3-256", + "content": "f9ea65a93943cb98c1e74bbbd34288b6d2ffb899568e34865179de2b722804c9" + }, + { + "alg": "SHA3-512", + "content": "6ceca30a23ec00d814a5050009ad6747e646f194c74111bb7c2042e1ebd3dc089673fdf303861a43c4c89e62c5f8fde927953fa2f4a2fa711c4e9837c1a96883" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kotlin-stdlib-jdk8", + "purl": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk8@1.9.25?type=jar", + "scope": "required", + "type": "library", + "version": "1.9.25" + }, + { + "bom-ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.9.25?type=jar", + "description": "Kotlin Standard Library", + "externalReferences": [ + { + "type": "website", + "url": "https://kotlinlang.org/" + }, + { + "type": "vcs", + "url": "https://github.com/JetBrains/kotlin" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12733359" + } + ], + "group": "org.jetbrains.kotlin", + "hashes": [ + { + "alg": "MD5", + "content": "33aff849edc75a29bfcfe2b47258b3de" + }, + { + "alg": "SHA-1", + "content": "f700a2f2b8f0d6d0fde48f56d894dc722fb029d7" + }, + { + "alg": "SHA-256", + "content": "f9cdcdbff1f5de85380ae526977e683726c2aa42db1ed6e6e50ae89e496e95fd" + }, + { + "alg": "SHA-512", + "content": "453d9eb016259dc4582c206687ab9463b569680e89337df80d1a8bd08c3ea73b50ea84eec23afea76cc060b998b450f00d506b92d724f60c721a81b2189c6c33" + }, + { + "alg": "SHA-384", + "content": "741f1089335d6be517b37c316bbd5ad822ab03150357972c7cf95b7bae22b295803faea7a2c5fd6c1e90d682c821115b" + }, + { + "alg": "SHA3-384", + "content": "56aac846ad829fb124b5c54c9c9ece9553b28107d3f3fad0aefbd56a660948a3815c1e2ce2bb338ecd928afc861c6c71" + }, + { + "alg": "SHA3-256", + "content": "8c4b7a8332528cc9ae0ea9f5d161522a091f4ceb3beafe1f1846ee02572baa35" + }, + { + "alg": "SHA3-512", + "content": "4c6d0dfd389e334d73c2385ebb9ea392f861bb143acf916af68a6a6b0eda3485dd41a1eb658551e358d406c30a7ffa50d2c8a10a64a76417099eb21bafe18e6b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kotlin-stdlib", + "purl": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.9.25?type=jar", + "scope": "required", + "type": "library", + "version": "1.9.25" + }, + { + "bom-ref": "pkg:maven/org.jetbrains/annotations@13.0?type=jar", + "description": "A set of annotations used for code inspection support and code documentation.", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jetbrains.org" + }, + { + "type": "distribution", + "url": "http://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/JetBrains/intellij-community" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13245949" + } + ], + "group": "org.jetbrains", + "hashes": [ + { + "alg": "MD5", + "content": "f4fb462172517b46b6cd90003508515a" + }, + { + "alg": "SHA-1", + "content": "919f0dfe192fb4e063e7dacadee7f8bb9a2672a9" + }, + { + "alg": "SHA-256", + "content": "ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478" + }, + { + "alg": "SHA-512", + "content": "5622d0ffe410e7272e2bb9fae1006caedeb86d0c62d2d9f3929a3b3cdcdef1963218fcf0cede82e95ef9f4da3ed4a173fa055ee6e4038886376181e0423e02ff" + }, + { + "alg": "SHA-384", + "content": "6bcde3a6e471d416522e6288474bc4f9115e2e8abf8ce5d300829bee4aa98dff73be7d8c6f0607f3d6d423c7f5abbf90" + }, + { + "alg": "SHA3-384", + "content": "f4d5a5d5a76b24c4751c8c52f2879b097d2430c3571c59b4630e8c871c9bdb08e24e803a14c24fc8d3378417f29b7244" + }, + { + "alg": "SHA3-256", + "content": "b4a80ea81c4bc7e364e07981465f547e8ed83031806eaf3b97dfb38f894f5b6f" + }, + { + "alg": "SHA3-512", + "content": "15b23bce818b4399b334dd632eb85de5a1b70c47fb9260561e70b1f726211c83bddbc957f3b4c32a1d8c687f9bc6c38d0a638c731cb5daf5b619aa725d6050c2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "annotations", + "purl": "pkg:maven/org.jetbrains/annotations@13.0?type=jar", + "scope": "required", + "type": "library", + "version": "13.0" + }, + { + "bom-ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk7@1.9.25?type=jar", + "description": "Kotlin Standard Library JDK 7 extension", + "externalReferences": [ + { + "type": "website", + "url": "https://kotlinlang.org/" + }, + { + "type": "vcs", + "url": "https://github.com/JetBrains/kotlin" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12733355" + } + ], + "group": "org.jetbrains.kotlin", + "hashes": [ + { + "alg": "MD5", + "content": "00b574c013f45be45599d071dbd818f4" + }, + { + "alg": "SHA-1", + "content": "1c166692314a2639e5edfed0d23ed7eee4a5c7a5" + }, + { + "alg": "SHA-256", + "content": "fb5373dd761b4e93e3f538c5e853bba38a71143a181536e8f193ed6e4eddb3b8" + }, + { + "alg": "SHA-512", + "content": "3d529f26e14735d7dba2ad126d7cf2e92904daf7e71610563acb6bb13a58fe89437b4ea1f2f1a0f1abd985333709198e257540b08b1509293b5c75d19e001957" + }, + { + "alg": "SHA-384", + "content": "de4e79aa327c38bb12be59cf5437612823a2d450b4f698623bd3729efc65391a3a676e0e456198fcd436e5cb8a41f3b2" + }, + { + "alg": "SHA3-384", + "content": "9491aa784d899e9d12c0756d0c6f8191199d6749ec7a390566e18c78c4538800624aee51fa8dbf5d2a1f9cd1568deded" + }, + { + "alg": "SHA3-256", + "content": "b3243e23996177a8b854642a3f1fdb4c00f235ad7724145fd66081fe6c9f99f7" + }, + { + "alg": "SHA3-512", + "content": "b0d110ee0a23e6cbcb7e34d5bdffd1c8e5b84fbfd93fa7f6f58058dec8bbda946dac030d14b35250e10dc9f61b91045eb8bff32d37cb611a74ba5985d7072899" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kotlin-stdlib-jdk7", + "purl": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk7@1.9.25?type=jar", + "scope": "required", + "type": "library", + "version": "1.9.25" + }, + { + "bom-ref": "pkg:maven/com.squareup.okhttp3/logging-interceptor@4.12.0?type=jar", + "description": "Square’s meticulous HTTP client for Java and Kotlin.", + "externalReferences": [ + { + "type": "website", + "url": "https://square.github.io/okhttp/" + }, + { + "type": "vcs", + "url": "https://github.com/square/okhttp" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11803550" + } + ], + "group": "com.squareup.okhttp3", + "hashes": [ + { + "alg": "MD5", + "content": "48029ba5a920bbb533503169cba8e498" + }, + { + "alg": "SHA-1", + "content": "e922c1f14d365c0f2bed140cc0825e18462c2778" + }, + { + "alg": "SHA-256", + "content": "f3e8d5f0903c250c2b55d2f47fcfe008e80634385da8385161c7a63aaed0c74c" + }, + { + "alg": "SHA-512", + "content": "a3c77d43197b0277204e5954d3bfb37921a1d9e388bbac66e7a35f8d5f5081805645c09119be2a7037dc41a18695cbd06d7599f111c97f8a1e37196b8f38a03c" + }, + { + "alg": "SHA-384", + "content": "7e13b871a10d57e2a1c9b70d47257b9a5c566794c10ff8ecd7d2c917499248a49151438d261313370b35efe1a4f13fe1" + }, + { + "alg": "SHA3-384", + "content": "6289cd5955c89f5f273d691521cced0aed9f55fc617131fdedfbde4ecdbc44de2a27fa22254600dd726200d1d0289db9" + }, + { + "alg": "SHA3-256", + "content": "dac8125f48acf2b5ab7e6c75df0c30fecb8a3258461c7a9eaa26a8ef89bae23e" + }, + { + "alg": "SHA3-512", + "content": "1ce82428b992f6f99cf79d3e3c6225ce76ff41b66fb0d0562c9c4915eb775ae92b87f269317397a47463107ff23c61ab379aed373dfa1f64a5d7ad7a4032ea1f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "logging-interceptor", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@4.12.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.12.0" + }, + { + "bom-ref": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00004?type=jar", + "description": "Java Library to find / apply JSON Patches according to RFC 6902", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/zjsonpatch/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/zjsonpatch" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12794635" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCMQ4URYTEYAG" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.6" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "a7132192c4393a148c1792379152e5f7" + }, + { + "alg": "SHA-1", + "content": "4c66d36afc8b12be8b0a2f308c52732c987d9907" + }, + { + "alg": "SHA-256", + "content": "ff1cba7aba543aff4b1e5e63aff5a18493733a6e49ea499cd71af0aa03e78e15" + }, + { + "alg": "SHA-512", + "content": "b4506ebdb67f54d5ba958f3d054ced0ab0de7b82d409f334a488dcb36340a6f0f7667b89341b7be4bb421634dbd3ae460673b057676dadf4fad143e1dc6ab75c" + }, + { + "alg": "SHA-384", + "content": "e18ffe68a921be98b47e646346a2eb1e4e118e73cf7b5c4d067e88980b3faa18e818781c779efc09c02a486e03a191c3" + }, + { + "alg": "SHA3-384", + "content": "1e614be14f52879ee7b139e85d3ef6227e4f2ded9ad6e894183384b7e75574594a19939f0e75d645d3c9846904f3971f" + }, + { + "alg": "SHA3-256", + "content": "cc4a8e852d3c06debf84dba830820274907617f5ec58fc40824dedb57922a346" + }, + { + "alg": "SHA3-512", + "content": "a3e37e39d05b2cfd285539d31d97999b3f3198ef9aa10213bf30fa7a8701971de6852a13afedd2267f1864a47cf49a8a983b2a77378c64f728e37d6e6ed92caf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "zjsonpatch", + "pedigree": { + "commits": [ + { + "uid": "b30f7e1587f7ad67e2f21e70d79c1f2b1c1e6d08", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/zjsonpatch.git#0.3.0.redhat-00004" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "0.3.0.redhat-00004" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-client@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021545" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c6d03a80fbaacd18a5bdc9382c3d9be7" + }, + { + "alg": "SHA-1", + "content": "08e7baed1b1a93e1411e64d8683cfbd41a24c05b" + }, + { + "alg": "SHA-256", + "content": "dde66255d2671bbeba9a554c03495687bdd9fbc8a295435da365a73b0f602c0e" + }, + { + "alg": "SHA-512", + "content": "08ca17ec9bd1710fdb435438581ea22441a56afdac951cadb5404d325187f26dcaad811e7a3ca40e0b490b1d78ad9b56d6b6bb63959b95fd764d9108470acba6" + }, + { + "alg": "SHA-384", + "content": "64174291c95076f74e8f3b0689127bef1470dc8f138247e7b2fb0c717b18e5ff49bc540f732e17be4ed0ff6d3ecafeb2" + }, + { + "alg": "SHA3-384", + "content": "a7f88d7ba2a1f68e67319c7aecd73d87b599ddfe397fadf12a8ad6b0026880fdc9c8889b22e6dc17fc3be4a2467ddf12" + }, + { + "alg": "SHA3-256", + "content": "5f21095e03dc09054eb14263d99719cb938668cbaaa5c60d07ea523657269d67" + }, + { + "alg": "SHA3-512", + "content": "1316af8f33305a2e99c05dbd2c4c35307baa51f00df4770a74298380d7e63d7435f04a2b462b64f3c6f9d8370ec25e1e6ee3c2209a923fda50c165452c37d172" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-client", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-client@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-client-api@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client-api/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021601" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "dad054a0f829f244f46448d1dbfe84e7" + }, + { + "alg": "SHA-1", + "content": "e6ca739eb698c5ce9d71ac0e7a089c9178e907b7" + }, + { + "alg": "SHA-256", + "content": "be8e0f7fadbb6132cc0aa14a83d028bb7f14214a1ea3241758b77f605eb22f3f" + }, + { + "alg": "SHA-512", + "content": "89862aee6d6aa92953ebaacbe08fd24158ddc1ac8b45c8312747de599019ed9a192fcdfd6821794754e4b7ad7241bc28945e0d8f7cad99ef30cd8d858f16d78f" + }, + { + "alg": "SHA-384", + "content": "dd62d8d0f23de5d5696bb980d86adb6185c32fb1261182e5a92cb10439acdd4441af59fca038253c7cc8434c20301364" + }, + { + "alg": "SHA3-384", + "content": "c73bee4b3354330ab02fd490fab3ad835c238a7fbdcc6bd62fe88d0cf2b916017a87d7bcd55e13fd980128e72a086529" + }, + { + "alg": "SHA3-256", + "content": "1cd542a3bf90978a61a0bc9c39d60edf5010ac8047971596024dc242f4dc187a" + }, + { + "alg": "SHA3-512", + "content": "2fbfc5d75c396ecda6003db6078aba41b81b5d2702b5904c4ffd3ba7d67b9c3f4a68dfd8f9e184072a04e1153b52c562f8d353fe013f97cd650ff6df45e834b8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-client-api", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-client-api@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021462" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "11c3c0b8f24ac04029210accce7fe543" + }, + { + "alg": "SHA-1", + "content": "8210e3db560c7f348486581031ee2039065125d2" + }, + { + "alg": "SHA-256", + "content": "c863a8d0205495bcb08bd9f86e9749acd649c1ad064d893ff8d93664a412e12b" + }, + { + "alg": "SHA-512", + "content": "b4f07fe50bc46819b6ab80ead81c107c09895f737b06b5d1d7d71d10ed674852150c53509a9b771940bd4109968f8fa2c62258c371a0129b02cc9fd3674ddd79" + }, + { + "alg": "SHA-384", + "content": "93957b9bdebcc9c2f0c1efeaeeb75d86590d55871cd9db086abc55457d41edfc9873d947166fb5b5d61391193a1c2871" + }, + { + "alg": "SHA3-384", + "content": "ce6facc84cc98e23155f3364087a838bed2e81bd809fd51b3069d2ffb26c93338b9aa0beaacbeac0cfd8a2eddc8bafdc" + }, + { + "alg": "SHA3-256", + "content": "1ab35edfc76538f90296af10bf1e71c1d6896a8e5cbc029f94279b93caf41543" + }, + { + "alg": "SHA3-512", + "content": "c02871e0205d5da9100b2d944859ce2a315fd6bcffea43fb95b3d6e98ac750e0c73ea44739b67ba83ccc12cc79e7a23925ce2d3290766a7be76c726740a9d51c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-clusterautoscaling" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-clusterautoscaling/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021515" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "56197ed3292d7f342f6a7fcd621179a7" + }, + { + "alg": "SHA-1", + "content": "4269c51ab92645ec3b2deb093db8ce7cf8926a23" + }, + { + "alg": "SHA-256", + "content": "ad48d5ba790014de2e017731c09824b6d78a748e9a32cb54163f58aa2982cc75" + }, + { + "alg": "SHA-512", + "content": "e8c9a480958cbb98b5fba0d3c679708d858dc3785788bd07bb88e6180485d7a02142c1c11756add49cd50148d42028e09a1cdb67d56522eb3171c8b703b853f9" + }, + { + "alg": "SHA-384", + "content": "97d424c05113bc6a0b5a03a0e44d7e54f348f470e8ef112cb0ec666b7b8a08040c756179a315d5b2396784b59e2bae84" + }, + { + "alg": "SHA3-384", + "content": "398f07f88395de855af88a8868e1f8f306d074883cc9f2f85849fbf69bfeb4b9b6fce9adb0ef2cc5a79748280006b7fd" + }, + { + "alg": "SHA3-256", + "content": "9bbf7a0fc024ffa4e04805bfb06585d97373741f08d74e2ba8c28699fb78bd43" + }, + { + "alg": "SHA3-512", + "content": "55fb6e96e48b314535434e3171bf7c93738ee443de817fd74dbbaef8eeb2dd0f0def886854dee23a4c37326ba436a12a03490205d667a41c68fd3da11015bad6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-clusterautoscaling", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-operator@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operator" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operator/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021421" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "d62570e311aee8b26752169d99217c8e" + }, + { + "alg": "SHA-1", + "content": "c4d5bab75794483124356545ce342b84d7beb756" + }, + { + "alg": "SHA-256", + "content": "c1c0cb973cae01647df8842018de03d1489470a00303b405bf2eb9c6c6b25c03" + }, + { + "alg": "SHA-512", + "content": "84ab555926a10ede1d9babb97357c6b6d0aceedae86027c56a09cbaa1de385c04c493e532e9ecb831dae144c7ed9247ab6c2028652269d6d3585ef70e3b48e4a" + }, + { + "alg": "SHA-384", + "content": "5d48b50c7b6848a1d271f023c26cbaea5256435515dbe914859aaeb14af8955ae47d415469fe851e91899e4545a5c775" + }, + { + "alg": "SHA3-384", + "content": "4a57572b8cbfee1f0340820af8b50f9f4be559202bb75d2232efb477ccd8056ee21bde3eda7da153a80b3694c078bafd" + }, + { + "alg": "SHA3-256", + "content": "5cff6c757914a535d27a634c9d64dacf39814095fcedbbaeafd8b239e3a9d9ff" + }, + { + "alg": "SHA3-512", + "content": "0e12a620a8b8f50da8c3e336b0a93e5173c2d5912a607459f3323f87df7d2cb833f68e396c7bd38f20007ecd0e86043c93c3a748bda119a30ca26fc178d26d10" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-operator", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operatorhub" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operatorhub/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021790" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "10f6a11e9b61461b4d2c048d5d51209b" + }, + { + "alg": "SHA-1", + "content": "edb9d78b66a2295ea5b7a9df9e935a403e3ee08f" + }, + { + "alg": "SHA-256", + "content": "c7a327039f8fd22aa8e195746245673ce99d89fe666f600daecdb01f70cd2d04" + }, + { + "alg": "SHA-512", + "content": "a35dac38656dbdddd04c2cf39992fff67535902328e2884ec04a897d13fce56ae09f9ed46271bd9c8830c17f5f825ae9e48d2f5db13918a0b21a323133bd0faa" + }, + { + "alg": "SHA-384", + "content": "e324fbdd9ac1b27257426225de0256f3e343cbebd11764ab7f0266723a8f1b0b765a95be48313c816ffd9849fbbbda53" + }, + { + "alg": "SHA3-384", + "content": "2e29ac4f935a27641e3b792541013dea93e5ddd7640762ba855f0cae8e9fa8133b71549067e9d829cde1db73d92adb6f" + }, + { + "alg": "SHA3-256", + "content": "8bc8c192c04c7367182a67de032e9fe3539d9cfcc4fe9b477c9e2dd05bbf7138" + }, + { + "alg": "SHA3-512", + "content": "1f464a27e48031d212f63e63603df0213a22b965575b9a5c48c865d53df09e8c23d912bccf683724f3a9a35a3036382b4a88e1ac1f7cb57714bb6010dec36279" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-operatorhub", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-machine@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machine" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machine/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021381" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "11b1218958c3a80e297854207c98aee1" + }, + { + "alg": "SHA-1", + "content": "316aa21ef5d91cbc6a50b88e309fa7e64416a59b" + }, + { + "alg": "SHA-256", + "content": "21703ee98e62025d6f3958917e40595e8a7756c71c3704da21124b47e0873408" + }, + { + "alg": "SHA-512", + "content": "2553565bed7f7cfb52f3dd9a21cf30e121faa6c50cc9d4656e790f9b800b82a2328abff7fb441205aa78742581ca503e04b8a811ac85c45806460eb3f852dbb9" + }, + { + "alg": "SHA-384", + "content": "b943c52d6511f0018938eebbd8827d80f883b6421b064c11877bd4c5633511da093f9dccb0249ce269cbec5b50151efa" + }, + { + "alg": "SHA3-384", + "content": "2dcb52d0eb76c81acd0fd97cf8981bffabb2e3fb7014d494310ef6bc00afe44458e4bfef75e1a79687624ba64014cf51" + }, + { + "alg": "SHA3-256", + "content": "a2015fbca6b7ce206920eafef92024bdbf77e895a637563ae6ab7282e7b54f11" + }, + { + "alg": "SHA3-512", + "content": "f1ce4b2b3f6587d510120fb14b2a16c33444712d222a0cd8f92615b7eed86a7bca2a0c68ae1aa6481d91219762b04e17037dbd6d77ab1a4a96304436fb7854bd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-machine", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-whereabouts" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-whereabouts/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021573" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "51c4c7bc1ecb0d4bf128f72c72a29486" + }, + { + "alg": "SHA-1", + "content": "073d6d47bdc6a751c254f596dc2247c40cedcf1f" + }, + { + "alg": "SHA-256", + "content": "3c3d9fc7ce47cfe586559c3bd2c218f88df06a6f289faa20bf8cafc505c5e3d6" + }, + { + "alg": "SHA-512", + "content": "79a2e496f3d77ce66fe9444ad0c1265be8ee95e97939c76021c93cc77274a0e8b1bb45b12014bb66ae6c3126d041f08b65b8259eee43130318c35f650c8b53b4" + }, + { + "alg": "SHA-384", + "content": "35e580a9311635c88ac3bfbdb208afbe729d2ec85af0ba65b11bf9589d61f802cea9cc43861f3d3faccc0658a281e5ff" + }, + { + "alg": "SHA3-384", + "content": "27991fb6b34907df0f7948a9d652a0e063d60cb7f691abe04874c737b1531fab2bacb4913a35d30e98e297efb71202a8" + }, + { + "alg": "SHA3-256", + "content": "dfe37ecd69c31fe4829c9128f0f7851e05a9b2ae1c58ad490e1fd01b88b3bdcb" + }, + { + "alg": "SHA3-512", + "content": "781345eb6fb963fe7546fdfb70d3eeb50fe3c29219e316f2eb219e6c7d6adca62f4917efbbcf54253c970813be300d5173c60ce2fa4198bc7d5e59907615ee7a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-whereabouts", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-monitoring" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-monitoring/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021454" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "3af31424d406b1ec5aaa5932b2acfbce" + }, + { + "alg": "SHA-1", + "content": "17a7859eeb62355679568df4d2624f38b3e90bad" + }, + { + "alg": "SHA-256", + "content": "15ee69b54b7e2c06e6ef5a6f005e87f3cf6e1a750f0285e553ce36bf4882f53a" + }, + { + "alg": "SHA-512", + "content": "ccc5e2ddf58dd7b3f465cbca85a125446cbee0f783206d77871fe347ff250033ef1d03bd14f3d31c0c65fa04ad21c081d690f14324ad36623292209d823469f9" + }, + { + "alg": "SHA-384", + "content": "3b69bf42b7dda52dd87751e8d1336e295ac1bb33c5a04704fcc825ef448f3e1b8078c2b5c28538a4574aed4eea50a156" + }, + { + "alg": "SHA3-384", + "content": "66859c1c6ae48909807c5abad849fa06783ef533148c3f1f2de7453529c15c9882516c81d13cbcbbe5c9c66c3fcf2aa6" + }, + { + "alg": "SHA3-256", + "content": "d64dda578cf742d1784e38f27af8fa42b65ca549d25e95f34a5c015fa1455e3f" + }, + { + "alg": "SHA3-512", + "content": "a82d8fa53e8a4fb1434eb73c53522a6c388dacb84c43fc4140044e3232eb1d29d8c331fe2149e3a2bc865c6a5eab9bc326ffc6415f4cda381bd6acf8b3078553" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-monitoring", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-storageversionmigrator" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-storageversionmigrator/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021590" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "08b5ad047061f1f20c34477f41c8e0c1" + }, + { + "alg": "SHA-1", + "content": "5ab838d3943a53e1e7f6a77638d89fb40d3079ef" + }, + { + "alg": "SHA-256", + "content": "1e33ecd59872ad467c4749c11e50e3541d98334b36d01a5cc3d9fb1507057f99" + }, + { + "alg": "SHA-512", + "content": "a2035ac1e9389eb711da76f8aca993b3025dc4f8c018e755a7ec08a918a50908e41a08e579bd6422a08178ab556e99e9376612bed9346e13f2ad666f9da3767d" + }, + { + "alg": "SHA-384", + "content": "f1d08ea00d3ee61142325de55513b4b545c3fd61715bbff8b42b4a60f2eaa43619e75a87edfc9263968d3195b633cd7f" + }, + { + "alg": "SHA3-384", + "content": "a3692a5f048945b7de0d0241396932d92da6e20515c69eaaca4a1db25446740da47aabc1c20197d85dacb9f0760723ed" + }, + { + "alg": "SHA3-256", + "content": "2281a06204e64040639f2a1256c422b9dfe719c423e081a3fefaa3d57ea0e810" + }, + { + "alg": "SHA3-512", + "content": "dbafcbd234d0fa67d2e0e2a8b5acfa33446c730fe6294c24ac3e5cf13959469511e8252750c92c3365c888ce576cb838625ff6670ede4f7aad0a9984d2fca2b6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-storageversionmigrator", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-tuned@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-tuned" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-tuned/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021606" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "ad0aa2b006d7f7639d8b595c3d39e484" + }, + { + "alg": "SHA-1", + "content": "d3b7bc3893c22556933d181266ea9aa3acfbba67" + }, + { + "alg": "SHA-256", + "content": "1efc0298a13f082eff8fc7ac8ddf0e1c027caa5edcf88c88ebbfa621d733913e" + }, + { + "alg": "SHA-512", + "content": "913d746c75c73c9d59b2d488f45cf813516bad7674b579eb6889694db725fe877b17bc377f4a260c7fec155d4deb4b56c273f5e18591d9bba966ac392922eea4" + }, + { + "alg": "SHA-384", + "content": "7151f7bd1e2aab2a22ed2bd5eb8f9f5fe356bbac0eca3b64b14bf020f172100078e2bc3f35e6b06d4be09b62707dd549" + }, + { + "alg": "SHA3-384", + "content": "ad9c4cd2306f2c2f28b3530e0088cfb9efc5e95bace1ab6dfe337250ffad772da23a8b6804ee43c304e9be31c4812d52" + }, + { + "alg": "SHA3-256", + "content": "4fa63777026e99db2b2c76b3dec3ae2801fd194ce8f6daa395790aefda86d08f" + }, + { + "alg": "SHA3-512", + "content": "d0d2257df9d07119598852c61240d196c3235a6efa7246d896cc02ce35eba3c9a9111f5d2698591a64b9c342fe6660043d1fc127d85d68ecff0fbab6bfab4dc5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-tuned", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-console@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-console" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-console/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021362" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "b1e56679970a8445534ec5509c1ae862" + }, + { + "alg": "SHA-1", + "content": "14c6fc0ec1ef44762b5b69820a86f872ed00fd0e" + }, + { + "alg": "SHA-256", + "content": "27632300e689d4dd3dfe34c90091bb9392bcc65e969b86f23115381dfcc6313f" + }, + { + "alg": "SHA-512", + "content": "4ccd0919d7537c2ba72b609512fb38875840f7ac96449d853654609395cbc08d78ded66ed515f00e0b38561f0dfa3b0623ea5cddc9e23ac0008eb8b353bc1616" + }, + { + "alg": "SHA-384", + "content": "672ae1a6d95e34d723866cc5ee22f3c973e3e5bb1c31c762646d61d7957519386ec46477a17c2777c633df01578ca727" + }, + { + "alg": "SHA3-384", + "content": "454b0a7a87e85690f7d7a8a396a73e0216f27aeb42e5de6a8f7d72f3ac8e0ba032be603b2c5e8024a90619819af166fd" + }, + { + "alg": "SHA3-256", + "content": "77eebd024039d8a5d9e27de62746da2b20e2d3c2a461426885c8c3a9668bc04c" + }, + { + "alg": "SHA3-512", + "content": "1324c03ee444aacfebbc72519c4dee91add060009551f56da2fc5c87fb09e3e51e0bd4345aea35d2829a0515b101f9c6fd1dabbd92f618cd5d0440cf90215289" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-console", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-console@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-config" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-config/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021389" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "a7e032717eeb54ff383370418d46fdba" + }, + { + "alg": "SHA-1", + "content": "5f9e0e442e22cb9969b28614db0c23d35c7d1e3d" + }, + { + "alg": "SHA-256", + "content": "0942ebe497951a9ebea992d2a6b3f0d0a3368989ff6e543dbf9e48492b1b4672" + }, + { + "alg": "SHA-512", + "content": "c277fbaa7d91da01d27c686d55124c7260801525622a20bec451efe2245bcff854615c8affa152007418ce95c32a6ef0d0eec0e095ced911b7c6c6049bc59214" + }, + { + "alg": "SHA-384", + "content": "e16168d16d5610a2cb346322ed807f554602709946e22c3f9875718331a6a4da60ddda0a42b3d03a41bc3453a9489d8b" + }, + { + "alg": "SHA3-384", + "content": "f3292f4734503194a3487569b9625527ae9fae1c5b0c543fe113f0c452394e20e802584377517511e3827001a3e805ca" + }, + { + "alg": "SHA3-256", + "content": "9c49a10d8d9db359aa8f7777b77f8b5e8c14b5d124ac9626fcf33548416f329f" + }, + { + "alg": "SHA3-512", + "content": "4597951e68af7eb6f316ab21309fd0b87c177d73ee99f082d17fe427089f7162660cd74f5b60b9f71bce0b3413aa2ab9d40330e815f6c4e50d6138a959e82c62" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-config", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machineconfig" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machineconfig/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021642" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "aad87dd5b1a465bf74b580a5976bf737" + }, + { + "alg": "SHA-1", + "content": "47f5b660ea7bff4097108942a31fbbd8c8708347" + }, + { + "alg": "SHA-256", + "content": "d592e09ae6d050449dfc44e4434ec924e6fb1e53131c0cc88b446eac5c06de65" + }, + { + "alg": "SHA-512", + "content": "3d56a1c5b603c5199c3df51a0a96e6e729edcc4309c7e7be3e9016b3ed9d7a44198a78091f11f2695d5957126b7ad99fbc90ef14b7c9d1c34047b256158c90df" + }, + { + "alg": "SHA-384", + "content": "27868218a3f03eb69d6cb28e2ad1c72fe269569333b1f9e4d2299c01f07e4da01f5bd735cdcd3f5f5ca1af415cb510d3" + }, + { + "alg": "SHA3-384", + "content": "39f11c2ed6edaa23d2d5d9b85d39f61bf656944bc3ddf8e696771c6c9620a8f219ea8e32eb220d3e130dc70b9cad301b" + }, + { + "alg": "SHA3-256", + "content": "48d147345cbb3eff229fd8921fdfd841ec0324f78eb33c4a324def92a52003fd" + }, + { + "alg": "SHA3-512", + "content": "5f76c6dc7528d4747c24e382ff106b906c9562d79799f6c0128c0c8d342b2d348bd1b1db39eaa4530006d8f8bbb738fc422d6bccfda6fcec633aa50a9b01fb50" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-machineconfig", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-miscellaneous" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-miscellaneous/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021524" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "f31bf173a73ac462def2fc8a4a7cfb15" + }, + { + "alg": "SHA-1", + "content": "a7a53dbe94f45aec9ee0b087e089513ae505b316" + }, + { + "alg": "SHA-256", + "content": "fe80f6f539ae2fe4af4b50888dcef34035966756329551cbb5726297ba6b7a7d" + }, + { + "alg": "SHA-512", + "content": "cbd924811e6b37b823998d5ff56a8e94ada8aa9ef273a4b03b7cbb9cda5f0e181bcbdfb991a8a50491da6c16c814b6d951079bb5cf3b6bd77a18fe7c994c83d6" + }, + { + "alg": "SHA-384", + "content": "29d804754cfa7b3bbb2ccdca58cb15ea8302e3c50a0bf1bb07062dfa8e1c1db03796f8bef70c7a1d66e7c5090a7a49a6" + }, + { + "alg": "SHA3-384", + "content": "058773b97ade6a27763ec69a4eccf6b514c67a1f825c8852d8fdd191569a90720333999e34c28d83b09800f7324e94e5" + }, + { + "alg": "SHA3-256", + "content": "1ac4875f8531eb5046479a7b8fd0009148c6fa0c3bfd68b27357e11c2894d0f9" + }, + { + "alg": "SHA3-512", + "content": "e36c447b09a0f2bfb6d8bbe0418f25a4f4d680c770661f803ba0e57dbf1b706e4fcd97c6bc587cb545abc7f062c4d625dbee7ef9986aa28f07f4ac877b4741f8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-miscellaneous", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-hive@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-hive" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-hive/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021523" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "ca01a5818863018fc97de9775218b6ac" + }, + { + "alg": "SHA-1", + "content": "5e14c8351437e38dfe4a66c106a96f28287879d4" + }, + { + "alg": "SHA-256", + "content": "2437ce9ba4bc5283dac52cc0be61bb7fd8a2d891027d9414c51cd7a939b40866" + }, + { + "alg": "SHA-512", + "content": "7d41f95d7813fff5fe702c5b8d1ed95f76ce52e83550bf023ebf053e4cf4782df2b41bce538c354c69c3eed71e99348efd5a72c3d5397aa05c7149e27be2735c" + }, + { + "alg": "SHA-384", + "content": "2f54e2e3e30ffea5c0d383feae79cf6650ebc400c20359fdc4e230943ee125f0d99f6d32c8e600b1c27f9284fc7c367d" + }, + { + "alg": "SHA3-384", + "content": "ca4eaa30da6b2e6fc98c147d080ed99b37435a482cfdfa4a4e93a9daaa9352b3f42e342ec37b7e7e6e7499daace5a032" + }, + { + "alg": "SHA3-256", + "content": "49cf9352db458f19bbb3a20c847afa6dab49cb3ab5220bc2055b68368dc0de94" + }, + { + "alg": "SHA3-512", + "content": "a7499734358261fd04c732fea0bfdf7dfb031c7fbd4527fbf5dddee30fb916b83b2a4f5e5589a6eb7062c9c70774dea1964baac4a4f6cb84a1f26b8e3ddd7d9d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-hive", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-installer@6.13.3.redhat-00002?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-installer" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-installer/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13021586" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFWKWC2WPYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "1398a243156e9a4c121611d3650fbc84" + }, + { + "alg": "SHA-1", + "content": "49c2a30e6d1da2410a4d3d06cd2594559c3d971b" + }, + { + "alg": "SHA-256", + "content": "255d0ae7f1591d4d4b836efebd5bf65a98a8e558cb925691c71407735262549b" + }, + { + "alg": "SHA-512", + "content": "881ef1d41456d5ea6ef10ee59e8b0973d81231cd205618b2493ff36bb124690df27af848818f0c829de838d3233abfc829b8f7fe7d5a30b365aff47c190a58c8" + }, + { + "alg": "SHA-384", + "content": "f509f107df8044612e919c152aa5dda007d420e8726061262893b7fa581537d428657ca9f756e1dd749b872235208f47" + }, + { + "alg": "SHA3-384", + "content": "b8f682dcec36e3f3a49e1d3a65be93070e989511cc4dd6eb726f7cf4d898497c85b5f8b77eb18c011e783c53f7aef824" + }, + { + "alg": "SHA3-256", + "content": "15510fd51375a523c56ccd1c416610fb51909d60632421bf448862c53c172981" + }, + { + "alg": "SHA3-512", + "content": "cd668504aa632167b5b7b179eae230d5d1f4e3d1f4ac64c786cb739cb32a36db4fb267f8b4a5b978523f1ea000cdf41eba0a1398746b44655a4b8dfe241ab63d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-installer", + "pedigree": { + "commits": [ + { + "uid": "8c75f834bed5be991933cc430cf8189d5e068d41", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/fabric8io/kubernetes-client.git#6.13.3.redhat-00002" + }, + { + "uid": "a1e7a4abeff64151a4964c2362b22d0723e15486", + "url": "https://github.com/fabric8io/kubernetes-client#v6.13.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@6.13.3.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.13.3.redhat-00002" + }, + { + "bom-ref": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar", + "description": "Generex A Java Library for regex to Strings generation", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mifmif/Generex/tree/master" + }, + { + "type": "build-system", + "url": "https://travis-ci.org/mifmif/Generex/builds" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/mifmif/Generex.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9133312" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AUZ57OQOTVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.1" + } + ], + "group": "com.github.mifmif", + "hashes": [ + { + "alg": "MD5", + "content": "c6030d8c9f970c4954cbffd69dfb090b" + }, + { + "alg": "SHA-1", + "content": "30b0b935f2860dad575038720aebd0b7069fc24c" + }, + { + "alg": "SHA-256", + "content": "b2a3e4bc0f737d18a82dbf6dded501fd55f29fa97b7972d13f9a5a5671bf61a9" + }, + { + "alg": "SHA-512", + "content": "e9a96bc34ae84e66093409ae0e4bc321fb22912ce421ebfaa71c4b9f4cccd214783da888a0eea4286bdfd39da436e2427b0155fdadf7168befddae16df2489f4" + }, + { + "alg": "SHA-384", + "content": "6036fbd8b35560d8fe52691c740e89d4a891128a0a25762bf1bdd2dd424f4d7c0431bcd07334f402cd01567b31f99486" + }, + { + "alg": "SHA3-384", + "content": "e8831391ae967c955c4f8f356e19ba86826abfa36ffe479aed1d3926f1d9150b9728e66c943ade92b4144990f3d81fd5" + }, + { + "alg": "SHA3-256", + "content": "fec490bcc6a931fbee6c7a530e36301d726a67b06dbcb3a4723daa4a40ad42c7" + }, + { + "alg": "SHA3-512", + "content": "04da8f3e0b9bce6b178d9ff727762150ddfbbd4d7307a61d5fae9378278c36bf6b70b8ceb8517de36fb8fbcb6545c50d2d3bce7f4ccf68970ad77d82b1870796" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "generex", + "pedigree": { + "commits": [ + { + "uid": "0b619689425cbce9d59220c25d6fa9ff2c033ed3", + "url": "https://code.engineering.redhat.com/gerrit/mifmif/Generex.git#1.0.2.redhat-00003" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.0.2.redhat-00003" + }, + { + "bom-ref": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar", + "description": "A DFA/NFA (finite-state automata) implementation with Unicode alphabet (UTF16) and support for the standard regular expression operations (concatenation, union, Kleene star) and a number of non-standard ones (intersection, complement, etc.)", + "externalReferences": [ + { + "type": "website", + "url": "http://www.brics.dk/automaton/" + }, + { + "type": "vcs", + "url": "" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/709455" + }, + { + "comment": "brew-build-id", + "type": "build-system", + "url": "https://brewweb.engineering.redhat.com/brew/buildinfo?buildID=543783" + } + ], + "group": "dk.brics.automaton", + "hashes": [ + { + "alg": "MD5", + "content": "4d3727504b182de3f9c23a155f9fac4b" + }, + { + "alg": "SHA-1", + "content": "790052eb60aba05988eb4b2427a93d859debd7b7" + }, + { + "alg": "SHA-256", + "content": "702b8cb389d2deb95b333ace797562383ccdc2a02348aaf09b656f9af82718a6" + }, + { + "alg": "SHA-512", + "content": "91b43845f4514dce2e462b2708ff2b68995eb32cd414fe45a457f324abb032d38d280256d85dd6789950d14aeb5aa5466186c133c247ebd94f7be9ebe1a096e9" + }, + { + "alg": "SHA-384", + "content": "e6d637aa3f10890519a23446d72b434eb8f45f4d96f7c2fc9870239989ef3ab09073150c7321a6d9cbf36812a5fb1123" + }, + { + "alg": "SHA3-384", + "content": "ad51dcf0bd1d5d3226d70a4d82ddd254b17d6f08164483b50631b125220a23cbaeae5ef9ce4d1d40769e7646ffec8dcd" + }, + { + "alg": "SHA3-256", + "content": "1587c8c2edcba29b25171fac64c79b5f4ae699fd4399c60e8accf4de71230588" + }, + { + "alg": "SHA3-512", + "content": "804bc5e05174b395d0513d84f0041a37640bebaf6e6e9124dec1b1ebcadaf38a880db775e30b3844e41b0d0fe204597392917e7c61e19c3a3d5df1ab4b1f8060" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + } + ], + "name": "automaton", + "pedigree": { + "commits": [ + { + "uid": "6b0d97447d353e7acc61593babf8ad97c264ede2", + "url": "git+https://code.engineering.redhat.com/gerrit/cs-au-dk/dk.brics.automaton.git#6b0d97447d353e7acc61593babf8ad97c264ede2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.11.8.redhat-1" + }, + { + "bom-ref": "pkg:maven/org.hibernate.validator/hibernate-validator@8.0.1.Final?type=jar", + "description": "Hibernate's Jakarta Bean Validation reference implementation.", + "externalReferences": [ + { + "type": "website", + "url": "http://hibernate.org/validator/hibernate-validator" + }, + { + "type": "build-system", + "url": "http://ci.hibernate.org/view/Validator/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://hibernate.atlassian.net/projects/HV/summary" + }, + { + "type": "vcs", + "url": "http://github.com/hibernate/hibernate-validator/hibernate-validator" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10683678" + } + ], + "group": "org.hibernate.validator", + "hashes": [ + { + "alg": "MD5", + "content": "66985b6bf8da17611031e2421c235241" + }, + { + "alg": "SHA-1", + "content": "e49e116b3d3928060599b176b3538bb848718e95" + }, + { + "alg": "SHA-256", + "content": "8c1244a498231091fe723d9666a93444ee9f93607245c6b29829dc5fe57a335c" + }, + { + "alg": "SHA-512", + "content": "35b7f997a726ba92bc981fda35a1b4cf14a944821b3afb61dbddb89b2f6ce0bf77947077aa6b6f0ab0785a6781af174b300ca71fd806d37e2e13c6906198d1b9" + }, + { + "alg": "SHA-384", + "content": "27a687a4f509268dc6944ef378a4a2b9e7623ede46d2355e436e1491ee2abb5d8da897d0a2f107bb93908b9b1ae63a1c" + }, + { + "alg": "SHA3-384", + "content": "374ae40b76b1ba638fd72a5c909e1af7ec0676135927655ca1c578f0fea311926ee47ba8c83e7cd255489bfea567afb7" + }, + { + "alg": "SHA3-256", + "content": "cfdb54506c32bffc33798361f50b0875c37fe8286491d9ce8da8167fb02d2ef4" + }, + { + "alg": "SHA3-512", + "content": "195e549e77d72b37baa8ca740a625a61784e9ae83045767b04889a4a07f02cfc67cbacc1651128f4b2e1fa17d9caba919ba39c71f399b9f9d6457cd64e37877c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "hibernate-validator", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@8.0.1.Final?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.1.Final" + }, + { + "bom-ref": "pkg:maven/com.fasterxml/classmate@1.7.0?type=jar", + "description": "Library for introspecting types with full generic information including resolving of field and method types.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/java-classmate" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/classmate/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/java-classmate" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706349" + } + ], + "group": "com.fasterxml", + "hashes": [ + { + "alg": "MD5", + "content": "3b8f14fe92feb865a8205aa63c5ed769" + }, + { + "alg": "SHA-1", + "content": "0e98374da1f2143ac8e6e0a95036994bb19137a3" + }, + { + "alg": "SHA-256", + "content": "cb868f231c5cceb89d795ea00e6e1b7a93b8f4ac1ce1d8be76dde322dff4a046" + }, + { + "alg": "SHA-512", + "content": "6761a0a8efe5ba89a812e49d8f7d2a9e1a100d4edd63ede79ee9a6d22758b2e2511653ea5964b4b9a2e5567ea062337ab581960acbe710aacac055770fbbcefd" + }, + { + "alg": "SHA-384", + "content": "4341387cdba9ca6d0e93f59e2321dedf0097baca043ff6e230a871a462dbe58164b85de9352c72e752aeb0918b83479b" + }, + { + "alg": "SHA3-384", + "content": "848d338e572619cb6827e69ed6449764c53fa9c5da2f17c3d428aba7de3dd36c026a31485b09b786d0ea6bc92b181527" + }, + { + "alg": "SHA3-256", + "content": "cb65310b60ac600730344fc227d39a256d9211df612813ceea867a7c996a5486" + }, + { + "alg": "SHA3-512", + "content": "08273ae03154eaf16984dcfca36df4d2ddb56a1a3fe8ce8cd120e2de308bc79a7e44fce00b6402e0b1c393ea35e619fe50acfd436c381ef96bd47fe3ce3da90d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "classmate", + "publisher": "fasterxml.com", + "purl": "pkg:maven/com.fasterxml/classmate@1.7.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.7.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-client@4.8.0.redhat-00001?type=jar", + "description": "SSL Client using http component, to be deployed on OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ocp-ssl-client" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-http-ssl/camel-example-spring-boot-http-ocp-ssl-client" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-http-ocp-ssl-client", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-client@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-infinispan@4.8.0.redhat-00001?type=jar", + "description": "An example showing the Camel Infinispan component with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-infinispan" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-infinispan" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-infinispan", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-infinispan@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-infinispan-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-infinispan-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-infinispan-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234808" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "edaf3be0866cd137c4e8ce38c18a8269" + }, + { + "alg": "SHA-1", + "content": "1e33b4e465abd27945de56bbaf0b6ae94cf720b4" + }, + { + "alg": "SHA-256", + "content": "06b6a1c14cc2ab3bb4af6aff93c9a4d1722157a74e2ab6d70058276d54be64c7" + }, + { + "alg": "SHA-512", + "content": "c907a538ec9ef9b67dd52b3ef5080442ca5cad7dac050daa96ee938d7c79e17bdf97a3bdae3be1a152897241b99146612474664edd53bd6991a8bd06043d75d9" + }, + { + "alg": "SHA-384", + "content": "fda84ad49fe793466c8a5fcbd759fe9614d67a39e3757351629fffbaf97130930f60daa6b8a1ae5ea6d10f9cc49bcc53" + }, + { + "alg": "SHA3-384", + "content": "ed95352abd37a5dc39ccc3d633e589c7fd61fafcf40635b1cf86e35e8d73b8b99bc4a4dadfa27a642f068d428b516a4e" + }, + { + "alg": "SHA3-256", + "content": "a6a79f30060e306f0bf156843adaf11f86a66ebb58467e0b70dba04f96c85e7a" + }, + { + "alg": "SHA3-512", + "content": "2fca00dfdfb6d27e59e5f817bf3e9e2103aa0d02eade1d7f8ef0e9f7325b8b84d75381f43367f784d914696f432bc797940821246137da0bb9b436e1aa591834" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-infinispan-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-infinispan-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-infinispan@4.8.0.redhat-00017?type=jar", + "description": "Camel Infinispan Remote support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-infinispan-parent/camel-infinispan/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-infinispan-parent/camel-infinispan" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233843" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "9e47abc69ea49babc7530fd5f7149374" + }, + { + "alg": "SHA-1", + "content": "2538c624fda22867bd7b5f9bbd849ee4c9867a80" + }, + { + "alg": "SHA-256", + "content": "a70f0361907ef58430bbb55d657b6ae0278dde928a3a136cbb5195a43955e5cf" + }, + { + "alg": "SHA-512", + "content": "60121f6bbc990abeb069b473829f21090b7b263398493c5684acb39cb789a90a87a7a3d0d2e54e16bd464ae151f7cf442d5f3eaba5c70da03cbe28393db8fe06" + }, + { + "alg": "SHA-384", + "content": "e913ee7106250c5701a707adfaa1c17012f5b19c402d666a25675158d78d2500804c652444107fa073eedb639bdc1073" + }, + { + "alg": "SHA3-384", + "content": "fb20661aa6e279a1b54b426980b6098dd9abdb4bd3cf48da58496ddb626dbe3c939727da4443c7e652fc49b325d3e59d" + }, + { + "alg": "SHA3-256", + "content": "1908bd2671c53f07ef695d85959757d887414911e18e783eb06ef8e55d1e96fb" + }, + { + "alg": "SHA3-512", + "content": "8c4ae0455e55e32557dc25f7e3d9b0b1582d90114ed95ae0df03c9da3a13261c9a68590b266d87c9e5f2504838484bf6a668de732c5016c84a93e79ef076fa10" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-infinispan", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-infinispan@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-infinispan-common@4.8.0.redhat-00017?type=jar", + "description": "Camel Infinispan Common", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-infinispan-parent/camel-infinispan-common/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-infinispan-parent/camel-infinispan-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234181" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "add82a498981d69e3331fc58fc0129d0" + }, + { + "alg": "SHA-1", + "content": "93a17da82edbcd7770b9999161d58b1dc50ebd9e" + }, + { + "alg": "SHA-256", + "content": "c1e114ae1ebf1ca501dc91ea74e756db746d305e97c0bbf0902ea51f50e05ffa" + }, + { + "alg": "SHA-512", + "content": "1203e9895faa0a01de239722d3646171e055e9cc755edb9c5df0ff70785644db105b1835c214edcfd0c47e4afd3c853f532d23a1cdd5e3030734fab2d413bcec" + }, + { + "alg": "SHA-384", + "content": "c3301aa265d4e7dfbde8cb81cecd51e854d3ac3a473361181afa602faa3ec07020a891fdc0108f0dd308b66458d26615" + }, + { + "alg": "SHA3-384", + "content": "39a170ea1d218d4843e82059f2cedeeba4466ffd022c0fde85b6977f4f6e7630bc845dd73636cdd6f5b4f8342ecc3b8f" + }, + { + "alg": "SHA3-256", + "content": "f22e78ab325c003f5b7b0db6c00d71d157ed9936eb76ac545c87f26e8fbba037" + }, + { + "alg": "SHA3-512", + "content": "c852e2601fad7610567127189eabea1f02394dee11b3a446b22030574f6a0b633683b66f0268898d6ff2df52104477e827623c7e2ff8aeb135ed2bba25bbb197" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-infinispan-common", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-infinispan-common@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar", + "description": "Infinispan Commons", + "externalReferences": [ + { + "type": "website", + "url": "http://www.infinispan.org" + }, + { + "type": "build-system", + "url": "https://ci.infinispan.org" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ISPN" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/infinispan" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13050259" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKBNGMXWPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-mandrel-23.1.2.0-mvn3.9.4:1.0.0" + } + ], + "group": "org.infinispan", + "hashes": [ + { + "alg": "MD5", + "content": "00243e10d98bbba0cbabf3eece29ab56" + }, + { + "alg": "SHA-1", + "content": "2a4e4bd201f725b9a2901b47c5a4b51937cec76c" + }, + { + "alg": "SHA-256", + "content": "7df19992f78776c670f616304b6da342e25909f67e9854b433651d22ac4019d4" + }, + { + "alg": "SHA-512", + "content": "9e51cfb3ffd47649a696e54b25083a326ab3fb36ccdeb7c44891828de37c0c2bb8c01dbadb7b6e3f9cf4082dc159c5198b2debb21d0924b430197ae4c7341a5b" + }, + { + "alg": "SHA-384", + "content": "d9a1696da79e17f12de72c80a83a38df75ae56d8641651b307da060ca01fd8211d71acb1aa57ad49ad8c1f5c0ba65546" + }, + { + "alg": "SHA3-384", + "content": "31686234820f1a6c355299729536ded45dedbf0a266c8c12e29c9a42789f016e1c68efdf7d18489cdf4fe873e2bb21b0" + }, + { + "alg": "SHA3-256", + "content": "9c0089655f2a0e775f6a3a018e83ef238f16e0876f997b4399fc778d19f3c607" + }, + { + "alg": "SHA3-512", + "content": "070a0fe6776aea20ff9119899d415d897e1049553c995935d75c6589a583d375933dc986acc1982e03b4e6f8302b2c4267e7d8a205cce92c4a0a20fb7d72ebe7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "infinispan-commons", + "pedigree": { + "commits": [ + { + "uid": "3289856d988bc3d64294d9bd62f1051af053abc3", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/infinispan/infinispan.git#15.0.8.Final-redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "15.0.8.Final-redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.infinispan/infinispan-query-dsl@15.0.8.Final-redhat-00002?type=jar", + "description": "Infinispan Query DSL API module", + "externalReferences": [ + { + "type": "website", + "url": "http://www.infinispan.org" + }, + { + "type": "build-system", + "url": "https://ci.infinispan.org" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ISPN" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/infinispan" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13049964" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKBNGMXWPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-mandrel-23.1.2.0-mvn3.9.4:1.0.0" + } + ], + "group": "org.infinispan", + "hashes": [ + { + "alg": "MD5", + "content": "d233ac9834b99c00b3e75ed9b4a01521" + }, + { + "alg": "SHA-1", + "content": "3997eff8c8a852e8d0b298cd36f5fc87cad6480c" + }, + { + "alg": "SHA-256", + "content": "5e2911766fcefc986fb6f846fe9851ce158860214e8295cc20fd4594886aab49" + }, + { + "alg": "SHA-512", + "content": "6e8851dea373bd5a4b2a2b5861cb2c885a5b48e325f5eb87c3368c9504b0d87e5b195b9666e40b7266c9acfa0538fbb3a765ee02dd7966fe2ab07745002e64d3" + }, + { + "alg": "SHA-384", + "content": "091d93ef9b5ea00b883c6d2c5b0c2dbb566995b03c9d6f2b07351cca67ea57677138a4b8659d2de3010979edcbbfdf94" + }, + { + "alg": "SHA3-384", + "content": "103443076534ffad3e3234ec80f13267e5644adc954fb386aea416fb5bfe9172016f822ffcc47a5ece670cebd8284384" + }, + { + "alg": "SHA3-256", + "content": "a74376ca2368d21d14e6a9358a2c0062a11ce451fd238ef34b845cc975b5bdd9" + }, + { + "alg": "SHA3-512", + "content": "8686d01e87480150d894ad64c7d4d0f123277c0eeded972a7ab4498bb0572556ed8fb53430132cf5423ad8bc0a310136497c0c02dbf8e7b2a266054d1879e38a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "infinispan-query-dsl", + "pedigree": { + "commits": [ + { + "uid": "3289856d988bc3d64294d9bd62f1051af053abc3", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/infinispan/infinispan.git#15.0.8.Final-redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@15.0.8.Final-redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "15.0.8.Final-redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.apache.sshd/sshd-common@2.13.2?type=jar", + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/sshd/sshd-common/" + }, + { + "type": "distribution", + "url": "" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/SSHD" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/mina-users/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/mina-sshd/tree/sshd-2.13.2/sshd-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12793749" + } + ], + "group": "org.apache.sshd", + "hashes": [ + { + "alg": "MD5", + "content": "29bad0001ba27ff64828626c2301ff43" + }, + { + "alg": "SHA-1", + "content": "dc9be542599fdfe446371d39a65a8d643533aeba" + }, + { + "alg": "SHA-256", + "content": "c86d499b2c77ce8e76e5fc5e4a1deb9944303ba951b166d30bbaefbcd74d5702" + }, + { + "alg": "SHA-512", + "content": "a425a5acfa7830ddade0fa4fefd3c97a4a58ffdd5346686f6725551792dd9221e44cb6a6bef2059311aa5ed6928dc6345f620e4ea4d6e53e51ea1d2cba804503" + }, + { + "alg": "SHA-384", + "content": "59c039fccd0c381f6455b1d3cd80e668a0f1be61bbc0c944c989d7ab5e6986112312f73bd928bb6c2a76167e7af69b78" + }, + { + "alg": "SHA3-384", + "content": "10be96821f8153f3b922b56bb14f56045da8be818f39162a16070980e7a5d4f740f66335210eb4bba2c134fa9afb1192" + }, + { + "alg": "SHA3-256", + "content": "00713960a6103a2ede3c710555ac126629c43a4c3d6db8bc0bc10fa93cd3f3bd" + }, + { + "alg": "SHA3-512", + "content": "1b3d778ce272184204410e92b1425e0892af834bfcf7e88ab65a1c3c43c454fb6e4867a6f01944059d14eea47441e6f392599510d5b7a93af84babe7046b6608" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "sshd-common", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.13.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.13.2" + }, + { + "bom-ref": "pkg:maven/org.infinispan/infinispan-client-hotrod@15.0.8.Final-redhat-00002?type=jar", + "description": "Infinispan Hot Rod Client", + "externalReferences": [ + { + "type": "website", + "url": "http://www.infinispan.org" + }, + { + "type": "build-system", + "url": "https://ci.infinispan.org" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ISPN" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/infinispan" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13049916" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKBNGMXWPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-mandrel-23.1.2.0-mvn3.9.4:1.0.0" + } + ], + "group": "org.infinispan", + "hashes": [ + { + "alg": "MD5", + "content": "ec4a1080b895f7cb5c1aece23dd3d6ac" + }, + { + "alg": "SHA-1", + "content": "c05defdcf2332c069951544d688a9ef7abcc2684" + }, + { + "alg": "SHA-256", + "content": "efdcec3dd89b77425bb51cf8cfd2dcf53760799dda4fe38bb5ed4b218ea06b3a" + }, + { + "alg": "SHA-512", + "content": "5765138dbf44466d8c9a8bae450630e3f0cd67bb6399ef07ff26a649c6853898f8a481fe84ab6bbc4c868fd1060f7998de62f074aabe10a59be4b4fb8a428c8d" + }, + { + "alg": "SHA-384", + "content": "fda6e9da4f5d7bae05c9506f4f19163b240424c6d883a3b0a407391fa8fe98c3468ad500a55d0bb47e3af33ec4f18caa" + }, + { + "alg": "SHA3-384", + "content": "2bf1cf588d26c1334df16793cad25b5b024760d3be407206b118fcfc02752d08ff33f970982f87c214fae8c4beba0e04" + }, + { + "alg": "SHA3-256", + "content": "21328a9f6615905c254c67b8d634af9ff50dea6b8b57dbaccd9ab79fe23705b2" + }, + { + "alg": "SHA3-512", + "content": "1f6c0b04f2da1df4653f3c9641b8e63f503992c703400430e72b3907a4d444b4d42612b53f8d706ebf0fb28b9e54b47f3aba487dc3c7edae3282a832f4762b9e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "infinispan-client-hotrod", + "pedigree": { + "commits": [ + { + "uid": "3289856d988bc3d64294d9bd62f1051af053abc3", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/infinispan/infinispan.git#15.0.8.Final-redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@15.0.8.Final-redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "15.0.8.Final-redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Digest SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-digest" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-digest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499865" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "da790b2730edd5a610d621cb87253d2a" + }, + { + "alg": "SHA-1", + "content": "93f40612a9317460e97831864f79153e9fbb5123" + }, + { + "alg": "SHA-256", + "content": "7aea77985da14daf09802a0f138e03ceec0ce3ad262a3846dc09a16f1609eba9" + }, + { + "alg": "SHA-512", + "content": "d86f0512b2277627e9fa49ce67f688b75ed62c86e1c6ecaabcb50bf7a1ce17d79b135b73fa4a36cab2f977f42caaf5848b830c8b0c87c488607a9104b0a1a5b1" + }, + { + "alg": "SHA-384", + "content": "0ed27e9a7ef69b35fc47d8eba5c597de046584d13a59691457c75080c5a9ed1e04730f923066a3839a3ca7b2bd6f3fda" + }, + { + "alg": "SHA3-384", + "content": "47634c64f860422e857d187558214bde6411e14cb08b04586b5527bb76e3ed57ff7c31a54792de916cc600845b688d42" + }, + { + "alg": "SHA3-256", + "content": "3e9e367dd9bd5e3a8cd1815058e19aaa8b965c8fb2f05d955555f19edab0d42a" + }, + { + "alg": "SHA3-512", + "content": "92decf196dd9d9072b7129cb951c02936523fdd0a0f8886bab29ff5c3497f1eec39dbd0fc55f0c6709bcf60f2c03634f59f8b7e41cfdd1bc2c6e845fcc33aa46" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-digest", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Auth Server", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth-server" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-auth-server" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499827" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "6fb9ee2f3944c8d6b99d9f82bb06851d" + }, + { + "alg": "SHA-1", + "content": "88ab67d5babf01d2673627f0e3265ee2849eb801" + }, + { + "alg": "SHA-256", + "content": "48ecf09b39d49002a907790e81ce4db953ecd81d0c6bf15ef9c2d4b10bf341a9" + }, + { + "alg": "SHA-512", + "content": "4dad94e177d3a8c1db33a8751bf5ce175754d9baf3a49686b4ee1fdab3d824d49d123c5d0395ff16276ca6dc6a907a218151d0322744202524b2fdf9386dcf1e" + }, + { + "alg": "SHA-384", + "content": "463e594e032f91b845e1569e8721cb62455011f12e160a7d7109d69867689d9850a2de8900db38deab5825c63925684f" + }, + { + "alg": "SHA3-384", + "content": "0a4c53d6482a415840cded87648fd93c59fd5013209dbb7852ae6c980ccddffad75774dea0b18dff99b4e1482ab7d7ca" + }, + { + "alg": "SHA3-256", + "content": "c8e2000301fbe4d285335800b76a9467a8b09b350d77ae1079c5924d23f205f8" + }, + { + "alg": "SHA3-512", + "content": "efb96293829fb6cb2f6f95818e429a142891777f404a7207df15ff639d200dd5897f1877e43e9d48a36944819ec821692ab376fc010a7333b513756b59d916fd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-auth-server", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Auth", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-auth" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499913" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "04fdcde5a29466e8520504b63b315124" + }, + { + "alg": "SHA-1", + "content": "117e26d7c7704d2a466d3e3ffac20ee6a61f7b93" + }, + { + "alg": "SHA-256", + "content": "bfedd68975ca02fb65edff5b5065c51ef273e6184d930d92a10cc11f71b3be7b" + }, + { + "alg": "SHA-512", + "content": "dffa9e5c01f1d165b407a7d6007962da7ac8065d2b939f58f250622f589a931ce16a8b2ac7432d23d29e9dfd9054863ad234eb989264139b19b8c51054e2a924" + }, + { + "alg": "SHA-384", + "content": "ce5bbcd8d745e98769eedfdbc52f31ea5a52642c470992b0dcca5082f38a9001e6a5c8c71761e0df3ca3b92f91b6c815" + }, + { + "alg": "SHA3-384", + "content": "f947fca1eccd02608b65b90bb4ccac41a77e1b8f672f14c7eb9fe773b93788b3ccd70aefac1bafe96214030130281c18" + }, + { + "alg": "SHA3-256", + "content": "47906424e55edfad0c3dd188d34a00abde308ab9326793bf31c7cb6504e65a66" + }, + { + "alg": "SHA3-512", + "content": "05ee369180a6aa237099c8300f6f01d330a69093259f897a2746f05547c2e620fa97a930cbb5df0ca8fc43cfd092834def8640c3e9f91211c3c8c06d1376177e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-auth", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Base", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-base" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-base" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499848" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "9b4dac40a55b1eda5c20c3acfb40df6f" + }, + { + "alg": "SHA-1", + "content": "d1bdb298a1a8bc8743e74d3354c379136f9197c3" + }, + { + "alg": "SHA-256", + "content": "598191807a63d9d3fa59364d102d5897b754b282f4969bcfa76fc9bd019a58d2" + }, + { + "alg": "SHA-512", + "content": "1932824954095432ffb6f25091dafdcb9ed9140a65acae8e96b285c41a56ca40682010af17eceb60de07fb99fac97cf10c68263b094d04491360660a1e34dcd0" + }, + { + "alg": "SHA-384", + "content": "d5476946dfa22d320a0953a679eae550e1f06fdff4183e4aa7621b6ac0d938b65583357ad8b19dc7ca318032597320a5" + }, + { + "alg": "SHA3-384", + "content": "5dab8014237f0b386265ca6c100f98df19e974ed0275e80423f2e5fdfc67a1c2e5b10e16e83128e9bd2c831c10f84de7" + }, + { + "alg": "SHA3-256", + "content": "ddd203ade4a15f801071a3223b30a3afe17086a32a7176495ee64bc46d3b6c13" + }, + { + "alg": "SHA3-512", + "content": "98b6ffdc0a9b0c56f1c5697e62e1c1003a45b33849701672f321c9835cafe897905a509c88c68e693d9c6bb33fcd4dd9f8f70efc6aea119bbdb3d5251ff30d06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-base", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Permission", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-permission" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-permission" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499946" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "e520d1763ecfe52c452a1ca5a68621a4" + }, + { + "alg": "SHA-1", + "content": "031e363b72d08662601a23aa7a1baf92f2b7ea98" + }, + { + "alg": "SHA-256", + "content": "36a8aab0a601ef08c85082b6d4615bba826ae352c3f89ef2ffdf4dce9ba5a53c" + }, + { + "alg": "SHA-512", + "content": "41c6b3840e7e2b7cdf09cb8f773e3d28d62321aa150469b8e96c39b95d8fead455e18890789405b23256119ceea8796c18c47af3889bfecec8b15feaf5ef01b5" + }, + { + "alg": "SHA-384", + "content": "ad9614d6054834f7f26fe71be175c2a72d6be44ef06b5dee2d1a0f507005e26015a12936274f56bb2af39dc992c11125" + }, + { + "alg": "SHA3-384", + "content": "f7256ef36cc6c2c5bce8820c488d3c2856dbc66b99cb408fa7f288dccd439535c1b7aa0c4318a04944ec0b1892b41963" + }, + { + "alg": "SHA3-256", + "content": "5a7913e2235081f2f31ccf7e76f224b527ea39a55e039fda5228124142e6c8c1" + }, + { + "alg": "SHA3-512", + "content": "dc58f59767e0c9b9cf3132b2258df43c6a337ec68cd4e623b07352ae93a22a6d1b09c3397a63b99c731546f67ac8c18d18ca32a0b031e33f4038f05a356b1b93" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-permission", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security X.500", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-x500" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499778" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "e904a11cdbd8e414e1512196a8ab2eb8" + }, + { + "alg": "SHA-1", + "content": "fe9e948a3d16fecd6fbf6e66a3288a96aed69a93" + }, + { + "alg": "SHA-256", + "content": "9fdd2906cd10b30a3a2f000b38763aabb8633a3511b5f08897e08726515f28e3" + }, + { + "alg": "SHA-512", + "content": "23d5f0efa8fdb29a3e83df7129eb1fb3e1008e98df7b2aa9a290e955c1be4b74b425a37e4524190e0d0d9d5404c0a0ea2ef1ab22c5524c0043b21a146efc62e5" + }, + { + "alg": "SHA-384", + "content": "c07a6abd81d0adf91fbcd264b6c3f2ff92307b547ae50c274e6158dec44d99bdc2fc2931e9bb67adae382a691b89673b" + }, + { + "alg": "SHA3-384", + "content": "53f6fb20af622aa23f92053e51454a83ea36db14f9aee580f7b7355d8a8a39e95e7b651d2c23fa2de092bd626744086c" + }, + { + "alg": "SHA3-256", + "content": "d9a8c76c895c226b57b712fb8763f14ac5a72f930515e1e1a65b949f982c370b" + }, + { + "alg": "SHA3-512", + "content": "291cd3659095ae43ba595da03ce5557424d4cfa5fcb33e9955fc11dc0ab9a342ec93e2bc6c3de71f5547e9c6d3e5efcbec12d73191e937799549111987b1a815" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-x500", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Credential API", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-credential" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-credential" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499908" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "62445fd009284b990fd14e2eb87a3bea" + }, + { + "alg": "SHA-1", + "content": "6a5bac9275eec5b3e5c342f88fe3bc00dfef83e2" + }, + { + "alg": "SHA-256", + "content": "f8d0e6f67221433fec9f5144a4b58b0e47a531b2aadb1203858db6d5b7f14a6e" + }, + { + "alg": "SHA-512", + "content": "5534e1ed52cf90ccc4857857a313cfe405d9667d55bb80e4346fd60e73632aaacfbe4f28d4239c78bc71bb1cfe10d916ab64f643f936fc6e345d7e193548d44b" + }, + { + "alg": "SHA-384", + "content": "0a7b97e25cedc296b019773c0433919be8973afb0fabec7abc7cafe2f8390ea02bfa1fcc40f74cd38564372b04ee9ccc" + }, + { + "alg": "SHA3-384", + "content": "3e81a03315fca5b11aac4c5e57b9b1fd59566e7915c946d1e433b6562d71ed72158aaa435bba5eb416db7616954f5773" + }, + { + "alg": "SHA3-256", + "content": "6c2073e73dc103f95fcb75a112da43c455257645469bb688126b8bc10813ea35" + }, + { + "alg": "SHA3-512", + "content": "cd38f6baaf11756b76f60e6dbfa2bf2e63bb15c472023c5912ef5ecac600b17e9edf4aae4bf6e8ed09e823a3c4e85bee15bdc472fd3a3eb6cbed830074db7ab3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-credential", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Credential API", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-keystore" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-keystore" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499802" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "f55ae89dc4b8272f63febd7eb2fd3d0b" + }, + { + "alg": "SHA-1", + "content": "bf7c3afdb3e52956133879c5eeae12fcce83d67f" + }, + { + "alg": "SHA-256", + "content": "41e3b56fdd93d15657629b65e0f5506f03605801ed845bcff48c6565e72c90a2" + }, + { + "alg": "SHA-512", + "content": "b5ae4d215018a5ac93e5f4d549d56f176fe1f44dfbc7271abbccc16225a8cd4a50cfd2aebd453fc5e6553422d480ecd3e01faee520fa7d1ea786756f6db41012" + }, + { + "alg": "SHA-384", + "content": "8f3016a39d34bf409d8d10a46704991ef3d93d51623b75f102e531f3a2846447bac0c8ab3b133b4294c6680f927a12a9" + }, + { + "alg": "SHA3-384", + "content": "9bca8e004d881ade02d0feb8ef8b7a9d47fa032f550e49b28b0b057e2eb93be0b27498b6b23b52e91dcd7def2882f088" + }, + { + "alg": "SHA3-256", + "content": "0ad0acc939036bf8023d1154984a76f7eda1daadc35b0d08303be8eaebf7f24d" + }, + { + "alg": "SHA3-512", + "content": "c941d3fb8fcddadccfc31b277da8762d4de7545a5288e10138f3a2e120c23e6659ae27f1188e28f728a254e699483a492d5d1c26dd48f5dfd95c1d8c7337ee63" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-keystore", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security X.500 Certificates", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500-cert" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-x500-cert" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499890" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "59f41a6248fb9c273483d007c4968c88" + }, + { + "alg": "SHA-1", + "content": "00b52f2add690a270d8a088d4af940c42d64293a" + }, + { + "alg": "SHA-256", + "content": "17293ccbe8ddf1fa0fecdda1d2d0892796224c66ad604a667b568c3b2d50182b" + }, + { + "alg": "SHA-512", + "content": "53580b2c292297d8a6b05b568ffaaaa5aa37fef3d7c50e4aab9eea206b7591041fbefceaeaf4f345d73eb841b213cda62726a0dd053ebdb323969bf3b8e8d9d3" + }, + { + "alg": "SHA-384", + "content": "ef3318b4525b63ed951b4e22a2e9739ad21f45e3d8f633ebc9e4971a6985af17997545373ea762b110bd803f334e7c8f" + }, + { + "alg": "SHA3-384", + "content": "12651c08bf961627904fe49a93a374a6d74388e3d9f91a85aa2ec1319968ab5b17b422fd376c2e8fd4ada7ab89f81194" + }, + { + "alg": "SHA3-256", + "content": "8ad48ce8947a0e3eb9833dd1b4f68b385c48fea8f4206c5dba5980e8d26de447" + }, + { + "alg": "SHA3-512", + "content": "0513ec0ca31d151f79b25d8d897b446748507df4ff020e4a8f187faac84b451fd8b90cf885f2a475f74190d8604e7f5c0f2adee130c42c42b8735502fe03ff6c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-x500-cert", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security X.500 Certificate Utility Classes", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500-cert-util" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-x500-cert-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499821" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "b7fce326582852440850834ec63fc9c0" + }, + { + "alg": "SHA-1", + "content": "18f933725f0ae7b3580dddd58ab0dbd66ac041fc" + }, + { + "alg": "SHA-256", + "content": "5a4b00b03f5595e2cd1c6de688ee4c2d17f0f9f124f51f4d190cd2954997b886" + }, + { + "alg": "SHA-512", + "content": "1b1a0fbbe429e9ef55ab2dafc4cc00b3a2943c83a73e8050cf54e834567d52960b13f5075454a3acafe92fbe9afde4966c78bc4459a42c1974b9fc0ec54d6498" + }, + { + "alg": "SHA-384", + "content": "064c11de9d7c9a5e3096edf034cf6e68ae4388e8859dd08baf1754891eba8923999a6b20e0b954fc67882138357f7667" + }, + { + "alg": "SHA3-384", + "content": "06f944b9ddd6ab0a60853fc94521c4d5fc0cebf5be7551aa8669958f5b629b26512383a36b7abe592a855e7ed71f0f41" + }, + { + "alg": "SHA3-256", + "content": "55f7107cec7747feb0cb4b4328f6e5afb198ee27fce43817f2b3666ca5348608" + }, + { + "alg": "SHA3-512", + "content": "06a8b66090d50f36dcbbaf3ced10b8f34f88e12df5ab61ce39c0d7e21d0d3d7b73115a35f0abc0310aae5009d01f05d328e2a76a9735035f485d304bb9ab1911" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-x500-cert-util", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Provider Util", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-provider-util" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-provider-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499885" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "647cb6557b7d5b22fb68473180931990" + }, + { + "alg": "SHA-1", + "content": "da24807fcf671bf839939c329883bb5fb2af9b37" + }, + { + "alg": "SHA-256", + "content": "0261b3a5e6112f11224388b6d7c32dbb561fe6e69b3adb9c29db6a8b00559288" + }, + { + "alg": "SHA-512", + "content": "b22bbf4b233a01268fe34da5ff0a13e0ff77f16b395c0a2920de5e6daa1919f8990209f6ec12ae03bc7f3ec87806a9b60b6aa5052e2d43ef6aac859c084602a7" + }, + { + "alg": "SHA-384", + "content": "709da00d24592c7fbc8f5ea8b49a1d27d0a058d6ca8e7179a25f66e1ba13e53c6c1163524b96bdc64ca2b0f89e981284" + }, + { + "alg": "SHA3-384", + "content": "68530b6cdc03da228ce06324d29410b344b7bc40561f2d6936ebb8c97ad4f26b3c7066e12092c1b680867ed92750cf3b" + }, + { + "alg": "SHA3-256", + "content": "b77ad23e4187518ea5fdbb7c118d39fcef096176fa529b55df37f08de468152e" + }, + { + "alg": "SHA3-512", + "content": "7f375f4e71ea3aa26bd59f2db8f42645dc6b920fadb092f3b63560b5ffd48ffc3f94a501cc87c85c5e290597f6b65468ad6ea47c9938b2893e2530bdbc82d046" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-provider-util", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Mechanism", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-mechanism" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499796" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "10b4ec103272a0187e075ab62d017874" + }, + { + "alg": "SHA-1", + "content": "09612678943abc5279dc7cd8f6d54a7e1aa866ed" + }, + { + "alg": "SHA-256", + "content": "eff06aab3d100df5250562bad519e1ce4b265a5c141a45a526d87f4b37e8ec8d" + }, + { + "alg": "SHA-512", + "content": "db2b9ffeb2e75c4f08f21a9db53d8e99274a541aba1a0e6f033dfb2519083a9ce6319f3c100042a42a0660d6c8e908063cfd656a3ad679af65d08a3703a37616" + }, + { + "alg": "SHA-384", + "content": "cec465255583f8af4e4db041fc9725fcb73ae5822204826da596e1cf528dbb10b46ed8a0be88cb3f3a0dcc470fb4130b" + }, + { + "alg": "SHA3-384", + "content": "b703feadf694f8c30f4d659a8197af970352d0061b1612972941ea11856b362cd3b17aacde69b233a9fa781d46f8674a" + }, + { + "alg": "SHA3-256", + "content": "c920a4e6ddb3d4c18ed6f75d798e25e21db768294066c000ec971b04d59cf05c" + }, + { + "alg": "SHA3-512", + "content": "52e37fffe20ef0b8a7eca1b38386c09e52256648af0ab6bba034442660f6649494b34a6edf16adcc6505638ad2c87932034f276acd28c435f3c4c25a03775c59" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-mechanism", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security HTTP Framework", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-http" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499820" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "9dd76741f38a488a17d4d83f478f6212" + }, + { + "alg": "SHA-1", + "content": "0f771a8ae72932e96786235926efdfe8a9c945ac" + }, + { + "alg": "SHA-256", + "content": "1c17f5c58afb431e956da841ccc79aa7dcf1f1785f75fb019c20c732b20f676e" + }, + { + "alg": "SHA-512", + "content": "14706c841b4a28692c4c4c14be07266c5dc7beaf7ca91a68d53eafac1245be008799a0ec16da9372ef8c8b7318893db361343a4ed61249805e749694b96c7413" + }, + { + "alg": "SHA-384", + "content": "fef7d5d9072de9d37dc61e7de346f993d814955ed78912373fae819d3605ee943934fff8881de844963e2a4309c0e4a6" + }, + { + "alg": "SHA3-384", + "content": "f4186ed31d24b7653a50ebc64d969c3be8b417d7e41ece177d055a4a4547c849a93fc888210b4b9e99c72e0fefd1f667" + }, + { + "alg": "SHA3-256", + "content": "80f21df29fe2a361988f934709fbb06d6868e1921a97c78fe8bd628c7b0e87ca" + }, + { + "alg": "SHA3-512", + "content": "c5e3cee7c231df3168cca0fe1a8cad0d46011256d4c37d03659675e518e83db0dde275a34d488c176462d326c832ef7368f4c89aa99ff07cbee7a6462601f189" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-http", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Mechanism Digest", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-digest" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-mechanism-digest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499851" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "27f617cb2ef9e3f2353441dd0faa388f" + }, + { + "alg": "SHA-1", + "content": "cf16019da9c2a202269c7b18d54d03f6bb69253a" + }, + { + "alg": "SHA-256", + "content": "4065ba3bcecc2f324805dfdb83cb5fa2e0d6703aa8afdf271c4f15308a33c460" + }, + { + "alg": "SHA-512", + "content": "09c0db553c39f126f3a19298c5480fe504fbcf7d2df3c98dff3517bb89efaed94de48a062c891cbd2563b4728e984fd5eed7471e573134df2c4c50d2be75a055" + }, + { + "alg": "SHA-384", + "content": "c1e536d4e33c11cbf50b290d8cf24f72d9a64cd184a449ae96ac0be7ad5e4152c5d9f0536e6e4a4690bf497b78cf466b" + }, + { + "alg": "SHA3-384", + "content": "6d0fd9b01b15b224054389e1d3b187b907a7aaddd4e39899ba54dfad3321495aca81964cc7fab8c0ad6f2f0667cb7246" + }, + { + "alg": "SHA3-256", + "content": "786e3e4d6eddcf3399178f748ed1b2500402bb5124a69f839b3a49c1abcd98fc" + }, + { + "alg": "SHA3-512", + "content": "927c013f440381aed00502e95a9df824f8b9500a37538ecaee79ec082fcb3320dc3f8054228af2f7dc66a81452029e5ef790c963f808ce30aafaa45405adc273" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-mechanism-digest", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security SASL", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499864" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "b6dfa231c25096693afb34a15a937f89" + }, + { + "alg": "SHA-1", + "content": "acdb3f58cbd87f6490003355c76fdc4f00841a6c" + }, + { + "alg": "SHA-256", + "content": "8dbd001a29bdfbb87ac4e85e170815371701f21d35b64fc370084fce23d14f33" + }, + { + "alg": "SHA-512", + "content": "765a87d5abfc93845739c37752a5626bc15ceab5636eddf628ac98a323b6c7603f0fc501e01f8a77e1b0b0ac4c75cc2ca37729251f6d3fdbac46d52572a53774" + }, + { + "alg": "SHA-384", + "content": "70830d3fee2e4e70279e39de8f1c193506c21dafd3f7441e8b258d7e954ab4e5c0f372f38ecc9f14e9a32c05e4802e94" + }, + { + "alg": "SHA3-384", + "content": "48e915886fe41de539e443c3d1b2ed10d69a3c024f7a597b4dee5a6e10e041ba55585942561c5832037534c042cdb5c5" + }, + { + "alg": "SHA3-256", + "content": "5cc9ef0f150ce52d5f5f6a561ff7dbca09e6317b2a195da5b58e8cfb3a87fdf3" + }, + { + "alg": "SHA3-512", + "content": "2d4211c02d2a5c9595a34acd9118dd9ce61f1b000b64dbd6bc997bd2cfabadcbc56f0ac2400e5cbd1d0b8dfe3fd84cdb7dc2e1228fc8b60ff061f558b4bdb54e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security SSL", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-ssl" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-ssl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499870" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "3f6ad34da9af7d69370ec7242777b386" + }, + { + "alg": "SHA-1", + "content": "2d8c256a1a610a27f1e4d55506b338b0f6a20cc7" + }, + { + "alg": "SHA-256", + "content": "c3bf480bb295163c9d948c7b416883e4fda1d5241b149f197bbc63c70dbe903c" + }, + { + "alg": "SHA-512", + "content": "4a940e7f19a6330506612ed71774a7687df2a203d2beae474bdde15024b8f036153db80f58b1ad777c601482a7969d131d8b4e3c91570209ffe74b1028ef738b" + }, + { + "alg": "SHA-384", + "content": "c7c95b960189b1490b32aea17edf2e5da0a7ac7fc061187e2b12ccb77df6997b0ebe8a0905c55c7636336087373dd56e" + }, + { + "alg": "SHA3-384", + "content": "6d2876b25046cb5a71fc9dd32496e71d21bacffb0896a27608cd418decf529aba48de902b8fa7b1f627517a18fdb842b" + }, + { + "alg": "SHA3-256", + "content": "63e68d869ab6014a5e5be8f7e34074b478e6c89df96addeac17cea0e474c2f58" + }, + { + "alg": "SHA3-512", + "content": "7feb15d62abd42a8624c32fd5d59d9e491a29fbbd61a48f30f038fa8e37d1cd764ad45acb248e1aded7aed8b500d34826d3aeb15374413d62e7a12caaebd35ec" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-ssl", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Util", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-util" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499927" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "3c5620ca8e31b63cd84f5803d63a81b5" + }, + { + "alg": "SHA-1", + "content": "aa8ac622c5b2d9f5917d39f2988e54aaf825b7d2" + }, + { + "alg": "SHA-256", + "content": "9bae87e4ede4bf0a5fdd0ab92b166dd692e458f9870cc26de816c5f121d7729b" + }, + { + "alg": "SHA-512", + "content": "6ad6effc40b4bb1959f28d93ad22c1994251e14d09842ac000a5d6ee40fb34a398409af6577954c55b3d32344475244a6a1b5efd31d42dedbe89a623b6b7cb44" + }, + { + "alg": "SHA-384", + "content": "8af711743d10f70cba1078e293b014cbfaecfb97ca97b8020bf0bd454f12239d893d900f5874286c2b06ccd48593572b" + }, + { + "alg": "SHA3-384", + "content": "6d9317415f425a88e43fe4a027e2ea8c319102587b8c969a89db0e954dfda3203351c606cf7b3f47967f8c58158d1332" + }, + { + "alg": "SHA3-256", + "content": "df4d2f313802f194a7f19853ab54fc7e58dcd1e3248aa678bcab9f156681d951" + }, + { + "alg": "SHA3-512", + "content": "1085642abeec9ce1b0aa0f575c7c9e90f1c0e104429d4c74b04140434dd9bf9eea37c9b4d2f6728a8bcbe8703871263910a30c59cfd7c0cad3988ceb0d235cf9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-util", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security External SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-external" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-external" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499921" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "d7eb29d2a2922a83b4ab9c3b96216fd6" + }, + { + "alg": "SHA-1", + "content": "6475590c037f7394fb133080b28c9f44e933c3e5" + }, + { + "alg": "SHA-256", + "content": "385a7db39e326b8e507108e21b590979725e58005bc201e1677f8adb44910e29" + }, + { + "alg": "SHA-512", + "content": "6732aca085183cc8abbab758b4d7b298df1ce6d59090937ca3ecfa75d422c8c43a4c9faa87e11746b554a91b585f07daa2fe5ebda50800ac966c7c9b62d7450d" + }, + { + "alg": "SHA-384", + "content": "592e3e3afc01ed3c3fbf72bf247d1944ede5b49c0b38f78caf7868f6c703eec66ea67f53e14863565df3e861edee2b8c" + }, + { + "alg": "SHA3-384", + "content": "6be97957b34ffc05a7d85e20ce8db6ffa8c69dc85f7c9e0813f6d59a2721737f7e7eca4004a872ca005c2e9aed34bab9" + }, + { + "alg": "SHA3-256", + "content": "1f1fb575e2d76f6822ba0299a2b09d128271114d4e7f127bb4f5e658c2a6dae3" + }, + { + "alg": "SHA3-512", + "content": "5030443d9e76b92fe72698eb9e90da084ab7a7733b0cdb6d0dfa47b48d274333162f7db16595d36d52c24fd60fc367892cec6f7a94779ce84d0e49f7023fb89e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-external", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security GS2 SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-gs2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-gs2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499878" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "12eb9ebf0f9bc0a5555336e3b4a74026" + }, + { + "alg": "SHA-1", + "content": "6522b0684985552d43d54deeb21b60fc421a9352" + }, + { + "alg": "SHA-256", + "content": "7d50845543ea831590763bdec411bef1951a183b18a8149d947c78834ff11bd9" + }, + { + "alg": "SHA-512", + "content": "d40ac228fffde0e16b7cb68e4effea8e069c1c4ef81d7e2db9646681420a24f04c885213db03a9d081cbd624689003fa6230b8b14db1cc57b790fa9028fd251f" + }, + { + "alg": "SHA-384", + "content": "faea5f8b2ee64d6370ef8b888e8b45650458ea363efadf069f6367aa3028ad405bcd84290b571b943d517b366d20166b" + }, + { + "alg": "SHA3-384", + "content": "cff4131d152898aa941a346336613d97dfcc0037055416d2401b2a88be85a9a35d6d8e51119e3be351192f411007ef2f" + }, + { + "alg": "SHA3-256", + "content": "3e262996215f1e0a6ce7f0c91557581298e075973183352ce66d92a08f6fdc28" + }, + { + "alg": "SHA3-512", + "content": "b9a7ecdbd3741e4423fd9ae5339c49317e6730c62eae36592c6675ac2859ec8b0bcc30ab32deb519e574b349db770b643fa5cb54ba9892cd536f76e9c862ab92" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-gs2", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security ASN.1 Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-asn1" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-asn1" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499782" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "694d145a094e4b39e2807742c518d835" + }, + { + "alg": "SHA-1", + "content": "bb4db2a0e52965e8063e30ea2822ef97cc34901a" + }, + { + "alg": "SHA-256", + "content": "7635c117a96c6f6609cbaea2615dc90d908711561bdd70d9f5fdbaa1ae4def47" + }, + { + "alg": "SHA-512", + "content": "8598811597438911aca19dba444b497205dd6bdd8e6e1b983254becf0bf3cda9720d07c4510161f926885008cf5c81d2c8d849625713ed81195cd5a6f3348b00" + }, + { + "alg": "SHA-384", + "content": "12901e2ca2e8135aed4008ee3b8332f19840a5d23932c47e2b510e07d4cf42b8bc6166a943142409d971a0fa885b8bce" + }, + { + "alg": "SHA3-384", + "content": "9d3d739c6294d2163ebaf61e195775554356e557f2d52516575d669256ec8bd710c67623b2db65a55124db2bde43f42f" + }, + { + "alg": "SHA3-256", + "content": "afa2cb57851f2b8d10ab02957bb1b076e9c34d25f9da4750e0badb016de8b01c" + }, + { + "alg": "SHA3-512", + "content": "e81c84c2d187305537c268c6e4a73fbf4d826020c255162bd5939622bf91f973a970d618a6d23afe00601525a9663f4158d387492ed8d35d8a804cd3b6da0f99" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-asn1", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Mechanism GSSAPI", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-gssapi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-mechanism-gssapi" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499981" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "c987063ac046125b5bf06b59140ee709" + }, + { + "alg": "SHA-1", + "content": "4a420fdf7a36e5bf7642c0bfa2acb07a65258acd" + }, + { + "alg": "SHA-256", + "content": "ff34e25f1959409860ba683288ec7c7ef3ba3961b5f0924cdd64e171f06f5ddf" + }, + { + "alg": "SHA-512", + "content": "6bf60e5073a620b88d9db1046b648814a395b16c3eb9eb9801e61484c14ccc6ff08c07bf4bed8e7f2b4445dd6ee4dabbe46a525b89fc3d36027701ca7e9d8683" + }, + { + "alg": "SHA-384", + "content": "f2f9c7bf1d25c382a64cc66f4ccdfaa3b912f566df9c8f5c649e0f0eabe6186c8f9876aee4520870cf5fe11f97b52155" + }, + { + "alg": "SHA3-384", + "content": "68375691b5c7e700a87ece1b1acf8c19bdb8991378863c0b0bec26bf94ddac2180b3c7c097abc9be70be4af375765742" + }, + { + "alg": "SHA3-256", + "content": "a8031654c1c7e97cf9d272c9ee4cf2dc43e5f78651ada03f8c96704932778381" + }, + { + "alg": "SHA3-512", + "content": "93bc2712e572661b9a1c2dfea616d816ea81c0a9f7d7ba4f42b583ad6bc7380d5ccb94005b3c50030c8ba1c59df4c6c6c0ac97fcbec3a3c9b0ef41bf55b151a7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-mechanism-gssapi", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Security Manager Action", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-security-manager-action" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-security-manager-action" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499922" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "f2dfcd59c0849d0762495223a623f571" + }, + { + "alg": "SHA-1", + "content": "f9dea6dab8085ac7062c4bb65e90a704936ff9b5" + }, + { + "alg": "SHA-256", + "content": "801e1bc444a0b12066f0c00fce70882b85d3e81a03af6199caf874aa2b0ec2a2" + }, + { + "alg": "SHA-512", + "content": "3300e44ed0906c7f937ce7fd6d5bedf4f45203d4c719157749bebeb297889529cb6cf70ea8417b2c1e162b648dac67cb48b9bb093ab69d2f07333699087720b6" + }, + { + "alg": "SHA-384", + "content": "495ec67c24686af51639cbdf9630f29a7c65db2fe6a466e3a4e319ca723885a2cfb7bb6e507c7a61936e5481d9ae0232" + }, + { + "alg": "SHA3-384", + "content": "6a1e517822448fa3ada5f580aefe54f46023519990eb52218cc627960595d8734ca9e139c91af0cfcc5beb1015fc8001" + }, + { + "alg": "SHA3-256", + "content": "9fe9102cf4389874e7f544e6b16fdd69e77420ed580a931b41b7eade9c79ac1b" + }, + { + "alg": "SHA3-512", + "content": "0baa00b8f4204b6c4c9dcbdc785a0298f949e3535c823079a75a391fa123f41e2ea6a17a2953bca791e836814864f269e712d534e1ff3e47e029c8743b10f15c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-security-manager-action", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security GSSAPI SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-gssapi" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-gssapi" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499830" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "e29d99d662bf8d73ef5f310c559097b6" + }, + { + "alg": "SHA-1", + "content": "6f58de5a895840551c2dd820e79fd73166a54cde" + }, + { + "alg": "SHA-256", + "content": "c43ac71be7b110dbeb4d682d7240bfc030183922e6f8e1828dce500e4ebd864f" + }, + { + "alg": "SHA-512", + "content": "f1d292e3226cc36e17023de425d341362f3e521dd6c36f01b43294698b46a30ed31bee0abb38ad7b55d29942c387ed76e346623486ce9e727d65f7927934be00" + }, + { + "alg": "SHA-384", + "content": "14d478ee975b1fe287c3ac15a51da6643c2fd5203b9ffc47e7ccf8781e5043363f76c207a33e6559ac2e271a2b383aa5" + }, + { + "alg": "SHA3-384", + "content": "9cfdf97cc8a620c604e4e254541c5a887a15185676a946100540fdb878d2b7a2c52834e75914bd753626f4d3d4b160a2" + }, + { + "alg": "SHA3-256", + "content": "89a043698ce29457ff321703fd70ab5dbf866bdcacec7177254b3c81b50f73e8" + }, + { + "alg": "SHA3-512", + "content": "a9e577a3e674e3c97fc10e9167ee35b34bc787d5b44815e9f57d7d9198dbd1c088f8ede4e6f4b26d9ad5a1bd7a1d361ddfe4f940eb689c5330aa7264a1836359" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-gssapi", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security OAuth2 SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-oauth2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-oauth2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499818" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "4f8b62f4d99491a9e670be9d35473e5f" + }, + { + "alg": "SHA-1", + "content": "847ad71e45999df9cf82c2231fab51d16eb284eb" + }, + { + "alg": "SHA-256", + "content": "d786c46aee3868da597b78a7add706fccf140f7a5d1f92c3a7d00ce2141242ae" + }, + { + "alg": "SHA-512", + "content": "5424c2996a0d9abffe60646720d09a2fd0a0fa263f4c5607c0ff588945089c80b1500e6add1df5ed9f15e756022d96d1523f0e81a5e0fec50d47db1bb7a948c4" + }, + { + "alg": "SHA-384", + "content": "2b851419686e28e7322108999b601700855606e8e20ea627327c3ba1917612968f5e01393200c8a496f7f066c5e89905" + }, + { + "alg": "SHA3-384", + "content": "cc3dd332a928e5d158eb623580a0cb8989173b451566eb85f70d72a2657aae2b5b209cafb6c48e296c14210b6f351d4f" + }, + { + "alg": "SHA3-256", + "content": "d255612a543739b6e4e252868504f29ef4acd2d706aaf17835bf939a764251d6" + }, + { + "alg": "SHA3-512", + "content": "8a7cdc4c632f663fc02f10a1545bd9efc022370d5253020749ef5d4de59e84717851efe512a5425fc802b5dfa70ce1ab3f0ca2c376599d077b8e260a06978ccd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-oauth2", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Mechanism OAuth2", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-oauth2" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-mechanism-oauth2" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499891" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "c217123e4d096fa6d64c1246235857ca" + }, + { + "alg": "SHA-1", + "content": "87ffd1b0f477d7180e4e4fbcc44b54598b307124" + }, + { + "alg": "SHA-256", + "content": "85d32b8f5774e74e294b341cb860eead96ce77497820d0c3113997a6c2de0e31" + }, + { + "alg": "SHA-512", + "content": "7f684fd5071a6f2da8c57882b7562c59df0ced625f1a3f606695f864b17d8440d887ccf81cf95e7d9c03d3e6809216f17addd4162dea643b0a481d8416ec0cda" + }, + { + "alg": "SHA-384", + "content": "32f890f57f33efdec461f56fa221877762b4490c8832ce01e41b0632cff7e2ed48283bef580b90a512c63b61a11a7a61" + }, + { + "alg": "SHA3-384", + "content": "79bd83499381d3d472fdd11bd6bb49e0391da8001aae14c7021d160cfadc067ed8bcbc0f2af7d5769b27d5b565825e85" + }, + { + "alg": "SHA3-256", + "content": "75cd5edbded8fad539a014c2c48423bf2f3bc9098968eacb245bc6af20dfe8af" + }, + { + "alg": "SHA3-512", + "content": "cf5284bf3c150c4122ae155e4f51534a311c633ff90fd26a8bc3f603bd6266576b2295fc580e9d31428036066f8fcbef7957f0c5990421bf1609d549c63d5c48" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-mechanism-oauth2", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Plain SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-plain" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-plain" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499855" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "29632fd992330c88af79199b76ec235e" + }, + { + "alg": "SHA-1", + "content": "143bdc0b749b5222942d6f5ae4e6192bf183f4a4" + }, + { + "alg": "SHA-256", + "content": "7ce9ce1f2d59c7e321045897da5dc748bf9397210a51b2b46d84222a70569faf" + }, + { + "alg": "SHA-512", + "content": "7dc4e83f79f3548ed08653f74674a27b8e4beeca8dfd8fb8c2d390058ad049140fe26c0acaee0daf79bedc7f15a27491cb44a11beb16b889e5a33b411b4e2dd6" + }, + { + "alg": "SHA-384", + "content": "080a80c3a958bad0d395531c1783d04c74df95451f61959337c9638f31820d5b3bb768c546eeb11a6584e757d7102ed2" + }, + { + "alg": "SHA3-384", + "content": "82f7d4ccd08a73b44d38e2e21cd6800df5383247fe86ad89d737da7b7062740848210c55bc9b8a5cb938cde307187830" + }, + { + "alg": "SHA3-256", + "content": "0ead886a02281fcff2ed0324bb9cf178590c1c5e04a1db9c8d74f9c086d0a5da" + }, + { + "alg": "SHA3-512", + "content": "34443a49de59812943fb1db41ab7711f4fdf46b8367ec430a7efb3f32ca3866f627b5548b2fe811a8c19cc9d29da2eb0227d3611261d7f45ffed028d577b2e8b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-plain", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security SCRAM SASL Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-scram" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-sasl-scram" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499822" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "38a3239af10696342e56ee7aeb1bb213" + }, + { + "alg": "SHA-1", + "content": "5a8eba65dfeca980319d644ef5349b6faccd61df" + }, + { + "alg": "SHA-256", + "content": "7f95c6a38f57debe3cb290a1849b5f9ef5c95550f90a7bf9b40f8ecc67de9db4" + }, + { + "alg": "SHA-512", + "content": "b1feb75658c8a1f279651049d4c021c1bea03a03a9a85a1e203bcc02444b036e274356f4adc46d3c162e909498dc29cfb541317ed4385845c0b5d9b14f17a9ae" + }, + { + "alg": "SHA-384", + "content": "15343c848b1ac6b1c865ea2f9b36616fd4fb579544e4d76492bbf9e7c6d75c0f55bc1deefd113ed485f99b4c1f92c98c" + }, + { + "alg": "SHA3-384", + "content": "b7db2701e74289c9894540c40fc40ed829b6d595d00c16c89a62102581d4bd2dbdd1b910f704a9bdf2dbbb6a91e6ec85" + }, + { + "alg": "SHA3-256", + "content": "b1e525cb854b17438685de802e342afcb899bf153fdeb360df2d4497489ad423" + }, + { + "alg": "SHA3-512", + "content": "710cf3dc2f9284dfa4c6114ed6ec336252fea20fc0d2dd3cbb5a94fa87d1956ba2b2f8786b24fc63ef18c2cbd61f5c269c8e9c365eac73c07dea0468295af696" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-sasl-scram", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Mechanism SCRAM", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-scram" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-mechanism-scram" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499976" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "6aef000f23c4d17903d35db643498aaf" + }, + { + "alg": "SHA-1", + "content": "d168da3a638aeac54e1959ed7696006e46baf17a" + }, + { + "alg": "SHA-256", + "content": "1c545eedcd179a02a7ef119e5cad2cadf2725f3e768fbc033136e4b825e4e05a" + }, + { + "alg": "SHA-512", + "content": "9fb48962762cd3e0797cc1d6682f5b4fef28d255639b9895c1aa9527d01a6429e9cc735c523d1d353bc21ac808f5e1d7dde5b3a3188bf1231d179770df1e61cf" + }, + { + "alg": "SHA-384", + "content": "4076338b34fddbd8bc73f688b6c0745bbbeed67a6c82194dbbd99385eaa26de723c7ad9ec129a3948aebc937053d0ac2" + }, + { + "alg": "SHA3-384", + "content": "a0f1eecbf463c0bf541cc25733e366f6c369380cae4d0cfd34ad3dea8fe360905783d02ce7ffca6a13f01d9acc019c4d" + }, + { + "alg": "SHA3-256", + "content": "3e350154e3f4480ebc87e2278f6a2c2b4cf8acca454368df7b883464302ea0d8" + }, + { + "alg": "SHA3-512", + "content": "cecf9351414c1a416a3c6872fcbae3596ca2ffd1a886838a5ac47e47f111d1319da8f77ce89a6de73cbaa34a5252cef33c3cc0302b06bc6e51ed68efe2360f63" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-mechanism-scram", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@2.4.2.Final-redhat-00001?type=jar", + "description": "WildFly Security Password Implementation", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-password-impl" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron/wildfly-elytron-password-impl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499926" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BAOBKP7YHYIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "org.wildfly.security", + "hashes": [ + { + "alg": "MD5", + "content": "d6421bc878e12e9825947d03b285a1fc" + }, + { + "alg": "SHA-1", + "content": "5743fa27d5fc2a8e85370a240da6c0fa7c220f2e" + }, + { + "alg": "SHA-256", + "content": "69fd0df9152c06a6c089f8eff801c88c7b070a2aa447852c41b5bcdad0492538" + }, + { + "alg": "SHA-512", + "content": "703388be724dc23870733d214513f98fd4a946883ed12959c37c6c46ea81b77675c9c76902bea95a34f49b9ddd5945b1a23a14ee0dc3472db761ce355d164a98" + }, + { + "alg": "SHA-384", + "content": "ea7d0e18262456aec94f3c933308fb9565a6b600f8070d50d24f4282294ede1975adf3b6ac293d914b733cb8d2ee58a0" + }, + { + "alg": "SHA3-384", + "content": "ce709a035dd95a38c35d58907293b750c4f76323cc076b006fce3bd1b2e843c5f840b9380807e57ef3a99d7346279a7c" + }, + { + "alg": "SHA3-256", + "content": "fa5ed1b91640d754cc9cfd8a7dd705c20411defd1d10978206f73303f53eae81" + }, + { + "alg": "SHA3-512", + "content": "78ff061b60ec1e58c17330293dbef2804a9c15b083ea6a861194ead2c5b80bf495cf5a811894a025dc1348e3af12489ab451a06580f8083c093c6c470a74e1f8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "wildfly-elytron-password-impl", + "pedigree": { + "commits": [ + { + "uid": "289b9bcc8048e3ee8a67401627896cd808b00fbd", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/wildfly-security/wildfly-elytron.git#2.4.2.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@2.4.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.9?type=jar", + "description": "Reactive Extensions for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ReactiveX/RxJava" + }, + { + "type": "vcs", + "url": "https://github.com/ReactiveX/RxJava" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12733946" + } + ], + "group": "io.reactivex.rxjava3", + "hashes": [ + { + "alg": "MD5", + "content": "a1671f108a19e1a67b6e21f5c29f2c0d" + }, + { + "alg": "SHA-1", + "content": "48e7bf08885ac9b539cd0632a4cb0cdbc119d7cd" + }, + { + "alg": "SHA-256", + "content": "88cba16c7f0fe78a8cc9b8c46469c8596cf166037ce22c2adfc4440cd6312e20" + }, + { + "alg": "SHA-512", + "content": "fa8832f7a568a1c3cbd54fd38d062cf3519073c542dd1a0e500d696a700a70854ed532908609f5ef2384a384392b5c6f66f29d0a877e4b67483dd0d12f2152a8" + }, + { + "alg": "SHA-384", + "content": "65e57798e6a47c7839be2b4ccf2e8cf0e96c6254697a8aa0e11babcb2fbe973164e18c9e5bd004f9210308721f394faa" + }, + { + "alg": "SHA3-384", + "content": "7733aeb07de2035379f845b3a0e3d0d4d268f6c1a8d04f4b9743e4570fb908469761c8862644649a5f179ae9845e8a9b" + }, + { + "alg": "SHA3-256", + "content": "3a82b9327f3cf66b217f442967ac7480b0fbb8a7faf53339441747fc9d245c36" + }, + { + "alg": "SHA3-512", + "content": "886e17ccc0a9dd50da073ea212455a1b42ee53fec2971fdcd77fe8bc7b595bfe28385c787061a81369c6789cf65aa8f3c4db055452417681373d75112cbd608c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "rxjava", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.9?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.9" + }, + { + "bom-ref": "pkg:maven/org.infinispan/infinispan-remote-query-client@15.0.8.Final-redhat-00002?type=jar", + "description": "Infinispan Remote Query common classes between client and server", + "externalReferences": [ + { + "type": "website", + "url": "http://www.infinispan.org" + }, + { + "type": "build-system", + "url": "https://ci.infinispan.org" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ISPN" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/infinispan" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13049944" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKBNGMXWPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-mandrel-23.1.2.0-mvn3.9.4:1.0.0" + } + ], + "group": "org.infinispan", + "hashes": [ + { + "alg": "MD5", + "content": "d8892216e8405d38a1eb538e4601113c" + }, + { + "alg": "SHA-1", + "content": "207fe57b76930f9ae7087349044252b817a410ec" + }, + { + "alg": "SHA-256", + "content": "e307d28af82ae53794374c980ca7b64f8f606ddbc8dfab2205e739344143111d" + }, + { + "alg": "SHA-512", + "content": "06fae590f658f2d8f104ffb5152cac0a11dc74c3866fb4aedf22f0d87ce791c957dc5508473accc36cbf9eb54043dcc4021781332902b0e92d6bf2a94f2cc5ed" + }, + { + "alg": "SHA-384", + "content": "6f1876f34ddee7c3a11a57c09e52473d12b48cf63cae93ac697bb84874e5ae7b6438ea480fbdaa8b34a692c5963c1d51" + }, + { + "alg": "SHA3-384", + "content": "6d56c7d57ce257646af59f74e6d6564d0cdee6fff974bed04cbb3393bea84d7757687518930cce643cc151880f00e09f" + }, + { + "alg": "SHA3-256", + "content": "32838d0d0e2df184b39dea3e3922771d6cd9f2fbd1825942bf1b539e7a2e0278" + }, + { + "alg": "SHA3-512", + "content": "11daaf08ceeb76850c449e1499cc036c6939a33944e272ae6e0ba8a42a092855ee3f698b41f05fccdcc7d330c169ec50bad2e778596f56022844c1bfdde35f48" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "infinispan-remote-query-client", + "pedigree": { + "commits": [ + { + "uid": "3289856d988bc3d64294d9bd62f1051af053abc3", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/infinispan/infinispan.git#15.0.8.Final-redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@15.0.8.Final-redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "15.0.8.Final-redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar", + "description": "ProtoStream is a serialization library based on Protocol buffers format for serializing structured data.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/infinispan/protostream" + }, + { + "type": "build-system", + "url": "https://travis-ci.org/github/infinispan/protostream" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/projects/IPROTO/issues/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/protostream" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12795628" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCMTCUOJDEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j21.0.2-13-mx7.4.1-mvn3.9.6-protobuf:1.0.0" + } + ], + "group": "org.infinispan.protostream", + "hashes": [ + { + "alg": "MD5", + "content": "f0c6040d5bbf0fe7236a81fe206f383f" + }, + { + "alg": "SHA-1", + "content": "bac6bd6f8b616940909ecc972f8c6cbaf3280b3a" + }, + { + "alg": "SHA-256", + "content": "2dd907390def2e1ab22e8bceece6f430ea86ede6ef4c15629b2159c86cb3d30f" + }, + { + "alg": "SHA-512", + "content": "976d18c6e614eecac9ac924cdcd8e7100f6cc66a4fade9fc0c060e946f8a44ecf73b27a0ddb2856c69d31d58c85f662e0f9a52bda0e6f05f5e8242e7a7af5b24" + }, + { + "alg": "SHA-384", + "content": "8c527c5d6d56f882b020d1cefb54c1b6ce731167efd2b0ede75aeeb45db4bfbc4721c3185aa4cd821b46d34ef809e9a3" + }, + { + "alg": "SHA3-384", + "content": "f9640cc336af22579aaae90555d57090712707b0a99b7609ee6c36a023a4d1658eb0f48171783c9ea7892ee6d481dd3a" + }, + { + "alg": "SHA3-256", + "content": "7eb5dbef41130f0d1acce5b4a108a86b7bd08911d1c341015f6e117d4f5d92d8" + }, + { + "alg": "SHA3-512", + "content": "40ca4131b8ed9d3c98167af8f3d31b6030dae43d779c6c40131e625f45a5fe2846caa8bb4ce7eb64d425196a058bdbbc61c8803dfb7f72cb8977082876833c55" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "protostream", + "pedigree": { + "commits": [ + { + "uid": "67688a8389db641387bff74e8eb0444b5c8517b8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/protostream.git#5.0.8.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "5.0.8.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.infinispan.protostream/protostream-types@5.0.8.Final-redhat-00001?type=jar", + "description": "Builtin protobuf types and default marshalling for some common Java types.", + "externalReferences": [ + { + "type": "website", + "url": "https://infinispan.org" + }, + { + "type": "build-system", + "url": "https://travis-ci.org/github/infinispan/protostream" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/projects/IPROTO/issues/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/protostream" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12795620" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCMTCUOJDEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j21.0.2-13-mx7.4.1-mvn3.9.6-protobuf:1.0.0" + } + ], + "group": "org.infinispan.protostream", + "hashes": [ + { + "alg": "MD5", + "content": "75941c07b3664ee75f7e9477cb8bed2b" + }, + { + "alg": "SHA-1", + "content": "63fe689d2c089e08090ef73474822c0dd1e2bc97" + }, + { + "alg": "SHA-256", + "content": "89024aca429065b12e7d590ffc62f2e8498a4e6c872065599267fc329760df87" + }, + { + "alg": "SHA-512", + "content": "0725b9d9f1d1bf4030d85a7e1d27fcff693755c300d2479283bd1a0b3fc155371d32646fd5a363b73b36752e90aa4b001d7d1241ed94a736be82fe4c2d4d14e7" + }, + { + "alg": "SHA-384", + "content": "2ffaff437ff49d5a179c49f2b2e731bbbf0da9baab48fcf050429def45718642003df92c1bb7e3a1b10378fa771c0653" + }, + { + "alg": "SHA3-384", + "content": "a515237ecf6b4caf686efded0a67d63d280d5ba4dcab889822b87451dc3cb77d352821c9f40e35f63108228cc93af9fb" + }, + { + "alg": "SHA3-256", + "content": "8f9c21018d4400d3a42bd4942c13977c0404504105073c49b77409fa21bda05f" + }, + { + "alg": "SHA3-512", + "content": "6f20ada4ca1a9150e43d1042327eb2984ff090350d4163d8aa06829ffd55480a22234170b2ea769e914449241ee7b98105eace7011ae365a037fa6d0b252f616" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "protostream-types", + "pedigree": { + "commits": [ + { + "uid": "67688a8389db641387bff74e8eb0444b5c8517b8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/protostream.git#5.0.8.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@5.0.8.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "5.0.8.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.infinispan.protostream/protostream-processor@5.0.8.Final-redhat-00001?type=jar", + "description": "Annotation processor for ProtoStream annotations. Generates your message and enum marshallers so you don't have to!", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/infinispan/protostream" + }, + { + "type": "build-system", + "url": "https://travis-ci.org/github/infinispan/protostream" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/projects/IPROTO/issues/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/infinispan-issues/" + }, + { + "type": "vcs", + "url": "https://github.com/infinispan/protostream" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12795619" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCMTCUOJDEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j21.0.2-13-mx7.4.1-mvn3.9.6-protobuf:1.0.0" + } + ], + "group": "org.infinispan.protostream", + "hashes": [ + { + "alg": "MD5", + "content": "a6246570d1245c0b2e46312151849316" + }, + { + "alg": "SHA-1", + "content": "a69c05f87a664b17ef046e9692817da5f127fa5e" + }, + { + "alg": "SHA-256", + "content": "a8b912c03eff7805b195a0c91b9dbbff47f73e5f2a4022abe4a91db892274cbd" + }, + { + "alg": "SHA-512", + "content": "a2c005becdf5da662a3e89d69f2f1e616093ffa1b85521770930bff60c7e9936529fcca2c906f7d1aeaaf4caf8a7af8e77e7daba2d37024745d809b34a4ba75c" + }, + { + "alg": "SHA-384", + "content": "947278fb226c1444522cd775c0e5aa0bfa8f32a6c1f63fc78a23c46b97aefc09b9694a9115f7d86ea3012a726d743e02" + }, + { + "alg": "SHA3-384", + "content": "7493a2dc3a0fe55a342faed8ec374b07576f7ebc3e962d53e577ed598342491a45849d4ca5c3c47172a1512f62f6d81b" + }, + { + "alg": "SHA3-256", + "content": "4d5ad7d9018306b1a11c39860ecf0e6be37cf7a3bfcdcf868b75303ece484e70" + }, + { + "alg": "SHA3-512", + "content": "80453857d528f8ccfd62ce48ed5e2dc11fe2875c3ae1522dfc0e5bc782e22b431a5e819d2e586b89c1e01d2d98129701641ee93d9c888e6e0cf3271593c74a8f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "protostream-processor", + "pedigree": { + "commits": [ + { + "uid": "67688a8389db641387bff74e8eb0444b5c8517b8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/protostream.git#5.0.8.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@5.0.8.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "5.0.8.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jira@4.8.0.redhat-00001?type=jar", + "description": "An example that uses Jira Camel API", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-jira" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-jira" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-jira", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jira@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-jira-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Components", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jira-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jira-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234558" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "e991dc1f0ea4cfa445eaba071e025814" + }, + { + "alg": "SHA-1", + "content": "67aedca35babef9be9dfb8e7577f7faddb1a99ac" + }, + { + "alg": "SHA-256", + "content": "a0fe3cd063eecd2a9b329e2957ca91b72bf0d94d6cbcac6025400ca8b0d5b425" + }, + { + "alg": "SHA-512", + "content": "ba340c0c52e26889fdb6efa648a3669884f2c7151aa18bf20cbc20c19c601521ee0bda2a8a9e54ace63e54c611c0a7224af652c946e32918b88fb438fb10e3c3" + }, + { + "alg": "SHA-384", + "content": "66df91816056983e654a65f75dee5679def4b1d13328d6254ed75fd1b0f62ee1e7db75e0f600b7004232546e3c5caf20" + }, + { + "alg": "SHA3-384", + "content": "58b95004eb008037d2f1672c1036a133c9f85970391d10c5b07ed8e1cf9c87132d9faea4853ff46e6d6322b3b10a7ec6" + }, + { + "alg": "SHA3-256", + "content": "c04e16267caf875fbeb374a70c84bbba2f6909c0afa6dc5caa29f69d2c7e7809" + }, + { + "alg": "SHA3-512", + "content": "ccb31add5e6ccd4b30886d6298721309e559d074f7cb14bc917c380553224b3979777a221c1337d7580e172eb02969cf69918cfe357341995ada6888bec51c9f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jira-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-jira-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jira@4.8.0.redhat-00017?type=jar", + "description": "Camel Components", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jira/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-jira" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233511" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "dff9832a6a2b71aaf49ca438fef56974" + }, + { + "alg": "SHA-1", + "content": "f694d871c8b2e7ec30cf58c62d33bb2f09a4bfc8" + }, + { + "alg": "SHA-256", + "content": "511f16341667a4d59f5df0b0fee98af44f24d53aa1ad0b7289ad62b2d06a1db2" + }, + { + "alg": "SHA-512", + "content": "08d159852914d92d42f29fb26bc83fdc2f37b18719a2c885cd387b293d735b4e049adcbff41e4ec3cabefe78db64d4c2568152384504304e46bfeef50c05b56d" + }, + { + "alg": "SHA-384", + "content": "f0be40978889b3cfa436fadfda396ca2828aaff13f67c4c3e20b829c83839f5c033a0c39a33892c59ce2cbd6cae82ef9" + }, + { + "alg": "SHA3-384", + "content": "a51dc055c11e9df216cc019f487fd1e61d9fe0d15e1821ae3d099253ba58edc461a58a89af8e18820a1337ca92b3792b" + }, + { + "alg": "SHA3-256", + "content": "91f0b803d205d8007c1eec32a1de89df823e4a29e2ae81c6c5d5dc9038ed8677" + }, + { + "alg": "SHA3-512", + "content": "44797ee66f658a59ace4801116b8c309b5396ea2e6a9b397de330f1ce5f6346083556642be58a52a976ebcd791d7a6ab13df41c595361394f2018176ae5512bf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jira", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-jira@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/com.google.oauth-client/google-oauth-client@1.36.0?type=jar", + "description": "Google OAuth Client Library for Java. Functionality that works on all supported Java platforms, including Java 7 (or higher) desktop (SE) and web (EE), Android, and Google App Engine.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/googleapis/google-oauth-java-client/google-oauth-client" + }, + { + "type": "distribution", + "url": "https://google.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/googleapis/google-oauth-java-client/issues" + }, + { + "type": "vcs", + "url": "https://github.com/googleapis/google-oauth-java-client/google-oauth-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865366" + } + ], + "group": "com.google.oauth-client", + "hashes": [ + { + "alg": "MD5", + "content": "cd3b00455dfe0eaecc6a572f36c891bf" + }, + { + "alg": "SHA-1", + "content": "dc3f07bc8f49dd52fe8fcc15958f3cfeb003e20f" + }, + { + "alg": "SHA-256", + "content": "8fee7bbe7aaee214ce461f0cd983e3c438fd43941697394391aaa01edb7d703b" + }, + { + "alg": "SHA-512", + "content": "f354454c7cf44ecd14f9fa8576c318809dddb368b65b9e1a356841a51555e657a4714a247a4d4db45ded388afad9fae2951d5b9ce420374e4649c521e7b0e7f3" + }, + { + "alg": "SHA-384", + "content": "98d0f02760fe7b939978b8bdd4e91613d9a978d5c8b1da2b42212aa0c0628bb70466a80338022fbecd82236ea4efd5c9" + }, + { + "alg": "SHA3-384", + "content": "c7183cf80d5196dfa9d0a997d6e9d411a506ef053424d30d847321202d3d41d536b4640726a68783663a0af9ae1678e9" + }, + { + "alg": "SHA3-256", + "content": "0ff0e61504962d48616c03e763cd428f38a749c6976f790d8e0a773542b83b28" + }, + { + "alg": "SHA3-512", + "content": "4595fef6f33cbe68d056273ee45d0a9193d095905f1ce2294e81d0a87bed3ffcf346e460cdfe7e716d695650df1d2a2c6b24d2cd1e734a3c2c78600e60d03c61" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "google-oauth-client", + "publisher": "Google", + "purl": "pkg:maven/com.google.oauth-client/google-oauth-client@1.36.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.36.0" + }, + { + "bom-ref": "pkg:maven/com.google.http-client/google-http-client@1.43.3?type=jar", + "description": "Google HTTP Client Library for Java. Functionality that works on all supported Java platforms, including Java 7 (or higher) desktop (SE) and web (EE), Android, and Google App Engine.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/googleapis/google-http-java-client/google-http-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/googleapis/google-http-java-client/issues" + }, + { + "type": "vcs", + "url": "https://github.com/googleapis/google-http-java-client/google-http-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10803393" + } + ], + "group": "com.google.http-client", + "hashes": [ + { + "alg": "MD5", + "content": "806427c3d16ae724be920277ef45ee39" + }, + { + "alg": "SHA-1", + "content": "a758b82e55a2f5f681e289c5ed384d3dbda6f3cd" + }, + { + "alg": "SHA-256", + "content": "60aca7428c5a1ff3655b70541a98ff3d70dded48ac1324dae1af39f1b61914af" + }, + { + "alg": "SHA-512", + "content": "8fd64f4f5220f11a56d86ec29feeb79256a1d1c79271547268baba85fec7bd590c132039bf05fd03f2a7935860b2d0f59dd9cb0dccf9c2ccf148224402b87ff0" + }, + { + "alg": "SHA-384", + "content": "cf07574e6554ebe50d837a8ab6cfb26b93b7c2846c8c370c0bc7c6eb0d70c6ad4281940909d926898908af47c9ce21d9" + }, + { + "alg": "SHA3-384", + "content": "94498f03f3190194bc2ab1901f3584f478866991214c5b133d9c2292f8bba3d18254f37051c524b3fe2201ed287d6998" + }, + { + "alg": "SHA3-256", + "content": "1c82d76b8327a8fed7291194de85e4edafab343b9f88ad82675e288d7e7e09ad" + }, + { + "alg": "SHA3-512", + "content": "f55f1373dcac7322ad1d0b55b832c4271042f4c856c84acce7ac55fb21e5881c25636929164dbc015c5574931119261ebdef4bc60abe7bbf9d48280419499c3a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "google-http-client", + "publisher": "Google", + "purl": "pkg:maven/com.google.http-client/google-http-client@1.43.3?type=jar", + "scope": "required", + "type": "library", + "version": "1.43.3" + }, + { + "bom-ref": "pkg:maven/io.opencensus/opencensus-api@0.31.1?type=jar", + "description": "null", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/census-instrumentation/opencensus-java" + }, + { + "type": "vcs", + "url": "https://github.com/census-instrumentation/opencensus-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8411237" + } + ], + "group": "io.opencensus", + "hashes": [ + { + "alg": "MD5", + "content": "a5e7092bb89baaaee424f5a7b20d1bad" + }, + { + "alg": "SHA-1", + "content": "66a60c7201c2b8b20ce495f0295b32bb0ccbbc57" + }, + { + "alg": "SHA-256", + "content": "f1474d47f4b6b001558ad27b952e35eda5cc7146788877fc52938c6eba24b382" + }, + { + "alg": "SHA-512", + "content": "aac98ed2de298609bac9cb5a69ac16df0ca9c9fc82f429720ddcfdd769fdae96b707ed81c8d8c37380de846b302aacaac80156ef75567061aed3f77cc3c3b725" + }, + { + "alg": "SHA-384", + "content": "d8dfdbc7d584809f00b5a4239cbaf575e8924a176e92a44230e8ac1e9dc85e458b63fad69b0b445d8d2e8c1a70e7633a" + }, + { + "alg": "SHA3-384", + "content": "5cb3db9b30adb23c2b33ce0ded61a69e5347a4531d0563fc9185aba11aab7a639bf40286fc8d0f52a73c50add15775c7" + }, + { + "alg": "SHA3-256", + "content": "733221e8a1dc4476c53fee92837757bfd468afe25f57bbce79d25c60f2e240f6" + }, + { + "alg": "SHA3-512", + "content": "cdb61cef7324e1173f297867ec9274c6439779cdd674a442d26724de047258a64f3f76ad4e496f7afde785b5dbdf5d03f0b0f1d4424868cf14ebc1fd3b63dc76" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opencensus-api", + "purl": "pkg:maven/io.opencensus/opencensus-api@0.31.1?type=jar", + "scope": "required", + "type": "library", + "version": "0.31.1" + }, + { + "bom-ref": "pkg:maven/io.opencensus/opencensus-contrib-http-util@0.31.1?type=jar", + "description": "null", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/census-instrumentation/opencensus-java" + }, + { + "type": "vcs", + "url": "https://github.com/census-instrumentation/opencensus-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8455338" + } + ], + "group": "io.opencensus", + "hashes": [ + { + "alg": "MD5", + "content": "9ecc9c428eb87dc734ae8d07b820ce26" + }, + { + "alg": "SHA-1", + "content": "3c13fc5715231fadb16a9b74a44d9d59c460cfa8" + }, + { + "alg": "SHA-256", + "content": "3ea995b55a4068be22989b70cc29a4d788c2d328d1d50613a7a9afd13fdd2d0a" + }, + { + "alg": "SHA-512", + "content": "3192532e4989a26d9a69f4246ef994b35058d155e199b500196d14427d1b46b1515f872a36500cb84768524870297388c90272ffa61dc8448f6f7571c4f86b27" + }, + { + "alg": "SHA-384", + "content": "46f9dcc71f71f33be99a00fdd9a2ba602eb547b56b6e8177660d3a44d3dd974609bf16d2a1b58359a0f39797cb3ee683" + }, + { + "alg": "SHA3-384", + "content": "21d66f5efa2511de4e4b4f3ea18d37aeb954ea1b4315f1e11cd84a11a95e9bb9841addee4d1230c3813f06144a675a1c" + }, + { + "alg": "SHA3-256", + "content": "8352c7dcd73fced7e49425d70f6955579f5c24fafd4529e5f5e54ef5a88a3c83" + }, + { + "alg": "SHA3-512", + "content": "f8ec86e5728b9acbdaa684cbf385ab3834006e44363de43f9af4b50dca71d4e0d77d0d8b2e7bb97435581dda6572691b1d263835e4e97256999df550b9efc13b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opencensus-contrib-http-util", + "purl": "pkg:maven/io.opencensus/opencensus-contrib-http-util@0.31.1?type=jar", + "scope": "required", + "type": "library", + "version": "0.31.1" + }, + { + "bom-ref": "pkg:maven/com.google.http-client/google-http-client-gson@1.43.3?type=jar", + "description": "Google HTTP Client Library for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/googleapis/google-http-java-client/google-http-client-gson" + }, + { + "type": "issue-tracker", + "url": "https://github.com/googleapis/google-http-java-client/issues" + }, + { + "type": "vcs", + "url": "https://github.com/googleapis/google-http-java-client/google-http-client-gson" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10803390" + } + ], + "group": "com.google.http-client", + "hashes": [ + { + "alg": "MD5", + "content": "472f29d64b61f652b3ce977772e28393" + }, + { + "alg": "SHA-1", + "content": "252e267acf720ef6333488740a696a1d5e204639" + }, + { + "alg": "SHA-256", + "content": "e31a4edcb9c83954a2587e14fa2f3f8f4aad56152381b3321a3bd0bcae03fa26" + }, + { + "alg": "SHA-512", + "content": "c58d428e25212d0da965b770e3ee894bb4fb3e1be95e66dc81e9e16b5e15f29986099eb7d080d294ee64281abb5d29c773f2354c60f97d29a1be9d300641a233" + }, + { + "alg": "SHA-384", + "content": "1f149627d93c1e8e00e95b7515d5b27bdd6dc542c777d3f4004197bc473eb940919eb1183d2b3b5aeeb9410177e43266" + }, + { + "alg": "SHA3-384", + "content": "a6e081657338175732699ad3cf02517c7070f59ff95c2679e49eb3fa9bd29108db75edd07b243255128bb56b6e04c528" + }, + { + "alg": "SHA3-256", + "content": "6a66769cbf8bba2cc3fd5853415cc9bedef898e838c94c4a7747fef5c461ef8c" + }, + { + "alg": "SHA3-512", + "content": "1e193033ffd88d7e200fc997b339b852880b3103cd33ca265f985cdc3e15f5e1ab2989d99cf7a08baac8d10300303bd651a25eebe69a00489c517cfbfdff9366" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "google-http-client-gson", + "publisher": "Google", + "purl": "pkg:maven/com.google.http-client/google-http-client-gson@1.43.3?type=jar", + "scope": "required", + "type": "library", + "version": "1.43.3" + }, + { + "bom-ref": "pkg:maven/com.atlassian.sal/sal-api@5.1.4?type=jar", + "description": "A plugin that provides API for Shared Application Access Layer", + "externalReferences": [ + { + "type": "website", + "url": "https://www.atlassian.com/public-pom/sal-parent/sal-api/" + }, + { + "type": "build-system", + "url": "https://ecosystem-bamboo.internal.atlassian.com/browse/SAL" + }, + { + "type": "distribution", + "url": "https://packages.atlassian.com/maven/public" + }, + { + "type": "issue-tracker", + "url": "https://ecosystem.atlassian.net/projects/SAL" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/atlassian-sal/sal-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11921256" + } + ], + "group": "com.atlassian.sal", + "hashes": [ + { + "alg": "MD5", + "content": "cda007519defbcead21b6efa112543b3" + }, + { + "alg": "SHA-1", + "content": "0a191489bebe03eb52695a97764f95799da6a786" + }, + { + "alg": "SHA-256", + "content": "9c3838cbe3e92f40969029ce7c4ee431c59053d0fec251a3462c9aabb41dd2b8" + }, + { + "alg": "SHA-512", + "content": "011b070f8b7f08b6ce38a96c1ea31876bc7f56b66a5f5eacb39bccd6185421d1c8d1c3da6cdc2ac0e1af23b7a77d54757710587a42f463b3942bbfe47e387aef" + }, + { + "alg": "SHA-384", + "content": "16082f7b2876caf75bc31f7740bafa9cebd7589c58f31aeaa5490af21e63ad127e3dbf0ce665dea1e7a76e44090b765f" + }, + { + "alg": "SHA3-384", + "content": "91c59cc0b6c9a732a4b427285a9969a3b96ce87f10912ecee8be98d4a256fe68ad882bf4ec530ae26676e03991452e06" + }, + { + "alg": "SHA3-256", + "content": "07f1026551795144a3263c7edfa1a089a38dbcf3a2eaff9fbe9ae8e7b86a071b" + }, + { + "alg": "SHA3-512", + "content": "e77f72b60b77eebc5e256aa1a296168f52ef60b268e89c7811d124e72ec65620fbf6256ca6dd527a0340c49f94efd7216e5669603192b4a9c45987c750dc0dbc" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "sal-api", + "publisher": "Atlassian", + "purl": "pkg:maven/com.atlassian.sal/sal-api@5.1.4?type=jar", + "scope": "required", + "type": "library", + "version": "5.1.4" + }, + { + "bom-ref": "pkg:maven/com.atlassian.jira/jira-rest-java-client-api@6.0.1.redhat-00001?type=jar", + "description": "The public API for JIRA REST Java Client", + "externalReferences": [ + { + "type": "issue-tracker", + "url": "https://ecosystem.atlassian.net/browse/JRJC" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/jira-rest-java-client/jira-rest-java-client-api/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13018127" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFRO5EVGPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17.0.9-9-mx6.8.0-mvn3.6.3:1.0.0" + } + ], + "group": "com.atlassian.jira", + "hashes": [ + { + "alg": "MD5", + "content": "c33b9e64e74f6148ad91ce3f3acf40b1" + }, + { + "alg": "SHA-1", + "content": "2d2b9a439d0292cf1f64f1f41646d0662d949556" + }, + { + "alg": "SHA-256", + "content": "e5e01b023d0b466044c214e1742a8fc6f6d5b4d3189fd1c51ad5813c90cfd6f9" + }, + { + "alg": "SHA-512", + "content": "d07962363a2899f5b0e57892a12f7cf83b3e280ef616db6a627274c7271f06d4b3ffa6b1b54b71eb1779d2be69e5a7177526efd555aad56cb14667bb9221ef34" + }, + { + "alg": "SHA-384", + "content": "832c9179d20166ab2086258bbe9f5dada9921e754522c14085d77f6f28c3d555315cb45cc54d19879f45afd2e7040dad" + }, + { + "alg": "SHA3-384", + "content": "2a9c793f6b9b1746a3c8617d62a1c49bf844c314e5f9579ef305b94eab867706886ea4e1d4c66ac847eb5b05ede9d7eb" + }, + { + "alg": "SHA3-256", + "content": "b5535eacffda87a1e5301758807f58b4ea11b455f518336a8166842fe44d28d6" + }, + { + "alg": "SHA3-512", + "content": "07a523b0bfbd13ca4ea4a2b980e32cc8c6ec61e70faf45288b301421b0d20d82b4c82de600db9a0ba41a7c125235fd653c8ae57fce45b10d0f4942f57bc62574" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jira-rest-java-client-api", + "pedigree": { + "commits": [ + { + "uid": "0aff6762ac7299b9054d6b6fe7093557a1847a9b", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/jira-rest-java-client.git#6.0.1.redhat-00001" + }, + { + "uid": "120fdbd2efeee04a0c8d556af5e5aa2ca74fcc15", + "url": "ssh://git@github.com/jboss-fuse/jira-rest-java-client.git#6.0.1-x" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.atlassian.jira/jira-rest-java-client-api@6.0.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.0.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.atlassian.util.concurrent/atlassian-util-concurrent@4.0.1?type=jar", + "description": "This project contains utility classes that are used by various products and projects inside Atlassian and may have some utility to the world at large.", + "externalReferences": [ + { + "type": "website", + "url": "https://labs.atlassian.com/wiki/display/CONCURRENT/Home" + }, + { + "type": "build-system", + "url": "https://staging-bamboo.internal.atlassian.com/browse/OTHER-BASEPOM" + }, + { + "type": "distribution", + "url": "https://maven.atlassian.com/central-staging" + }, + { + "type": "issue-tracker", + "url": "http://labs.atlassian.com/browse/CONCURRENT" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/atlassian-util-concurrent" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/1559620" + } + ], + "group": "io.atlassian.util.concurrent", + "hashes": [ + { + "alg": "MD5", + "content": "64d75ee6a8eb440831c1d4d96351bfd1" + }, + { + "alg": "SHA-1", + "content": "34fdb324a609ff5e008e707de7c0741aeaa4b981" + }, + { + "alg": "SHA-256", + "content": "8b89b72fd29b646ac2bb86e40c2353a05741d56bad6d3a28d27df44e7d351e74" + }, + { + "alg": "SHA-512", + "content": "d4032535c5c77af4d02417c96d4d08bacc86cefbabed0425ab0c0e9be39c962d47d0bf4cf8b5317da3977137198fc71ea2887c92d8664e0333d657062d629aeb" + }, + { + "alg": "SHA-384", + "content": "3e49a0aee9372eda758e00802ca13a6b300f489ec84bfde71e12a8ab1f357ec759a7407b199251e44dcb75bde805407c" + }, + { + "alg": "SHA3-384", + "content": "feba830f9c72ca5612b2de4f4e0eeb3dd27f4a6a37a91970c00d4e487fd195faa375283fe0f1d4a4770ee4871a852409" + }, + { + "alg": "SHA3-256", + "content": "e33ad457b9157916eb7112d915076e75936de5359f55b7389cc6065bab849b18" + }, + { + "alg": "SHA3-512", + "content": "234a45b7b4813ba02ff19c4d7696407cdd7b17ea58cf40fd3d082ed88d2e36d6fe9774de389cc18b79b06d5a7c5f5d16a9955fed2a168995115f05d296404e54" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "atlassian-util-concurrent", + "publisher": "Atlassian", + "purl": "pkg:maven/io.atlassian.util.concurrent/atlassian-util-concurrent@4.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.1" + }, + { + "bom-ref": "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-api@4.0.1?type=jar", + "description": "The API to the HTTP Client service", + "externalReferences": [ + { + "type": "website", + "url": "https://www.atlassian.com/public-pom/atlassian-httpclient-parent/atlassian-httpclient-api/" + }, + { + "type": "build-system", + "url": "https://ecosystem-bamboo.internal.atlassian.com/browse/AHCP" + }, + { + "type": "distribution", + "url": "https://packages.atlassian.com/maven/public" + }, + { + "type": "issue-tracker", + "url": "https://ecosystem.atlassian.net/browse/AHTTP" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/atlassian-httpclient/atlassian-httpclient-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864877" + } + ], + "group": "com.atlassian.httpclient", + "hashes": [ + { + "alg": "MD5", + "content": "7fe142d20f7b1d6c2b69bbb499f11518" + }, + { + "alg": "SHA-1", + "content": "8c7b05bb24c7a2181477f46b084f8a65163fc762" + }, + { + "alg": "SHA-256", + "content": "898f691779d53d7a9f991cc8b77dc030485e17e0a3aa60e297ee84ec9b6de94d" + }, + { + "alg": "SHA-512", + "content": "4097ae6b7417515060e92a2cf4ab7dd26ff46ae266dec539bcc3f7afb9f9a734d9b6ff359fa655f93bde7cc1f8069cdd2b123efd8541a4fe50d21b8f33abd281" + }, + { + "alg": "SHA-384", + "content": "79b5c83bbcaa321f8021b3e1a8b5a686ef162ab94df66272c9e56df10752443ffbca02dab5389578f014d15e0486393f" + }, + { + "alg": "SHA3-384", + "content": "c39eef0a67d6eb9fb665603eec6f261cdec680ba87e839ac99cf2a1a75b510a400cba812dd5d9b5155dc770c7f869dab" + }, + { + "alg": "SHA3-256", + "content": "1a8de7b44dc402c619bd6366260afdb6dd2d9b8281c81ef4bee315b2dc0dbb0c" + }, + { + "alg": "SHA3-512", + "content": "04c4209c5eb20c4fdc0db106f7c93de074640203017d8fc7ba2cb93d7190c76b08d9368ed4c347e5e601d169624d567d85701a8949b7b5e3cc804962abbfa156" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "atlassian-httpclient-api", + "publisher": "Atlassian", + "purl": "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-api@4.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.1" + }, + { + "bom-ref": "pkg:maven/com.atlassian.jira/jira-rest-java-client-core@6.0.1.redhat-00001?type=jar", + "description": "Implementation of JIRA REST Java Client.", + "externalReferences": [ + { + "type": "issue-tracker", + "url": "https://ecosystem.atlassian.net/browse/JRJC" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/jira-rest-java-client/jira-rest-java-client-core/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13018129" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDFRO5EVGPYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17.0.9-9-mx6.8.0-mvn3.6.3:1.0.0" + } + ], + "group": "com.atlassian.jira", + "hashes": [ + { + "alg": "MD5", + "content": "ed6bd05c456457a5fb89320491bc8261" + }, + { + "alg": "SHA-1", + "content": "9c9da9572b4de156e2f261bbf772e56dee252d2b" + }, + { + "alg": "SHA-256", + "content": "1f35f068840eededac7d8a84f6d2869fc0c416759e76a4200b6edd7284a10b94" + }, + { + "alg": "SHA-512", + "content": "69b1e5de136a9959c73e18b3de28365ac917e15b06e3d74668f14a7fa5abcecaf1b10000a19c369ded07fd8fe7cb0bbcc94333069ceba617efe14c1d16cb8eb8" + }, + { + "alg": "SHA-384", + "content": "7df106a5baaa3327abc02adf31053aca6a2f2d3adf1c7b8a19610f7aee081c38892172b57c54110fe7d8ebea356a53a1" + }, + { + "alg": "SHA3-384", + "content": "b78b50158e99f7ec9fbb8b4f343ad4b0a579638bbabedb53ca1e2bb2424593a91d6887d83eb8d21408744760264c605d" + }, + { + "alg": "SHA3-256", + "content": "68ec2dfd5ed72d6f5105b01fd7119f016d60354e8e600d4bd2244b58988b3cd1" + }, + { + "alg": "SHA3-512", + "content": "bf2c237ccfc02f25fb65a916a924d9f2fa8cde1000b0b281dc019eb967a518b1b557c97b29f4695400464cebd2a04613cdf6b44e45b6219db0daba0c8f001260" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jira-rest-java-client-core", + "pedigree": { + "commits": [ + { + "uid": "0aff6762ac7299b9054d6b6fe7093557a1847a9b", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/jira-rest-java-client.git#6.0.1.redhat-00001" + }, + { + "uid": "120fdbd2efeee04a0c8d556af5e5aa2ca74fcc15", + "url": "ssh://git@github.com/jboss-fuse/jira-rest-java-client.git#6.0.1-x" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.atlassian.jira/jira-rest-java-client-core@6.0.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.0.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jersey.core/jersey-client@3.1.9?type=jar", + "description": "Jersey core client implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.jersey/jersey-client" + }, + { + "type": "build-system", + "url": "http://hudson.glassfish.org/job/Jersey-trunk-multiplatform/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jersey/issues" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jersey/jersey-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13101162" + } + ], + "group": "org.glassfish.jersey.core", + "hashes": [ + { + "alg": "MD5", + "content": "38efbb25ddc21e7b4252918185a31e19" + }, + { + "alg": "SHA-1", + "content": "ebe456a09787bfd731d0bf4dd7e1051b05f2b761" + }, + { + "alg": "SHA-256", + "content": "20c4df594e97ce98a155844d9dc4ab95bb299338612811c23c9f4bcfe8e7bbc2" + }, + { + "alg": "SHA-512", + "content": "ad6dba8d58fdfcf7a520a7bc32c94911ba0d7f65480f2c8d73fd823178698a3b65762292ee86b0da451574ca9bba24300a15e2eb29a16eadffb87386b892cb94" + }, + { + "alg": "SHA-384", + "content": "2d84d3930e9a488b57f28a707dec9d74b7f1834f69712cb621dc21ccc778db0b37a1489773eb6d8ad2fe1eb75de1f67f" + }, + { + "alg": "SHA3-384", + "content": "94ccb092739d97d2932fc0569d1686b2f359445f1041741e39ab8addaef07dd2b989fa24accfc8ab7cf8531fc75a0cf7" + }, + { + "alg": "SHA3-256", + "content": "d80c38f262e06d71b7c93e6f6bdbcfa2e6cbb52e07eeed5f64f843760f76a30e" + }, + { + "alg": "SHA3-512", + "content": "abfb97fe737d3db4c384fc620dc28fbc6992609ed18a6d4892bf9927cb17ea62b01b34d99203e122ce325deb6027bed07b0d40bc78abe7fab10d9588ba09295f" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "name": "Apache License, 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + { + "license": { + "name": "Public Domain", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" + } + }, + { + "license": { + "name": "Modified BSD", + "url": "https://asm.ow2.io/license.html" + } + }, + { + "license": { + "name": "jQuery license", + "url": "jquery.org/license" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + }, + { + "license": { + "name": "W3C license", + "url": "https://www.w3.org/Consortium/Legal/copyright-documents-19990405" + } + } + ], + "name": "jersey-client", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jersey.core/jersey-client@3.1.9?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.9" + }, + { + "bom-ref": "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@3.1.0?type=jar", + "description": "Jakarta RESTful Web Services", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/jaxrs-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jaxrs-api/issues" + }, + { + "type": "mailing-list", + "url": "jaxrs-dev@eclipse.org" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jaxrs-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8550823" + } + ], + "group": "jakarta.ws.rs", + "hashes": [ + { + "alg": "MD5", + "content": "6ce4c6749e048456b2c452c1091689ca" + }, + { + "alg": "SHA-1", + "content": "15ce10d249a38865b58fc39521f10f29ab0e3363" + }, + { + "alg": "SHA-256", + "content": "6b3b3628b8b4aedda0d24c3354335e985497d8ef3c510b8f3028e920d5b8663d" + }, + { + "alg": "SHA-512", + "content": "55c245378d7529503c934d2132cfc3bcc638f6297eae6687ae419a5b57aa4646f771cf054295fb6cda1f6d89134942c2a2c39f47380be839e26b44884e4bb75c" + }, + { + "alg": "SHA-384", + "content": "aa6baaa80978a53fdb4af8e07559a955c9828266ec9b41562b7a2583a1d8d760726d66c13d61f0ec0282220d65d4c1b9" + }, + { + "alg": "SHA3-384", + "content": "76ae6e43291bef5f40196d2063886d4d73b71401918c002cd2e54d260a9171287d12a61a19ab950a512aebfc53a42b31" + }, + { + "alg": "SHA3-256", + "content": "2594beb0318ed800cf3e6de629ac40d2900b2fe25cdbc4982de00ade189b6100" + }, + { + "alg": "SHA3-512", + "content": "40e976ea3f3d1b9a568231cf156f388be585d6afcf30ade6abb9841969cb86a2e537db87678a03e3ea04049114879db8f897fe0a6f9f815df31a1cc3d0c9e089" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception", + "url": "https://www.gnu.org/software/classpath/license.html" + } + } + ], + "name": "jakarta.ws.rs-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@3.1.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.0" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jersey.core/jersey-common@3.1.9?type=jar", + "description": "Jersey core common packages", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.jersey/jersey-common" + }, + { + "type": "build-system", + "url": "http://hudson.glassfish.org/job/Jersey-trunk-multiplatform/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jersey/issues" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jersey/jersey-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13101164" + } + ], + "group": "org.glassfish.jersey.core", + "hashes": [ + { + "alg": "MD5", + "content": "7e008bde0a5b2777bae5b7316a789cc2" + }, + { + "alg": "SHA-1", + "content": "10b2e59a4e8d942187df102fb80fa21b1da21e36" + }, + { + "alg": "SHA-256", + "content": "b93e45013a7b3ebe3a68dac8326cb41757c7e16c174f87bd97e163839dfc985b" + }, + { + "alg": "SHA-512", + "content": "efba7255a2e7ab317e43c5fcd8b766ae3711a78e17ddcd771801ec4de301b084c1187c43197af7c193108aae3ee0655d2abdca85e0b3975d300248e5bac36542" + }, + { + "alg": "SHA-384", + "content": "302cce170bc37421485e0c0a089f46eee8864e39e410314e6dbfb795a80d3f5883f179290cdcd14a448ffe4a46fde26f" + }, + { + "alg": "SHA3-384", + "content": "3e851bd810243547d4fc6d5a224a3a1730e589c037f59f90cd7fc465ca12007fa3a8ce26d44d192def37eb54b04b594a" + }, + { + "alg": "SHA3-256", + "content": "2ebe61fff176aa6aff0b0cd801e8236d4df381f4c5d288be96eb9e9f8bace05b" + }, + { + "alg": "SHA3-512", + "content": "a4502ed725664ef7d97e92a79c1f50cc9c52f78ebd68ee06cb24f14b9bf3aa7482d024bc1b22ace39be58318a334caa348efb360baa2bb38511cd9276cb56ab1" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "name": "The GNU General Public License (GPL), Version 2, With Classpath Exception", + "url": "https://www.gnu.org/software/classpath/license.html" + } + }, + { + "license": { + "name": "Apache License, 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + { + "license": { + "name": "Public Domain", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" + } + } + ], + "name": "jersey-common", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jersey.core/jersey-common@3.1.9?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.9" + }, + { + "bom-ref": "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar", + "description": "Used by various API providers that rely on META-INF/services mechanism to locate providers.", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j/osgi-resource-locator" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/ee4j/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/glassfish-hk2-extra" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/2951133" + } + ], + "group": "org.glassfish.hk2", + "hashes": [ + { + "alg": "MD5", + "content": "e7e82b82118c5387ae45f7bf3892909b" + }, + { + "alg": "SHA-1", + "content": "de3b21279df7e755e38275137539be5e2c80dd58" + }, + { + "alg": "SHA-256", + "content": "aab5d7849f7cfcda2cc7c541ba1bd365151d42276f151c825387245dfde3dd74" + }, + { + "alg": "SHA-512", + "content": "4d84983a9b1c72f58661b576c78ca456a2106602c2ad211cd7e72d94464c8774173b34a35629c507c7c84c982f1de0c9bf48352458e8480be5f874d20d6e69a3" + }, + { + "alg": "SHA-384", + "content": "9f92002296c66cc8996d459b95a9c531ec71b98a8b819121abbc7d636a6c4ace04c88878ba6917f71650280a880d1ce2" + }, + { + "alg": "SHA3-384", + "content": "b27581d003ce715fba7e2958dbe73b64330b8586d94dd2f4b80b3d4861fd36415af6c2fe1005a798a7bd4f706d77e3d1" + }, + { + "alg": "SHA3-256", + "content": "cf90e96adac2f1167ff71267db4a91c75d824f8a4b0359d2ab7d50b1c87c3952" + }, + { + "alg": "SHA3-512", + "content": "75f9ff6c3ab03f4471ac04789c181b75edf4c5dbf985a5616b2c979de59aa478b02593036f740a6c7bb71afcb145c131a3ff3e5a6a53336abab22f2cc9825772" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "name": "osgi-resource-locator", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.3" + }, + { + "bom-ref": "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar", + "description": "Jakarta Dependency Injection", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/injection-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/ee4j/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/injection-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13215097" + } + ], + "group": "jakarta.inject", + "hashes": [ + { + "alg": "MD5", + "content": "72003bf6efcc8455d414bbd7da86c11c" + }, + { + "alg": "SHA-1", + "content": "4c28afe1991a941d7702fe1362c365f0a8641d1e" + }, + { + "alg": "SHA-256", + "content": "f7dc98062fccf14126abb751b64fab12c312566e8cbdc8483598bffcea93af7c" + }, + { + "alg": "SHA-512", + "content": "f186b2ada470abba1cc3b4f8c4373d940fb7c71a051b2c26f7c204ad4dfb69235fbf3f9c33da36d744cb90f52d921c51d76c0ff263bacb35eafb66cab83dc47d" + }, + { + "alg": "SHA-384", + "content": "405bd297a73901f013d48a0da028d04d400f3e61f4997c0e7297eb08120670a0e242e0002db8f130c33ab16cb02feb2d" + }, + { + "alg": "SHA3-384", + "content": "4db7e54434d0a208c876868f5595b808f2728c0455feaa752ab7b569a2186fc37cb891c9aa0076de3d08f6da6ff06eba" + }, + { + "alg": "SHA3-256", + "content": "3a5aba9f1ff1a130b76af886123eb375fa578498490df3dc60bb7ce7d59e9404" + }, + { + "alg": "SHA3-512", + "content": "00bba8efc2d6e7f0a509b321868d75f1aaf0681a750d089d913bde8424ab7bb88aadf49de6e291e352523e4f8c117b1b48033ff31d4d665dcc43c4c6ea000ba9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jakarta.inject-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.1" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jersey.media/jersey-media-json-jettison@3.1.9?type=jar", + "description": "Jersey JSON Jettison entity providers support module.", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.jersey/project/jersey-media-json-jettison" + }, + { + "type": "build-system", + "url": "http://hudson.glassfish.org/job/Jersey-trunk-multiplatform/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jersey/issues" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jersey/project/jersey-media-json-jettison" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13101168" + } + ], + "group": "org.glassfish.jersey.media", + "hashes": [ + { + "alg": "MD5", + "content": "34b8e9f49cea47c7183fa08073e70990" + }, + { + "alg": "SHA-1", + "content": "8dfc09239f113eeab1da461cfb81a342bc8dd7da" + }, + { + "alg": "SHA-256", + "content": "2ced817ae91a7d8893b6e24bbbfd56cd08307ac4482a38f60b5ac944ba70527e" + }, + { + "alg": "SHA-512", + "content": "8f98655fcb214a61fa167229f21d5a563f1ef9127a3922bd3388b0bba050693d564473ef6e1ed99c127e4a9bd85000d33ee6cd129908162f65f8183d9fdee797" + }, + { + "alg": "SHA-384", + "content": "64446d6221bc8c870aabec59eba86a2528e858ea0b4b95477eb8f1b5f1edb4764b09e1f6e79fc337a9e2efbab30d4eb3" + }, + { + "alg": "SHA3-384", + "content": "7d194dbb2a8b95e8aa70e1705675e485a0d036a1d649cbb830a3de789a653524b3208a5e36e0ffddb41d1da2e1e755b6" + }, + { + "alg": "SHA3-256", + "content": "c4715a52a57472ce0aef5f271cc815e0ec2e025ae44a095b4c650582c938fa70" + }, + { + "alg": "SHA3-512", + "content": "16871245e8cc84bbbbb296f56a77de1ebb9aafb92d38ec1356babdc3bde432927e72f1f6b9ad0c5a80d226280e0e6d7c81289e21ad1eeb37f0405b860e5639e8" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "name": "Apache License, 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + { + "license": { + "name": "Public Domain", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" + } + }, + { + "license": { + "name": "Modified BSD", + "url": "https://asm.ow2.io/license.html" + } + }, + { + "license": { + "name": "jQuery license", + "url": "jquery.org/license" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + }, + { + "license": { + "name": "W3C license", + "url": "https://www.w3.org/Consortium/Legal/copyright-documents-19990405" + } + } + ], + "name": "jersey-media-json-jettison", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jersey.media/jersey-media-json-jettison@3.1.9?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.9" + }, + { + "bom-ref": "pkg:maven/org.glassfish.jersey.media/jersey-media-jaxb@3.1.9?type=jar", + "description": "JAX-RS features based upon JAX-B.", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.jersey/project/jersey-media-jaxb" + }, + { + "type": "build-system", + "url": "http://hudson.glassfish.org/job/Jersey-trunk-multiplatform/" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jersey/issues" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jersey/project/jersey-media-jaxb" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13101166" + } + ], + "group": "org.glassfish.jersey.media", + "hashes": [ + { + "alg": "MD5", + "content": "ce2b639d7b7e15e927c1b5b12357e884" + }, + { + "alg": "SHA-1", + "content": "6031954c2d68411d9189e09774b84ff31c5f46e9" + }, + { + "alg": "SHA-256", + "content": "ad715f40b79e86880ab641f7a2b5e7e0e006349a46a300d04c78b04feaff3fd0" + }, + { + "alg": "SHA-512", + "content": "76a44c0c5f5e13af57581545568b702578ad2052ebad2c26dda7606b45da7c3adf7d03b18dfba11b109ac33289c3c0390fd9672fd095b660af48d013c6aca937" + }, + { + "alg": "SHA-384", + "content": "cb769d4727dd441dc99701bd49cae192f04e8e9924d8f24c981460447d7e2c9738cc2d76239a6ca84d7c298ff8fb31cd" + }, + { + "alg": "SHA3-384", + "content": "19708fdfe8853b5523f1fe33de77de21bb76b784d4d9df8c7413a62dbfca178f8779273befced2c402da14d1b394a8c5" + }, + { + "alg": "SHA3-256", + "content": "81025f84ac68896dbf4657081e85cb9a6382f1ff9d761d404a66df2ce883d0ee" + }, + { + "alg": "SHA3-512", + "content": "8eb9ad1cdd3809f9509d78a6cfc4e3617d19e68639f6c7afa327a816b53805b9bec66067668f01e8a52f57dce3dca87ff5090bdb7db475f1abcc4ec8b14e9102" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "name": "Apache License, 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + { + "license": { + "name": "Public Domain", + "url": "https://creativecommons.org/publicdomain/zero/1.0/" + } + }, + { + "license": { + "name": "Modified BSD", + "url": "https://asm.ow2.io/license.html" + } + }, + { + "license": { + "name": "jQuery license", + "url": "jquery.org/license" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + }, + { + "license": { + "name": "W3C license", + "url": "https://www.w3.org/Consortium/Legal/copyright-documents-19990405" + } + } + ], + "name": "jersey-media-jaxb", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/org.glassfish.jersey.media/jersey-media-jaxb@3.1.9?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.9" + }, + { + "bom-ref": "pkg:maven/com.atlassian.event/atlassian-event@6.0.0?type=jar", + "description": "Atlassian eventing system for use with Spring projects", + "externalReferences": [ + { + "type": "website", + "url": "https://docs.atlassian.com/atlassian-event/6.0.0" + }, + { + "type": "build-system", + "url": "https://ecosystem-bamboo.internal.atlassian.com/browse/EVENT" + }, + { + "type": "distribution", + "url": "https://packages.atlassian.com/maven/public" + }, + { + "type": "issue-tracker", + "url": "https://ecosystem.atlassian.net/browse/EVENT" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/atlassian-event" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864875" + } + ], + "group": "com.atlassian.event", + "hashes": [ + { + "alg": "MD5", + "content": "2e5309c2316a94f77699db704f52ad74" + }, + { + "alg": "SHA-1", + "content": "9a84701928d80b27e3cbcafe8ad67a7735f6ad01" + }, + { + "alg": "SHA-256", + "content": "0a0707112ad125f78dbfcfc46ae50c623ffeef07a78dfb435a7df2ef9ac73248" + }, + { + "alg": "SHA-512", + "content": "4470f054108c5fb6d16f1eadc886f235546971ae122838abd995bc44878417fceda5d851a8aa4bce14744cb9646cb0fe54f4c5bb86cc869c69948a87b3c93926" + }, + { + "alg": "SHA-384", + "content": "0a428d560ec38ab6affa6dc1927625eddf490ce52ee9936a6632c0058bbe7d5eba66fd48cd201fee90153da5dd11481b" + }, + { + "alg": "SHA3-384", + "content": "70bf2ff0b5d515abc82309620ab07c192a2d1496da6ab7e7833d54cc5d51e2c4ea664f6e619944ee695827e796177f73" + }, + { + "alg": "SHA3-256", + "content": "0316ad7f9b29838c74c7c1dcbf69916b35dd6cd66da187c2b236b1330c39c0d1" + }, + { + "alg": "SHA3-512", + "content": "0bc851e964ab27872a2833d89b0527c00a7c938ab6c3457700085ce16d7e5ce916ad61c0008fcfe534fd4aa20d7073ead2a9b5ea04a78d2f7b05aa73a9ae5b13" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "atlassian-event", + "publisher": "Atlassian", + "purl": "pkg:maven/com.atlassian.event/atlassian-event@6.0.0?type=jar", + "scope": "required", + "type": "library", + "version": "6.0.0" + }, + { + "bom-ref": "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-library@4.0.1?type=jar", + "description": "Implementation library of the HTTP Client API based on Apache HTTP Components", + "externalReferences": [ + { + "type": "website", + "url": "https://www.atlassian.com/public-pom/atlassian-httpclient-parent/atlassian-httpclient-library/" + }, + { + "type": "build-system", + "url": "https://ecosystem-bamboo.internal.atlassian.com/browse/AHCP" + }, + { + "type": "distribution", + "url": "https://packages.atlassian.com/maven/public" + }, + { + "type": "issue-tracker", + "url": "https://ecosystem.atlassian.net/browse/AHTTP" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/atlassian-httpclient/atlassian-httpclient-library" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12864879" + } + ], + "group": "com.atlassian.httpclient", + "hashes": [ + { + "alg": "MD5", + "content": "e2577d46f87b78c9c01260acbdb1c209" + }, + { + "alg": "SHA-1", + "content": "e02764929290b0ea9c246d3e4c1c003e558ffe85" + }, + { + "alg": "SHA-256", + "content": "6842c6674460eced87a3d971ed224832f7e7b6c6e2edfc65e6dcd66d54b7a224" + }, + { + "alg": "SHA-512", + "content": "15bf845eb55c7b4c3e51d0b19a7a7b26a627606e4bfa6dd4b39325887e660284cfda9e244c2ccacd176f3b68ed2ee5e2acefeed8aaa06977c19c5e7373234ce6" + }, + { + "alg": "SHA-384", + "content": "cd4500bb6a6442ac08184e24366124a7695e07c4d64882785114ba4ed25c975a5126405da91b6071ec19567ef8e239ae" + }, + { + "alg": "SHA3-384", + "content": "0ded1accfed0882f2b8bf26f520b6755293987c414e17fecb285b8b71b74dc5264c8df22db7c643589f09153a5b0c317" + }, + { + "alg": "SHA3-256", + "content": "625fd1ed59616511a36167ec67e921a88b2809ba27532da8a23b3716c5dc0827" + }, + { + "alg": "SHA3-512", + "content": "f3cf5379fc7f57f69e88e1751119771c9eefeb3204c396355d7cc8851694f03b1de79f4142a4968998d5ccac88f193512afe6d1eb9c8c2e2ba5fe0f7738a0de2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "atlassian-httpclient-library", + "publisher": "Atlassian", + "purl": "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-library@4.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.1" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpasyncclient-cache@4.1.5?type=jar", + "description": "Apache HttpComponents AsyncClient Cache", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-asyncclient" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPASYNC" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://svn.apache.org/repos/asf/httpcomponents/httpasyncclient/branches/4.1.x/httpasyncclient-cache" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866406" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "01eeb7a179024a559438a3dfa2910d2e" + }, + { + "alg": "SHA-1", + "content": "9ff813b7834c51372df7e0b345d14084a343c9ef" + }, + { + "alg": "SHA-256", + "content": "a7c1dc438122f98c84e2404b6c1bb6cbaa0d6bbfc3e8d2567080c90027a349b0" + }, + { + "alg": "SHA-512", + "content": "70d9c8eb1eebd08487844a441f852a53948a39a94acd55ea23c1d75bb1fa9153f1c1b9f37b15d1dfbbbcd0a2474fc27ad9f240623d3bb38add684f2296e27601" + }, + { + "alg": "SHA-384", + "content": "ee92f00b5954eda2d1f1383fab68fa87801f3196ed4233bb9d558b2619e7df4046dcc2cb70d581e887fa235547d1b514" + }, + { + "alg": "SHA3-384", + "content": "dbfe52a1052ebcc274531bf7d570cfec1009e87bc4e5b978f4da0f0b4c0ec5fde43fc29fdb2a741bada11e86b8c7105e" + }, + { + "alg": "SHA3-256", + "content": "3f18224dd8765a572efc7a23df22f43a77669267849d5bcd03309c53a8af7b4b" + }, + { + "alg": "SHA3-512", + "content": "19b62a6521ef0c32068b96d49600d9c983721b09c645ab2071b8c303d91431d4619e5adb5e2068ded901a125a6624ed56e2ca51f299aa0336b5bee75b93da74c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpasyncclient-cache", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient-cache@4.1.5?type=jar", + "scope": "required", + "type": "library", + "version": "4.1.5" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpclient-cache@4.5.14.redhat-00012?type=jar", + "description": "Apache HttpComponents HttpClient - Cache", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-client-ga" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPCLIENT" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-client/tree/4.5.14/httpclient-cache" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12583483" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBDKTA2ZTEYAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.6" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "2db98c06fa324e2ffbfd62cc0ba7e2ea" + }, + { + "alg": "SHA-1", + "content": "88bc4d26ce1bc26cb9f0566373cc3ae579d8b1e4" + }, + { + "alg": "SHA-256", + "content": "8300c6a027337a245a363b976ca364b4d25abba84d5adb9e78bf69567b9726ad" + }, + { + "alg": "SHA-512", + "content": "442770bd5d4cca77536b5ca6209dece9ca64f6f45848c40f8baa64e29991b3733fe843ba3f69cb888455fb3a27ad2798abab3e6588747e57e5e9d1147b817812" + }, + { + "alg": "SHA-384", + "content": "dd339f4da0e8eb6904489d5466b31eae204723e3ba60a8e874aeb619503f63363fc16568b6d963bcc3a0cf9df36154bc" + }, + { + "alg": "SHA3-384", + "content": "68ba313143427954e17672b23b319583776ced9703c1c6a5f7c40edebdf8ea7b12c4f6d8a7aca1883c4c24f29918cac6" + }, + { + "alg": "SHA3-256", + "content": "9a4898048e85febf16935eb54effd85b4e87d41351bd398fb50e2f75114e1af6" + }, + { + "alg": "SHA3-512", + "content": "5ba844d0daf99c4122af16da201e132bf964a47d659cb5151c67047402e8a92fb3bd998a41f05fe828e4058c7278994b76386a9e53f83f300c0d2272557949b4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpclient-cache", + "pedigree": { + "commits": [ + { + "uid": "1b879b18e6dab24afb552821c05bf976a2be7640", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/apache/httpclient.git#4.5.14.redhat-00012" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient-cache@4.5.14.redhat-00012?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.5.14.redhat-00012" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar", + "description": "Apache HttpComponents AsyncClient", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-asyncclient" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPASYNC" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://svn.apache.org/repos/asf/httpcomponents/httpasyncclient/branches/4.1.x/httpasyncclient" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/7099923" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "5346c547bfd0da64eb3dc54be9380d65" + }, + { + "alg": "SHA-1", + "content": "cd18227f1eb8e9a263286c1d7362ceb24f6f9b32" + }, + { + "alg": "SHA-256", + "content": "0c1877489a9d1ba4fa50f6cfcab11d1123618858cb31d56afaab5afdd5064d99" + }, + { + "alg": "SHA-512", + "content": "1e33c7fdfa63f377ec4844b7744d2f8ec30dc7867136905ff5a5a6e5f94efa5b8159ba20e81f0048f48430cf63ada7411a3974a418aefa497d2b4fab3501f5ba" + }, + { + "alg": "SHA-384", + "content": "9c4cf09ffeb61bccc3b67375f401c8a96c46bdee7c77f84e3227271a635e109a550526185407869e93ede8f081786977" + }, + { + "alg": "SHA3-384", + "content": "25bcc09200af70f5624baf5ddb95ac6bf46daaffb938d141f72f63ef76df8b740ba3b50104da997cfe67c34bd520fa5e" + }, + { + "alg": "SHA3-256", + "content": "ddb21eeb3e1c3f00ebcf397b58d8d972cc7ab7b140e8939654bf24b8b89382a7" + }, + { + "alg": "SHA3-512", + "content": "f753a8b9607f42417912c3bddeda3f189ab9f469416dafdbcd29b1df7a358aa57deba8a79a5663fdd1a4acbe35b39a48fd24f889a50e05a4726132db85699ebd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpasyncclient", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar", + "scope": "required", + "type": "library", + "version": "4.1.5" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.16?type=jar", + "description": "Apache HttpComponents Core (non-blocking I/O)", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-core-ga" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPCORE" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-core/tree/4.4.16/httpcore-nio" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9566981" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "597c450f3401e98103e835824ab43e77" + }, + { + "alg": "SHA-1", + "content": "cd21c80a9956be48c4c1cfd2f594ba02857d0927" + }, + { + "alg": "SHA-256", + "content": "4018736ede2d321034e8517ea90baefb31831a8608afccc446d8a699fb1d00d4" + }, + { + "alg": "SHA-512", + "content": "197cb4f4343a02d39d61db1c19bf10757aeb2078f51c4ace77a72a250b6d03b31fa1fc51f989f43df8c2a0cf8162a36664a8a935f4bbeb860c35770a3abd1899" + }, + { + "alg": "SHA-384", + "content": "e8827b2eca484748dd776edcac779ae67b5c4394c5c2ac1a50c614b19142bdefb4c4e01f0cf376c578007ad515add88d" + }, + { + "alg": "SHA3-384", + "content": "fb55a9718c2507954ffb779520b0233acdd0135222c7d01542083b3cd5dff669a8afffaf54d8bfe724e52c5c18c1403e" + }, + { + "alg": "SHA3-256", + "content": "37554263bc837817c08dcfba6b4a5ee978fa1d9f99945d27c0f3ba44195501a0" + }, + { + "alg": "SHA3-512", + "content": "18692a4310956c328ddebeac514a503904b84605463063f0539673f0480f0606c002eccd6f4dbacf91d124e11e130aa122efb855ec6b0aa0cf72ee0b26ac8ef7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpcore-nio", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.16?type=jar", + "scope": "required", + "type": "library", + "version": "4.4.16" + }, + { + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpmime@4.5.14?type=jar", + "description": "Apache HttpComponents HttpClient - MIME coded entities", + "externalReferences": [ + { + "type": "website", + "url": "http://hc.apache.org/httpcomponents-client-ga" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/jira/browse/HTTPCLIENT" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/httpcomponents-client/tree/4.5.14/httpmime" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9635950" + } + ], + "group": "org.apache.httpcomponents", + "hashes": [ + { + "alg": "MD5", + "content": "714c4ae31c40e6633c0bcaa4e6264153" + }, + { + "alg": "SHA-1", + "content": "6662758a1f1cb1149cf916bdac28332e0902ec44" + }, + { + "alg": "SHA-256", + "content": "d401243d5c6eae928a37121b6e819158c8c32ea0584793e7285bb489ab2a3d17" + }, + { + "alg": "SHA-512", + "content": "884b062028f68278389b74ccfbc35142caae489ceda5df01d2c60df884b9604cd4055bf4e1524e0358661fa0e88e93e614fb6be590cb940510b07a37c0b0a20c" + }, + { + "alg": "SHA-384", + "content": "88ec9117630f714abcebae122c9e10852706f88917ac12c610b975538c14a10fd5b1ec9213163b0cb950e9c9b7a74fe6" + }, + { + "alg": "SHA3-384", + "content": "8f1d2b58f6a74585833611b1219c78cb37737fc75e3e2cb58804d87df93a28107da6c49a86b139dff46a7973260fdf11" + }, + { + "alg": "SHA3-256", + "content": "7fdd67408fb7beacf7c00415476e9b61903c90ad06a50a7d500aa045d5747bbd" + }, + { + "alg": "SHA3-512", + "content": "5075045ce4e6faa77907d762ceb24660d13b225505bb81a1b0f101a736d4ad2f4c914ce7d04137d1506495eaa437aa64bb1ac08130f4b6a76e0025f8463f7353" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "httpmime", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.httpcomponents/httpmime@4.5.14?type=jar", + "scope": "required", + "type": "library", + "version": "4.5.14" + }, + { + "bom-ref": "pkg:maven/io.atlassian.fugue/fugue@6.1.0.redhat-00002?type=jar", + "description": "Base POM for Atlassian projects", + "externalReferences": [ + { + "type": "website", + "url": "https://www.atlassian.com/central-pom/fugue-parent/fugue/" + }, + { + "type": "build-system", + "url": "https://ecosystem-bamboo.internal.atlassian.com/browse/FUGUE" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://bitbucket.org/atlassian/fugue/issues" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/atlassian/fugue/fugue" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088758" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMUNTK4OXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "io.atlassian.fugue", + "hashes": [ + { + "alg": "MD5", + "content": "f95beca7fc4af96a24da3a3a470564e8" + }, + { + "alg": "SHA-1", + "content": "dd40153833832c51ab08d9b13f8db9006320467d" + }, + { + "alg": "SHA-256", + "content": "e2ff1eb8b57d0b558412468460d0a934132606b885b52746a486fb37a9b081fe" + }, + { + "alg": "SHA-512", + "content": "6240d698b8eb8bc6e5c24db9e4a348e09304416285d0b8578f55f1ed98e408004d6f230e73d3ec11f06d6e361780486bddedf2c889c01f9f28172cd5ed64e85c" + }, + { + "alg": "SHA-384", + "content": "f045b732eafbd679adb9e249e249155d4694884752e6504434bec09c9c2b8b4e8f28d3700e4f1d1841ae05e9f8e2beb6" + }, + { + "alg": "SHA3-384", + "content": "fe77a2918afe5fc9cc47e5c08cce091c5cf79738f14a06cf2a7608da5be25eed961699a2887ebb7ed19ccc453c6c5bef" + }, + { + "alg": "SHA3-256", + "content": "8527542c93522b2acda45826538dbc8f773275bd9e18fae40b81dad0a70edc0e" + }, + { + "alg": "SHA3-512", + "content": "b314259b318731446336fc846aeefc897f04b026079b83ddbf55b9c5b0dd57c448278586fa462ff094861fdbd0881256fae122eb0d1ae052ef97dd9fe2d8d7ac" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "fugue", + "pedigree": { + "commits": [ + { + "uid": "58e76d0869b6c4cf8b43529d7822ffc412cfe9e6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/atlassian-fugue.git#6.1.0.redhat-00002" + }, + { + "uid": "061cfcfb86fc1d289d0c2eec70b94e7630f1a094", + "url": "ssh://git@github.com/jboss-fuse/atlassian-fugue.git#6.1.0-x" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.atlassian.fugue/fugue@6.1.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.1.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.codehaus.jettison/jettison@1.5.4?type=jar", + "description": "A StAX implementation for JSON.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jettison-json/jettison" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/jettison-json/jettison" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10049852" + } + ], + "group": "org.codehaus.jettison", + "hashes": [ + { + "alg": "MD5", + "content": "f6c3eeb572f5830303059fec2812821f" + }, + { + "alg": "SHA-1", + "content": "174ca56c411b05aec323d8f53e66709c0d28b337" + }, + { + "alg": "SHA-256", + "content": "fc3a68a7c17688ee50817340fef265d8d3f6c192c92bbee00d17f18a6d3dfeda" + }, + { + "alg": "SHA-512", + "content": "afde3c34e3229c1999dc847b5e2bbd243c48feff9659ba043ccc677d34d9d8d62f4e02c3cfec8d4641b7a3ea7f462b0993fcba2319096a432526c5ca17fab49a" + }, + { + "alg": "SHA-384", + "content": "1a8b00e147bf8fc12b8ec8176bdccad3fa9703462a915be5b6700334fd6f28a6aaed4ed863199b7257032e005a819f5a" + }, + { + "alg": "SHA3-384", + "content": "bdf8be1abecf10eaae7af476a60914d28c7b0a2bdd3b7321f1810dd95f3b9d4b32dd298f74a7a7c8de3780cc7eef8e28" + }, + { + "alg": "SHA3-256", + "content": "2a3de2fb5cb628021a96faad03cb9e66e74ba37ffc8bf6876df554b74b145086" + }, + { + "alg": "SHA3-512", + "content": "de76fa3f7d6465479d2266a2e489e773276cbdbedd2a4903f219a9fc4e6d29f0c03f773b281793e2ed039669befe784727f2ca79f2db5ec7efa9fed614d45e5e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jettison", + "purl": "pkg:maven/org.codehaus.jettison/jettison@1.5.4?type=jar", + "scope": "required", + "type": "library", + "version": "1.5.4" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jolokia@4.8.0.redhat-00001?type=jar", + "description": "An example that uses Jolokia to monitor and to manage Camel Routes", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-jolokia" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-jolokia" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-jolokia", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jolokia@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Stream (System.in, System.out, System.err) support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-stream-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-stream-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895412" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "67b7575fb783cf256d8d01a3010d05ce" + }, + { + "alg": "SHA-1", + "content": "ba3be2c4a3a00ca9034501e50b8878578224a97c" + }, + { + "alg": "SHA-256", + "content": "a994e0c3507f95ca8c0ccaba72cfc4a619f1c30b5f9358496d3226ff34c41bb1" + }, + { + "alg": "SHA-512", + "content": "b55d7a6a084678d4cf4b2e7dd380516ecd6f04379ab4200dea93ffecb464cf27bb48787752d0db2313d6fe54cd67cd2779c56ebfcf4c8877277d5c56f9eeeef6" + }, + { + "alg": "SHA-384", + "content": "98e1f1247c33e42d37d281ce3595c03beeb66e53290840ceac69b21522e86fcc8989fa897ca02ea905b1172d226f894d" + }, + { + "alg": "SHA3-384", + "content": "c36a11432da251bf9d272d8d2a8075e342a003b5125da2712311b605d28662167588f93ef97b90db6e5a953b0fd46ccc" + }, + { + "alg": "SHA3-256", + "content": "d12a38c3626764092cbc87e07d238f0e7c6359ab6ed24977086585c32e00bd42" + }, + { + "alg": "SHA3-512", + "content": "f314f269a2e5a7c8d697762f895bcf04a1944210c1b11979a6308a345fa610d3a97b4701a4fad6f5cb70d5a4fc695948cb321c6cddb98a14ac8ac83ec02c2368" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-stream-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-stream@4.8.0?type=jar", + "description": "Camel Stream (System.in, System.out, System.err) support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-stream/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-stream" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866152" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "d97985faae10bb19a809b575ef579985" + }, + { + "alg": "SHA-1", + "content": "7bc716fe2c15c1283c9d92151b27c7235583cec5" + }, + { + "alg": "SHA-256", + "content": "c851c2eaa8f063af807c5f84449cb81151573cbcc4f0ef6efa7b1eec6ebdd991" + }, + { + "alg": "SHA-512", + "content": "e8b3af8fb34eadba1d89e7d81bb03b3dd9037d431e0a4bea6c8d2e75379e22a71ed91a1e7ee76e03ad24bdab0084d0e693791c3c71a41d31232c8b6ca7570675" + }, + { + "alg": "SHA-384", + "content": "3f21fd6f5274cc5ee2d672aaff7220f29cd13b0e5342a4eee30547c9ceaae63d465f3ab5675d70d7db5f801c3e1dd649" + }, + { + "alg": "SHA3-384", + "content": "4a4ad280b5bccc6e85e3237a692889304ef096371aa38e95a6f39c0e1a2c6f6a4738e826c2b5584a7542a076c0053279" + }, + { + "alg": "SHA3-256", + "content": "87b577be793ff248259e6d4b3ec3f0b0409ec608744acbf4f5471d0b3a355bf7" + }, + { + "alg": "SHA3-512", + "content": "38c7329c2bbe19d210e14640ef32b8a3aed25cb37f4dc91e1e99dda09bd84c0121fe816b213d702c039d0971872934a669fb1f7b6fdd05e13b5c609af2f3fae4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-stream", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-stream@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-jolokia-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Jolokia server support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jolokia-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jolokia-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234497" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "f8b0e1efbf425aea9ba6b39220803309" + }, + { + "alg": "SHA-1", + "content": "20bb5d2fd68658d5c1c3141bf515833e0e84bb35" + }, + { + "alg": "SHA-256", + "content": "a3fe279606c811d6f8a55f4278d013131469a9f2d51b8179dd8c217858769002" + }, + { + "alg": "SHA-512", + "content": "b6acadad4020adb3eb3f8c3df52911abd53dbf563e0377417367ca7f0c9e350c73f1b321d23a314e2d173ac69886dff313c191829386b9b1b7d1b73879670118" + }, + { + "alg": "SHA-384", + "content": "11c1342a1798baea1ca0ec56cf563542e7ef5587687f8c59cc9c5b2bcb146776316e41182ef4a682085bba6e74436d2f" + }, + { + "alg": "SHA3-384", + "content": "81100f843c449930b757320c81ff39d3610f6fa3dc993950efba9e85b1a8f8acf33d3ba0ac96b6c98d224f3f27c2a98c" + }, + { + "alg": "SHA3-256", + "content": "4c065dc572f3189fa694acca81dbd62d3e6b8ddd0d18f503a11c3512ba2ff171" + }, + { + "alg": "SHA3-512", + "content": "65110b90ea9020388dd0cefb610ac8b81cd1a52b84defeb05765c7329da501d478fae7bd5ba5dbf2453379813cb0141876c7581067a2da2a01e2d3332fb3e462" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jolokia-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-jolokia-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-support-spring@2.1.2?type=jar", + "description": "Jolokia :: Support :: Spring JVM Agent", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-support-spring" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235133" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "b99c6566c4267ae792499969f7943778" + }, + { + "alg": "SHA-1", + "content": "783e05067fe3d28b891133459a61c29c544e79e9" + }, + { + "alg": "SHA-256", + "content": "637f41edd57e32ce5f08011b6bfe7ece64662717bf36834b24840aa4f81a726a" + }, + { + "alg": "SHA-512", + "content": "670c6e5d2dedd068f47abdd3a5fedf71c72a915fc55e836ab2130fbb7b19dd0133f19c51868520712bf6495c357aea9a66ebd1514548e4cfeec77413dd2cc1b3" + }, + { + "alg": "SHA-384", + "content": "6bdc54702c5155ebfccfc343d477a37bd0ac0d0e98d57c45fa32a3e53ca69a8d4ffe4b53ca6be57bcc49f5ad4bc73b57" + }, + { + "alg": "SHA3-384", + "content": "258b812b0b353ea9cab0216b6609d761cd4fc17e56458d27cb489505bd8c3cd325c035ed036c2c4fe5a0895da12d21fd" + }, + { + "alg": "SHA3-256", + "content": "d922206c3bc9b5cbdd6b3f3fb56fc76c3f59102b0deb92c2930441c75b48c3e6" + }, + { + "alg": "SHA3-512", + "content": "10ac8b6f5b138f5c4ed1bedf7ee11482f6ded02b5937b1b03efc5a97716fd0ddfd0cba1e3830711f70f44e0996e3a29781e250154f439b456221aa5a8902e272" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-support-spring", + "purl": "pkg:maven/org.jolokia/jolokia-support-spring@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-agent-jvm@2.1.2?type=jar", + "description": "Jolokia :: JVM :: Agent", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-agent-jvm" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235108" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "929f11c78a6a65db05423cf4d9f5ad6a" + }, + { + "alg": "SHA-1", + "content": "cc48e7176df8a894196bfdc5300793bf7237d082" + }, + { + "alg": "SHA-256", + "content": "668d0712fb0abb97009f555b88ccbec31c34ed42224e8783f434324fdaf14fee" + }, + { + "alg": "SHA-512", + "content": "cd23decc8218288b17f1289fd81fa8b775dcaaba824d2802958be33d838c569d25e9096a477e3b679c0e69b38374e544f6392d2cad105e387b2f46d266651093" + }, + { + "alg": "SHA-384", + "content": "daf688e970979fe8d3dcba865842caec07c5de281f69c2228d38437d4a02ace7c4d7c71adb084e4997369237c257456f" + }, + { + "alg": "SHA3-384", + "content": "d679b5536093235cf7329431cadec7c17cd9e9eac8fc30c28fda3cdb2c304d7ee328329c36bbe9d8ef18b30845a11831" + }, + { + "alg": "SHA3-256", + "content": "4b2d224c7b1deb9b3267c07c3bf7787cb9569cff90739a2ab36e4715f8b1ee15" + }, + { + "alg": "SHA3-512", + "content": "698b298a243d66c2c92cd0cc3c5fcde0fb4935ab7443f7181eb7aeaa7234e133479e3e5b4a40967dd9627e60e179960e45861c7338cf4c56a05fcd5af9a7ad23" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-agent-jvm", + "purl": "pkg:maven/org.jolokia/jolokia-agent-jvm@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "description": "Jolokia :: JSON", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-json" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235110" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "0c446d03b70787080d18b15e54f3b614" + }, + { + "alg": "SHA-1", + "content": "66b84652bed4aca6ecd43b09b8498e0ac1026f57" + }, + { + "alg": "SHA-256", + "content": "cd2761ffa004382d42af8260b85edd72b543477a591c7ac0915a8ea7a2c43a73" + }, + { + "alg": "SHA-512", + "content": "129eaab6e04da8197411c394f886b3ade061f954cca8c54c69433cb234f7a3a3a663e41d38d17dfee0eab1866d64d6c3716ba958ab21e9a5e9b3848a8a34f9f5" + }, + { + "alg": "SHA-384", + "content": "24f2d40d9be2902c41f669de26e75d7cb1f657aa9bdc43806522f1fd324e5d7c13625a4d29d705eba81c9bb8eab896e4" + }, + { + "alg": "SHA3-384", + "content": "b7bbf8ddc4f3d4911e344f252dc6519bb770e795e6e22b5c19b26fe85e922d6fc30d7c41163a5e907247af6dc4f0faf1" + }, + { + "alg": "SHA3-256", + "content": "f2b6e4ba21f192acf81abdc1e58a5e0ed350011c9174c1171bb928de221ccc18" + }, + { + "alg": "SHA3-512", + "content": "7641db2c42d4908b16c796ce3cb4f378944fb192e6d9591da14c5b2a6999e9821adff9d19159c050a75331b78bf41654d420fdfb8994ce6b32ec3a3dbd2cee3b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-json", + "purl": "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar", + "description": "Jolokia :: Server :: Core", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-server-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235113" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "fe2763a90a54e79b04c804be1e48cd77" + }, + { + "alg": "SHA-1", + "content": "5f26a186e6b33c31ed7ea767c7997a6d9a02a3ab" + }, + { + "alg": "SHA-256", + "content": "469c8abf63ac5685273c44d6df05418d2a68fc180a006d2ea59e3892f2392d0f" + }, + { + "alg": "SHA-512", + "content": "ad97abca0c338c47232f2a59d1abdaa040aecf7f0d4a27f664d91ef5bf7c99f1b44d0c6462ed9c7f37a57259d44ea4b38592ded3761509e30aa6835fc30db4b4" + }, + { + "alg": "SHA-384", + "content": "6b75c62f85790a3076d1afb7c449e4f2199d2ac9e7d4d72f03ea0d5991ae81dc7689172d8030167d98e5f1edf82a2d7e" + }, + { + "alg": "SHA3-384", + "content": "957b567e8a3db40143da4cbb7573d43938f4b9a2ff24608ed824f53d9e2550953d3cbad185e196b958414e64803d515d" + }, + { + "alg": "SHA3-256", + "content": "e61e35b0629385a13dcd47866152bde9a7687c398cb98f590c192b6acc168c90" + }, + { + "alg": "SHA3-512", + "content": "e35560c145366edb69ed08dbde07fd2c28e2a57cf97085fd89ae4baba00c99c9b8f6b2361a3e378903fd0587c093cfa4774f8aea4b66181d44598db49ac59f04" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-server-core", + "purl": "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-server-detector@2.1.2?type=jar", + "description": "Jolokia :: Server :: Detector", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-server-detector" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235115" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "fdab269ea268c83f539c0bbee4d94415" + }, + { + "alg": "SHA-1", + "content": "c74be56a8b7c8c772b69b1573499ecd1d3a2b931" + }, + { + "alg": "SHA-256", + "content": "65bac1467bf8f3b02bd0c9c435692554a3cac1ffebe8d76afcbee8cdc08aee35" + }, + { + "alg": "SHA-512", + "content": "b767159e8fb3c376ebf1996768f787ccb1220e879dbafafdc6a571e92cf8f7290372e657cfc18dfaeac7067ab803294974c273b4685833b913c44cac63e90ec2" + }, + { + "alg": "SHA-384", + "content": "05592b4e25e099cd878a6e5571c7b6dfd9549d7fc5fc567279f354fb0155edf0101db033ae8b53d67b942bcb40192b31" + }, + { + "alg": "SHA3-384", + "content": "1d5a9e41afa1e572a19f868923762354d208040af913491a31d97ee814138acffee38096034cab1518b41fdea1faf448" + }, + { + "alg": "SHA3-256", + "content": "9e1de20232ef2114769a717ea5e3e9072744c4597c13572fb203ed25b70644f3" + }, + { + "alg": "SHA3-512", + "content": "bb603ede03d21fc80970d83a8d7ca9828b57af624bdbb8d258e9182f20bea25b17d3227a2bce23745cb72ac411bda26b5db4b135ac4fdddaa2f473c81318694b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-server-detector", + "purl": "pkg:maven/org.jolokia/jolokia-server-detector@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-serializer@2.1.2?type=jar", + "description": "Jolokia :: Service :: JSON Serializer", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-serializer" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235129" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "9f33956695ff2b8aa00fbd84767c346d" + }, + { + "alg": "SHA-1", + "content": "062e4556dcc6c092148abec2efb92afe9ae7a534" + }, + { + "alg": "SHA-256", + "content": "12354955320984a7a97e8a7912203d5f422cda79d9c225c2b6559f68eba2dd05" + }, + { + "alg": "SHA-512", + "content": "d0c5379523c663f7a58aeafc2673a5e3335ff9cf13a8432b67bf8a2c6c1de0c1b966cc185dd954562e43a0921a36e84d8969bb6764cc1bed9766922ee6d84e99" + }, + { + "alg": "SHA-384", + "content": "9e07ca6497db20ca7d6ff5ccb108f2ba31851b0e5fba187e0ca87a1e6531ef43f35fcd80def92fee448dd676d5363b28" + }, + { + "alg": "SHA3-384", + "content": "11c1d1e32986a21b5495c7486d7db22a4764f8afdd5422690b6c389bd88a297aebf771d2ae3cf5302e227a36adc4832f" + }, + { + "alg": "SHA3-256", + "content": "e61060ed8b85f22a454de7edc8759c86e9a5daaa70d35d3a76a66c513656c02c" + }, + { + "alg": "SHA3-512", + "content": "574c6d89952974e049076b4b6df1f72d1a2d1041de9b91a2dd008a3e8240c0932886ac783bb342be7be29818af4a73890bb2c0db5708b8033262798571b2cf0c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-serializer", + "purl": "pkg:maven/org.jolokia/jolokia-service-serializer@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-jmx@2.1.2?type=jar", + "description": "Jolokia :: Service :: JMX Request Handler", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-jmx" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235121" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "e8868414395b400ce845275b8d7b912b" + }, + { + "alg": "SHA-1", + "content": "e7072f51e644167bd7a8d2fa05565e718eaa58b1" + }, + { + "alg": "SHA-256", + "content": "fcbfc2e1c94ebca2da064e3b53ea054ddca340a80795ca80e013aa8f9e71c62c" + }, + { + "alg": "SHA-512", + "content": "a1033121b7faf6b61184e201058e8cc637e2f166d2862967181f2061414bcb8d2d39ee46491c0439a7c201a95cb161e88cc2cd300a50335b0993a3e99e62fdbd" + }, + { + "alg": "SHA-384", + "content": "15b579dae07ff8b7d583ce7af3241b1504965f26264b1b7a866593fed44b7b81003a842ca72f4609971fc6906affcd6b" + }, + { + "alg": "SHA3-384", + "content": "9f81970773b89fdcce2979943420a3c437c035c41a960698ddbfbddeb2adffdb59812e5eaf9970822210f0a1980f4102" + }, + { + "alg": "SHA3-256", + "content": "72c9581a6d407bcee37bcdf1f8245278d4532d00920420eceaffce5d04709417" + }, + { + "alg": "SHA3-512", + "content": "7ed84bf8ec845a075e2319b3c32ef7f1f713616b2d2f0ba9226710cdcfaa45bee50e48f2a02f592ca407cc47a3fadb46e69af5d0b5a9ced6fe201d9a57bed6f4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-jmx", + "purl": "pkg:maven/org.jolokia/jolokia-service-jmx@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-discovery@2.1.2?type=jar", + "description": "Jolokia :: Service :: Agent Discovery", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-discovery" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235117" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "f2087c2361096d10959ddfeec78d4cdf" + }, + { + "alg": "SHA-1", + "content": "5083c65ff3d120b9ff08a118294ea7b1a2ea2ad8" + }, + { + "alg": "SHA-256", + "content": "6920ae703a5acee9e875d3a48ca86272fa64f835b7ee41af4bc7ae75b5f00712" + }, + { + "alg": "SHA-512", + "content": "cf942e907d5bfcf8c0cd4d4c288f2f4a31ce140bbe5e4a8020a7e0281213e9720096e3ffc3f5e8dd6f6739ef7edb6c20896a4cfa6c8fe8b581f7058310932f71" + }, + { + "alg": "SHA-384", + "content": "952c42d4c09a714ab365e4d27098ff4b6c5af96b5ee814e61240a7364d8d43582b6606c23c8de7a97f9755c16c9ee1fb" + }, + { + "alg": "SHA3-384", + "content": "1589a95b917975ec8c78ecb1a2079c13d73aa930bd23f9bbbaf505c392d8a4844dbd867de35aecee1d73cec0ca1036a8" + }, + { + "alg": "SHA3-256", + "content": "aa32dc047e88540739eada97b3cb25a916524e84f8afeb5612212463d7de8095" + }, + { + "alg": "SHA3-512", + "content": "99c308a0d7229534a4a373d5570e0eeac6e547a88cac26307329e329ed1bcd4709e2fa8beb62e866225ac5d95c0664399a056288ed6a5c8001d2a1aaf3a0464e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-discovery", + "purl": "pkg:maven/org.jolokia/jolokia-service-discovery@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-history@2.1.2?type=jar", + "description": "Jolokia :: Service :: History Store", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-history" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235119" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "3a10209a4f7e43ebd598888cb0536232" + }, + { + "alg": "SHA-1", + "content": "4c32747529918a8614e66fb0f2601f89f8ad9e55" + }, + { + "alg": "SHA-256", + "content": "423851c7e4edc41973525047407e8e9eb1a21c210d7169a3a2da81a47b0f2fbf" + }, + { + "alg": "SHA-512", + "content": "3ca48cdac726f35bdf545fb9dd2dfb9a2ea68d6a2f890b72c2256741890fdc8eeeb49f8e8a0c9c482ec73d5748e5b43a76eaa3c109a296ed173381c04ba36cdb" + }, + { + "alg": "SHA-384", + "content": "7ceda15324d22ad9c21bc3b64fa7e855aa587d4c07638e3a4eed81925c2d4071ca13eb24efeb0abe850d38401e96aa1d" + }, + { + "alg": "SHA3-384", + "content": "5e132e61386c6f4d92cea11f5c8ab5b1641e8175dbb42a82c1f83483e43ce695a36fc60c16b67bfbc990d79a6a687443" + }, + { + "alg": "SHA3-256", + "content": "6c3fd5da3437559c60d31241ce16fd995f73c073b91d3b2d37307bd6063a7850" + }, + { + "alg": "SHA3-512", + "content": "9632d47a51878759c7c2bde710504f9da06e3b31799471aaeb50e35389c110d05d5000731a4e220ff4d134a5a6a46b89bc01d47b36b11022137152582301f700" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-history", + "purl": "pkg:maven/org.jolokia/jolokia-service-history@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-jsr160@2.1.2?type=jar", + "description": "Jolokia :: Service :: JSR160 Proxy", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-jsr160" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235123" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "d4d1eaf1f8e2369832110398b55d4062" + }, + { + "alg": "SHA-1", + "content": "81d20d54121e952020d7efe7a725b65d5885c1b9" + }, + { + "alg": "SHA-256", + "content": "f6f6cd29fd57b07aea51a721b8f06191a3439a3800358f9cc5109b727af70d84" + }, + { + "alg": "SHA-512", + "content": "cfe017c9887d7bcaca69257133f6a0f95b11d515c1db59b0af867c5c2c365cf1151dd79d204541018b2caa93e2649f1d1233694042cf8fd9567124a8210701aa" + }, + { + "alg": "SHA-384", + "content": "b4aeeb230409757d09f6420ca46d9250c397f14223b78dc38c3cf1d6cc10e670aea27821bc4740f6b0e82e235c6a6fe0" + }, + { + "alg": "SHA3-384", + "content": "f188a6478e48733d945559aaf5995e828ba8dbd29476b9fb55f0509b0c479f8623e9638ebc639252ebab19ba0323fb35" + }, + { + "alg": "SHA3-256", + "content": "8bd5db21a336eef3fd22dc83c0049a762ee1e0a3e574f3626660811da634656e" + }, + { + "alg": "SHA3-512", + "content": "d8f3776084164b7a2b4ac907fb91a9ee5365f6c750696e1ddf4fe326d40ffbd66fc57d08b99f64761d0135488901e0c024030d26157bac618d499cd7e6c915ff" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-jsr160", + "purl": "pkg:maven/org.jolokia/jolokia-service-jsr160@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-notif-pull@2.1.2?type=jar", + "description": "Jolokia :: Service :: Notification :: Pull", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-notif-pull" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235125" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "c959b0b9489af8aaddee50cdfdc8cbdc" + }, + { + "alg": "SHA-1", + "content": "f58a0073009d5aa7e1b6848082f5c43d48c4ca4d" + }, + { + "alg": "SHA-256", + "content": "80272eb919e3e556568cf85c6d32cffb6a1e5f0b8d34f32c504df2637c2a9bf1" + }, + { + "alg": "SHA-512", + "content": "b5585a5fd630806bb42c5cd343755e86d2be599b7f9be00fee961dcf767969bac0ad73fcee359635de42e04894abe3f7d7498ee54a373ec868b95451f8be2e73" + }, + { + "alg": "SHA-384", + "content": "afc2be046f59554e8c1a1f956028ae85cf01ee5675c4c6d509ee605c803d22cf406322231236feb88fb7d316c59834a4" + }, + { + "alg": "SHA3-384", + "content": "a472ec61d63ccef0ceb0597953bbc35963716a1f657cc3e61803e8a8a7d6426503a3a024a1825301ea673553c366854c" + }, + { + "alg": "SHA3-256", + "content": "430774dc1f72769526e3fe44844c398c8afe4910c22b67123428d7a5ac814bd4" + }, + { + "alg": "SHA3-512", + "content": "61d54d101898fdb6c1885716ec0247255d6a365871229bf25b9b121cdcc61fd17b61398cb0a7147eb0e293102383cbc555323f939a72c2300725afe1d8518490" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-notif-pull", + "purl": "pkg:maven/org.jolokia/jolokia-service-notif-pull@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-service-notif-sse@2.1.2?type=jar", + "description": "Jolokia :: Service :: Notification :: SSE", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-service-notif-sse" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235127" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "c5a6a0d9c78ee173f345d96c847ac9e8" + }, + { + "alg": "SHA-1", + "content": "a187888911eb57afaca9cda1167271df5978e297" + }, + { + "alg": "SHA-256", + "content": "ba733fab881814216907ea4a30cedec8b664ad421dc886b7d4a010e4c0071349" + }, + { + "alg": "SHA-512", + "content": "41b7c83f7a88a8e5301f1581037598f62ee0254ac66ba46fde23b533eeb33226280ce274fd60c433322aa5a44361b8f950c12972b45de28a8fee2af9b35361c6" + }, + { + "alg": "SHA-384", + "content": "58ae326590399dd2824a482084811b84a3fdd03d54678b9b64ef1c5740fba7174ba59d88ec963debd1d2bc71e629e70a" + }, + { + "alg": "SHA3-384", + "content": "4f4abc3c5d71d7e7e99b00ef6e51b6990887b441f22be99b3d81f9ccbcaa43053209dc7523bbcc0e33fb19af8cd8668e" + }, + { + "alg": "SHA3-256", + "content": "7194075d18f67dafb98645d46f4a566d52c8c8bed5bbdf859567864d5063043c" + }, + { + "alg": "SHA3-512", + "content": "e3d58197e589ee49dbbcf50bc3318dbe2a57b961ce8fa714d41c6fe5658d2d0f8cec16ab81524025dc9120e91bcb55b5d815fbc1d537c9949bda5945898c8db1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-service-notif-sse", + "purl": "pkg:maven/org.jolokia/jolokia-service-notif-sse@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-support-jmx@2.1.2?type=jar", + "description": "Jolokia :: Support :: JMX", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-support-jmx" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235131" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "8f85425c68ce26d55e8c93d30ec5f21d" + }, + { + "alg": "SHA-1", + "content": "c2fc106f8b9720dc76dcd2f9253bc127a926cbbf" + }, + { + "alg": "SHA-256", + "content": "398d1f300f655297fab5e06e8b4ec7c4e1ce917403cb9ffbfdf4295e31a883ce" + }, + { + "alg": "SHA-512", + "content": "e85329f9a0a24aee114dc087d8dd26574cbb07a9c7d923a369c954a8be75d8f997c8ab77f990f8487851567d2384cb93910ecd9f907bc28b4b65da9f4d184b55" + }, + { + "alg": "SHA-384", + "content": "b87f94a0e32015ade57a4e3bed51fa17dee5d4fccd29b9259af84c96cd16eca0080d2691f824deb6acd35e55e15df6a2" + }, + { + "alg": "SHA3-384", + "content": "fd17d508722db9db060da0c379669b71882680ee7b4aff9eb2c28df9dd24e612ddd9776c1143f5b4621df71a8fcf2dcb" + }, + { + "alg": "SHA3-256", + "content": "2a7e05738b94c5e3c13efa44a2b18156fc42689e007f29e58f85503d637b0f86" + }, + { + "alg": "SHA3-512", + "content": "32dda80c38416a21c4463db48a9a1432faf5d734c73e8e06716c817a5ed364d2dac857f9fd7f9d58481cf39009e5cd7b846605655b51ee13e05d01bf617e980f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-support-jmx", + "purl": "pkg:maven/org.jolokia/jolokia-support-jmx@2.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.2" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel DSL :: XML IO", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-xml-io-dsl-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-xml-io-dsl-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234811" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "26228c7459dc565c9f389ab86117f2a0" + }, + { + "alg": "SHA-1", + "content": "7b445ee2fb11e6c88c931ea61e76379adb3e4e20" + }, + { + "alg": "SHA-256", + "content": "15c52ebb8f01b75c3b32e0906adb9c8bce05e80063025a504be3d25f3346c0b6" + }, + { + "alg": "SHA-512", + "content": "1153c02f65390a101088b323d9fcfc1d93c56a7a94621ae5a858e824c189bc4c8aed47431ebad937e1e1b8d34fa76f3c5e7f17caecebe54f964b9be0813dbdfe" + }, + { + "alg": "SHA-384", + "content": "fc7e729c506bf36bc997115189a8d9f7b0829fb5ff95c685116dedf87cecdb6778c75ef991b094286adf7682eb8851cd" + }, + { + "alg": "SHA3-384", + "content": "4697d7b4423e5d41cc31313c3a75bc1573e28c00707e37d498e5beedaac98f4bbe795e05b1c456c70c2171344126bbb7" + }, + { + "alg": "SHA3-256", + "content": "0f1551f6c92243e12383bd68b5dc724657ecff2f61231a32520c675b3fdd8cd7" + }, + { + "alg": "SHA3-512", + "content": "d5d597eb23a146e1f159a565dd90a99100a63048820e86d00baf0ddc25af307aacca0ce67aa73e540b39033a556c8cc84d314eca1d57a007d1d5eae96856f459" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-io-dsl-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-io-dsl@4.8.0.redhat-00017?type=jar", + "description": "Camel XML DSL with camel-xml-io", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-xml-io-dsl/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-xml-io-dsl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234260" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "11217ddd3f9e4bb366a0e53004b29cd0" + }, + { + "alg": "SHA-1", + "content": "cac26e170cc2e5ae846d58f8586f168cdce93bdf" + }, + { + "alg": "SHA-256", + "content": "9f11381e5bcd68e972e1632c468e231986ad5578c737cc25d9a8600840f34afd" + }, + { + "alg": "SHA-512", + "content": "265b69482052d14d5a60ab3b009469a255bc8ea69408bf3bbe3db26313da52dbb387551c9be731d4405f23b8d16239c105f31a4823f6a7b8e04c14f2afe8d061" + }, + { + "alg": "SHA-384", + "content": "48e620d137cd1e3dff0ed154fbe8e28b304dc44151c8fce562696ec3f78793bac8ad6aff00076bc1c782cce61ed90238" + }, + { + "alg": "SHA3-384", + "content": "41ee324a440ec7789925cba6d6f789b3ae1a92d746d8d8a4b674987c84543039424a4923388b1cf6bb3373dae4529b49" + }, + { + "alg": "SHA3-256", + "content": "3990f662187b3089697aa3f0a2883c4ca2f023a0ac3365ef050c71a841bf43d1" + }, + { + "alg": "SHA3-512", + "content": "a132fc4e545210e046d06aa03bd3a21be86448202c6bd27652ce840d7511fd364a007cb1886267c63d2108c390dcc42116f73eb3011710e436180b053934d3bb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-io-dsl", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-xml-io-dsl@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0.redhat-00017?type=jar", + "description": "Camel DSL Support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-dsl-support/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-dsl-support" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233944" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "41fe19be4a9aa730985d092c023322fe" + }, + { + "alg": "SHA-1", + "content": "e2dbe9aa782361de535230e3ae7ee3b6fa361b1b" + }, + { + "alg": "SHA-256", + "content": "319db91adcd69cc0ac4c0b73a56b68d4c223c7c8cfb303fb5fbc905b2e52ea9f" + }, + { + "alg": "SHA-512", + "content": "283828413d19bb2807cdc689dcbd6512c43f6be39ed07cefe403ad27379361dc03e7f374915b9028c8877c32f5cbef99ca2c696958ae35ec08f8489de3bf29ee" + }, + { + "alg": "SHA-384", + "content": "dec5f44a2583a77eef3f43ef0c19908245f4c29c0388062d80eff1205b1c91f48443d91e9b48d9c7af329de6bdaf709b" + }, + { + "alg": "SHA3-384", + "content": "8acb18ba4e62c0fce0b914142800e4b1543eb71f111e0cb1cb7ad6cb6895e209631849fb0fc6d5178e631dc8ea1c690c" + }, + { + "alg": "SHA3-256", + "content": "a596033ff9c42f4c87b91edc736130c5b0af60a4574f56c4438482878db68a73" + }, + { + "alg": "SHA3-512", + "content": "9228eade38ac05974add353cc3dcd3120ded61e6e636c385687ee02a4c657a4b8eb33ca17ead1a61aa38b40046f4bbb615324fbd37b52b8e9ab0e374f88f4f37" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-dsl-support", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-avro@4.8.0.redhat-00001?type=jar", + "description": "An example for Kafka avro", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-kafka-avro" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-kafka-avro" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-kafka-avro", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-avro@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Kafka support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-kafka-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-kafka-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234605" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "8031b8a97543e6da8639314e594da3d7" + }, + { + "alg": "SHA-1", + "content": "f56ed5eb56a454ea9b8b84c3cbf8711710a69c8f" + }, + { + "alg": "SHA-256", + "content": "f789d8645aa90271ac3824d3f5dd3ccb745e2d3f50d1aecbad5434a17b5fa412" + }, + { + "alg": "SHA-512", + "content": "207583f17882b08c107a68a03a5c6af5dea0032b82735d91a1f63a1a9a765a057ebad226ee29ea51d5b936f24e608fa5bd479e40d7115a61901a72e5fd479bf8" + }, + { + "alg": "SHA-384", + "content": "0ae1d227bf6e39f88b1ba75e5cf5c8cec3a7a21087b439b9e8552c6170a331abf62affae0f390232284b8ab06f5949e4" + }, + { + "alg": "SHA3-384", + "content": "4300f2965a15e9c86d2a3f7b04399d3f0e32db528ab4d6984f43b88f570b03071929bec4f6aaee860f6e6d0d9a7788cd" + }, + { + "alg": "SHA3-256", + "content": "6317342398ca6c999b415d44e0243e73f7c0b7f4131d4820f25ed171539060d1" + }, + { + "alg": "SHA3-512", + "content": "8c3f482b70268c56b64d0c68fe9f601d251a984128eb458303c27fe265d53c20ac647faf0653726e50f4d479f1cb9e7e01396231ebacf21e720d35338ae72966" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-kafka-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-kafka@4.8.0.redhat-00017?type=jar", + "description": "Camel Kafka support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-kafka/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-kafka" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234147" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "873235722bb941f31d739dd4787f6b41" + }, + { + "alg": "SHA-1", + "content": "0a874a76174f212c8c87eaabb9aeebf410451a1f" + }, + { + "alg": "SHA-256", + "content": "4cc8e51b2b4158351e6d854cdabb162d6c6cc5a44b8b0a6a217d9c56cf9bdcd5" + }, + { + "alg": "SHA-512", + "content": "9613a6d6ceb37b0894284cef9fad5b2c42662c1f279a9687b5eadf752a2c0ec7d3c0cc0472a99193165a4eb8879a8533721c81ed978dcc0221d9fed16e0ba155" + }, + { + "alg": "SHA-384", + "content": "fa12d514bfd75a008d54aa61216f7d55876f356bcb57596d6e469d5b81bb0f06eed67730bc0a70fcdcfccbf069d784cf" + }, + { + "alg": "SHA3-384", + "content": "4ca524feae8b805763b0da066f05ff716b3f33a0e65f76c2b43b59e5580acb86ba20e7de6651870a8c1dc0e6380af284" + }, + { + "alg": "SHA3-256", + "content": "aa964716830b9bde613ee51a1e11c252bb78f7e8a60b99ca5650adaf10ef1377" + }, + { + "alg": "SHA3-512", + "content": "5ffd48895dcd12685332b2835ca8ba65eedbac92ea019d5530993d74c3808b1edefc3ba4ca70b00785174f9c3f6d38d031515db6863fc9b3a9ffeb05b6ea8731" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-kafka", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-kafka@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-console@4.8.0.redhat-00017?type=jar", + "description": "Camel Developer Console", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-console/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/core/camel-console" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233651" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "fb56a5449d79c4eae3cee1df53d49195" + }, + { + "alg": "SHA-1", + "content": "6eb1a2f69571a3bf90e2ca1cc5f30f81a8a89819" + }, + { + "alg": "SHA-256", + "content": "737a109e1973454ff671dd5327f52f56af8121b05c5ac0b7e872b47fcf01fecb" + }, + { + "alg": "SHA-512", + "content": "1433209d293d4eb6570b4458532237c92e0b9f423aa45f1f645060804cbef927ec7e6199c7b09855e43a24e4a925f34efc364f70aeb84720804a89d30342af4b" + }, + { + "alg": "SHA-384", + "content": "f84814d351ee55c206a74132b6b60cf70b1cc69321ed883e700d6492b577b91c22c697ba59c66697be56b31cefbfd7d5" + }, + { + "alg": "SHA3-384", + "content": "4d276bfa9c167cad86980dd021d8688691300cc9a20bc65e30f07f29d332c3d8bfe9d27a874dcf4d919d9ae364666fc6" + }, + { + "alg": "SHA3-256", + "content": "8df87e2b0659036f810c458bcafceeca7f848c7dcdf44fc1ddc922403b613a39" + }, + { + "alg": "SHA3-512", + "content": "e637fa8057d6e9a31064bf7b7ecabc1dcd804213bb0521cc45919518534d77942988141aece536974f2ba9abb710f3152ed1a7eb3e9350256d1375227ca9b090" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-console", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-console@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.kafka/kafka-clients@3.7.1?type=jar", + "externalReferences": [ + { + "type": "website", + "url": "https://kafka.apache.org" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12733296" + } + ], + "group": "org.apache.kafka", + "hashes": [ + { + "alg": "MD5", + "content": "d97b411bfa6621c6ecac6b9ea5e8f17d" + }, + { + "alg": "SHA-1", + "content": "75a75c47eb912f3fd06df62a9e4b3b554d5b2bec" + }, + { + "alg": "SHA-256", + "content": "e128cccb0efcfc52556d8dd73d804e78de7a22543e747880f61e1ba18613ddbb" + }, + { + "alg": "SHA-512", + "content": "ec696fbc8514572eac46e4975bb66dded925faf34edca43dea7343d039e00076de71c74063b787a232ac93ae44cd2fcaa2232ac8ef8aae06f65c00f19a16d65d" + }, + { + "alg": "SHA-384", + "content": "4066170ff7e6478a62984e593da5e6f6593632ecb896cd1110a8887585f7bd77c9c20f4335320074073ed694f58b44af" + }, + { + "alg": "SHA3-384", + "content": "f0368263b86db8d926b4faef29c37a9add515679ebbd8e7ce24e8a1a4336facb06e212df3e6ec450ca9b1de8b729ef7c" + }, + { + "alg": "SHA3-256", + "content": "e5988f0e314f3e13fd230cd41575a77568b1500f8e9187b0d1cb1576da651907" + }, + { + "alg": "SHA3-512", + "content": "53d8b617a3305ffd0f798809c3ebb9f0db46e4b11e21801137aa19b712bebf296548c317d2107778a05a3cfafe4db490bd92be3b91c839d09a7845942f2b984c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kafka-clients", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.7.1?type=jar", + "scope": "required", + "type": "library", + "version": "3.7.1" + }, + { + "bom-ref": "pkg:maven/com.github.luben/zstd-jni@1.5.6-3?type=jar", + "description": "JNI bindings for Zstd native library that provides fast and high compression lossless algorithm for Java and all JVM languages.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/luben/zstd-jni" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12583421" + } + ], + "group": "com.github.luben", + "hashes": [ + { + "alg": "MD5", + "content": "67b722d1bc7f256235ddf32a320c1d0c" + }, + { + "alg": "SHA-1", + "content": "823b794106e4bcb80110f49408d1641231f25927" + }, + { + "alg": "SHA-256", + "content": "f72ede1b39258faf81277dc58de30c71cbae4253732558d2ce10b53d8b5763d5" + }, + { + "alg": "SHA-512", + "content": "bf237e2eb5bf0318a082e8dd480d89887a7c3fa068264b99313f84460a30203649505a293500949f588148a9074a54a4a4a324e9d8aa80475536c4260091ce61" + }, + { + "alg": "SHA-384", + "content": "3885377295270021f4a46667ec6a3c36bfac2290caac17e42a9e557a3f9675357abc78576e61b721e1a91cec765322e4" + }, + { + "alg": "SHA3-384", + "content": "50a38ba8067882eeb564ef85f9b8bf23e51951886ed99085fc2e422027dccd293cde20a02594a1670ca7e37ad67effdf" + }, + { + "alg": "SHA3-256", + "content": "4cc4540bd0916125870a9fb810eb9fb16c061fac6b8becc2abc9c69a83e130bd" + }, + { + "alg": "SHA3-512", + "content": "5404f0198118ebd9f7b05acce4f02051eaa8e0a04fdfee75b0581e61ab688a91761038471d1d364306ceb8ac5ec545dad60a4d09fc0c5fdbcd4fa7c8e50f7f94" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "name": "zstd-jni", + "publisher": "com.github.luben", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.6-3?type=jar", + "scope": "required", + "type": "library", + "version": "1.5.6-3" + }, + { + "bom-ref": "pkg:maven/org.lz4/lz4-java@1.8.0?type=jar", + "description": "Java ports and bindings of the LZ4 compression algorithm and the xxHash hashing algorithm", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lz4/lz4-java" + }, + { + "type": "vcs", + "url": "git://github.com/lz4/lz4-java.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/7378335" + } + ], + "group": "org.lz4", + "hashes": [ + { + "alg": "MD5", + "content": "936a927700aa8fc3b75d21d7571171f6" + }, + { + "alg": "SHA-1", + "content": "4b986a99445e49ea5fbf5d149c4b63f6ed6c6780" + }, + { + "alg": "SHA-256", + "content": "d74a3334fb35195009b338a951f918203d6bbca3d1d359033dc33edd1cadc9ef" + }, + { + "alg": "SHA-512", + "content": "98d59086a6021ca571d9c1d64b715e43044c730e1ac563f514c40cf44302615d30378b6d5cc69990446522de6260dc8e7b303e3990a3139dc326d058dfb6dbd9" + }, + { + "alg": "SHA-384", + "content": "8e3f2acdbb41a00c4d9cc5f328e63fb626ac7c6c84e1bf9502e2fcc76a591b2b819b2d27b29925ff986b95c297b30e2c" + }, + { + "alg": "SHA3-384", + "content": "ec0d6a00760d0a4ecba13a41785d6ae57a64552b1687eaa3e292b3054bb1348e49ab8a938197ff126f9218c6cb96ee1c" + }, + { + "alg": "SHA3-256", + "content": "7be684c102891105f66d378b61ea1297a392c1618b5aebf7e0b281f55217c206" + }, + { + "alg": "SHA3-512", + "content": "0b2294570ea2bfbb50ced21dfa4bad956467ca447e9ab2dd602a3478371bcd0e9f13d2dff74d06827a28882409612cdde00bd91267be05bd3510c68268bf3166" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "lz4-java", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.8.0" + }, + { + "bom-ref": "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5?type=jar", + "description": "snappy-java: A fast compression/decompression library", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xerial/snappy-java" + }, + { + "type": "vcs", + "url": "https://github.com/xerial/snappy-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11280193" + } + ], + "group": "org.xerial.snappy", + "hashes": [ + { + "alg": "MD5", + "content": "a52ffcdbbe525b486237a7098e5c5ff7" + }, + { + "alg": "SHA-1", + "content": "ac605269f3598506196e469f1fb0d7ed5c55059e" + }, + { + "alg": "SHA-256", + "content": "0f3f1857ed33116583f480b4df5c0218836c47bfbc9c6221c0d73f356decf37b" + }, + { + "alg": "SHA-512", + "content": "36c288aa84017b52362a49a20d1702151a16b9f58518b6877f11122941a549d94fab8d515f7f1ad6384fb94be569328abf862edaf970c10a16832498dfda853b" + }, + { + "alg": "SHA-384", + "content": "693a542ca2471dec4da5fe582563aff1bf5238e1a8d1a1f79cd8138334f94f1112094fbd270b1637d983c9290084a6e1" + }, + { + "alg": "SHA3-384", + "content": "41cbbb20b4bc0bd9a80521904568335fb131602a6931783f5bf6a1c8287b8ccd92c8169b8bb2399d27208fc067ef2321" + }, + { + "alg": "SHA3-256", + "content": "38dc41c5a0d827c58e1409a63e902d0568a03d67cdb99708ccc63921000ddc55" + }, + { + "alg": "SHA3-512", + "content": "b07d178cc94f6385d5f09d7730d2dd161c6f7d6815ae779e742421c0c1fb92043c8ec8ce5ee67660760f5287bd959eba1028924257a6ff36fb5439d8f81bd049" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "snappy-java", + "publisher": "xerial.org", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.10.5" + }, + { + "bom-ref": "pkg:maven/com.github.javafaker/javafaker@1.0.2?type=jar", + "description": "This library is a port of Ruby's stympy/faker gem (as well as Perl's Data::Faker library) that generates fake data. It's useful when you're developing a new project and need some pretty data for showcase.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/DiUS/java-faker" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "git://github.com/DiUS/java-faker.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10746265" + } + ], + "group": "com.github.javafaker", + "hashes": [ + { + "alg": "MD5", + "content": "d20c2dac0220b1943c2fbe6211f14d10" + }, + { + "alg": "SHA-1", + "content": "be0ff271b1208416822db4438864df47f90af92f" + }, + { + "alg": "SHA-256", + "content": "ef95ae468097f378880be69a8c6756f8d15180e0f07547fb0a99617ff421b2ac" + }, + { + "alg": "SHA-512", + "content": "a03c58e20dab320c6fbee5a6c20f7c57d1a603a0aeb02e8b62230deacb0250a6e6f51fe40188951c3e7f8e4e9a5e3f4bbc00585d3edd325e57e119d32a29b1fc" + }, + { + "alg": "SHA-384", + "content": "69c78000e1c3493859182d97207070b6db050aed5148915405e1e0f7cb845f2a0d8ad1f15383d0e7dedd9ed6d8d76bf6" + }, + { + "alg": "SHA3-384", + "content": "7cbc25bab23fe5f6bdf50402aaa377f0faecfb1f46ac59c956c63c830c3971f494557a18695d6e4d7d171dcc68402816" + }, + { + "alg": "SHA3-256", + "content": "cefc5b7c660e1227afed38551e77a9dd229bf1e0c1754eb01b3318b725ba9877" + }, + { + "alg": "SHA3-512", + "content": "35e979afe9962b7568eab8496a24b6cb670ecf05e509f0b2365a284f61bb19440da9fe0990bb68f157ff6d47eadeba072c223fb2ea5186726dee03f09aed85b1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "javafaker", + "purl": "pkg:maven/com.github.javafaker/javafaker@1.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.2" + }, + { + "bom-ref": "pkg:maven/com.github.mifmif/generex@1.0.2?type=jar", + "description": "Generex A Java Library for regex to Strings generation", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mifmif/Generex/tree/master" + }, + { + "type": "build-system", + "url": "https://travis-ci.org/mifmif/Generex/builds" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/mifmif/Generex.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/1062556" + } + ], + "group": "com.github.mifmif", + "hashes": [ + { + "alg": "MD5", + "content": "a832db42f9e1c4f76930f547f6f80998" + }, + { + "alg": "SHA-1", + "content": "b378f873b4e8d7616c3d920e2132cb1c87679600" + }, + { + "alg": "SHA-256", + "content": "8f8ce233c335e08e113a3f9579de1046fb19927e82468b1bbebcd6cba8760b81" + }, + { + "alg": "SHA-512", + "content": "a0993c16f82bd0ce6072f4bea6d001a49e9203b35290f10c6a3f2b2dd385f08302b4531a0a825ad5c000826369aba828ab8fad49fcefca4d7351a8e0d825b9a8" + }, + { + "alg": "SHA-384", + "content": "9cc05f3e6a2d802d5b39cadd0b4ca0bc94726f1b4e0f619b10d53f5e2f8b8663f620b0618ea499e152b431cd055dbd44" + }, + { + "alg": "SHA3-384", + "content": "03e450ea034f2c92b21af2956676cae06b50f9c6eb7def0267da8806595fc4486e493369a31602640fd286cb563a7b89" + }, + { + "alg": "SHA3-256", + "content": "960afdbf525f54fc30f33e8e1d18cce761692fced186dccf79fbdd5a13efefb5" + }, + { + "alg": "SHA3-512", + "content": "5de6504499682fffc0a49cbece02341a045e05f04da880a8ca185931ab792771a4b3b9a96887bd9e2889c1213c7b7e547b019c26b7169903ee96b774de61b68f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "generex", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.2" + }, + { + "bom-ref": "pkg:maven/dk.brics.automaton/automaton@1.11-8?type=jar", + "description": "A DFA/NFA (finite-state automata) implementation with Unicode alphabet (UTF16) and support for the standard regular expression operations (concatenation, union, Kleene star) and a number of non-standard ones (intersection, complement, etc.)", + "externalReferences": [ + { + "type": "website", + "url": "http://www.brics.dk/automaton/" + }, + { + "type": "vcs", + "url": "" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/25580" + } + ], + "group": "dk.brics.automaton", + "hashes": [ + { + "alg": "MD5", + "content": "3467dcbbba2fe68a4e07a5826988e034" + }, + { + "alg": "SHA-1", + "content": "6ebfa65eb431ff4b715a23be7a750cbc4cc96d0f" + }, + { + "alg": "SHA-256", + "content": "a24475f6ccfe1cc7a4fe9e34e05ce687b0ce0c6e8cb781e0eced3b186482c61e" + }, + { + "alg": "SHA-512", + "content": "e00b4ddf558275509f263850b1ff04097315000baeda5cab469b555083412922317e92dcacadf70179851e4068f3f574fdab9ef36b1612d352d072e57d49046d" + }, + { + "alg": "SHA-384", + "content": "9c107955c2502954864a484a0f23c741231a9e5b61c376ee45df5fd816c31308ca8a9380b1b4b1e07aefb3bf24edab34" + }, + { + "alg": "SHA3-384", + "content": "20301590b7ef4af5e1f025220f4f4ff759942fecb016d81e160853ec6d32ee227b07976ddaa8aad503976cbb39f15f07" + }, + { + "alg": "SHA3-256", + "content": "42e6f6cdfa5b71a2c985a9dedde83f828955e640598937b7fb6ca4fc8a62e702" + }, + { + "alg": "SHA3-512", + "content": "51e80070179c7bc3fdafa31b6da3555a36c7c749bb11ed22f49cb9a9454db1b987d92238b6d5fdea5e08ed6c87f797ac38cb796675e56e2aa1ced82ceb9358e9" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + } + ], + "name": "automaton", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11-8?type=jar", + "scope": "required", + "type": "library", + "version": "1.11-8" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-registry-serdes-avro-serde@2.4.3.Final-redhat-00006?type=jar", + "description": "Open Source API & Schema Registry", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-registry-serdes-avro-serde/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apicurio/apicurio-registry/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-serdes-avro-serde" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10510117" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZJU7EOFCHQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.5" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "3abbe7fd5ec36607b8dce8ed2f4ee34f" + }, + { + "alg": "SHA-1", + "content": "9a4f05507dc14c4a80c974c0d8488b51ddbc187c" + }, + { + "alg": "SHA-256", + "content": "7bde358506ef4742598179b022d02732e64a159539524b7af6824a5081e2727f" + }, + { + "alg": "SHA-512", + "content": "6a49c254d17b20e508b6072cf0f034278439b0b11fe364ab1421d09aff7e3b5873736c0aeeee0c6ab3589ef0955f69eb0039984b6ba5c31b0614e31c71573f80" + }, + { + "alg": "SHA-384", + "content": "56b7fcb377f5b3a38f9ad92c78237d8b16962b64875ea7292c47d3632e290011da4475f874b09a25d4843d54ba75d2a7" + }, + { + "alg": "SHA3-384", + "content": "ba7f5e5fa8c3c527728ffd0e5cda85ee891688e4e6e448a761103e3e2aa06f6c7172f190cd71d9c2eaa3b581d71ee343" + }, + { + "alg": "SHA3-256", + "content": "c215df0d77b15cf7f176e9e9efb73cd9125607bba4ee9f8369050eb39c48656d" + }, + { + "alg": "SHA3-512", + "content": "6d2cc8970b2a60ff06084b8ed30b1211b533e960a9d34ec0ddbf698d9b9658eff1edc5bfa230e04402cf3697fb0f37d63b0e3ce7d622d7685668f2a08e7f7196" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-registry-serdes-avro-serde", + "pedigree": { + "commits": [ + { + "uid": "89fa9b0b31cd524ba929b13330310fcc2ecbadbf", + "url": "https://code.engineering.redhat.com/gerrit/redhat-integration/apicurio-registry.git#2.4.3.Final-redhat-00006" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-registry-serdes-avro-serde@2.4.3.Final-redhat-00006?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.3.Final-redhat-00006" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-registry-serde-common@2.4.3.Final-redhat-00006?type=jar", + "description": "Open Source API & Schema Registry", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-registry-serde-common/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apicurio/apicurio-registry/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-serde-common" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10510025" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZJU7EOFCHQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.5" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "5f9118d8ded2502f9635dbb4af20e3be" + }, + { + "alg": "SHA-1", + "content": "c3e5cd19f4533fd72a0de67279ab851b808a0dda" + }, + { + "alg": "SHA-256", + "content": "cb64592af0817b7f9399afd2e9c24857cd16de2f843c1262d114e59ca271d176" + }, + { + "alg": "SHA-512", + "content": "b342355e866dbbb5d0dcbaa67206d9aa19039aaf5243e4df9930da2a4995ed954dd66316e1925f4a97b4b7a2045cc5a74ff7ff011196d956026c8c6b07a46d17" + }, + { + "alg": "SHA-384", + "content": "3563ca7748b69f392bbfb011648142f44f1a30da4a114094811714fafdc9ccafc58b58854e2b80b15d2a8fc5e48e6534" + }, + { + "alg": "SHA3-384", + "content": "d5fadfa948272930a5e9bd5eb4b7b4bd62b6ae4352783e1f4d97fe7a3e89e2f40d184331a9495a353392ceb00b860e1a" + }, + { + "alg": "SHA3-256", + "content": "90730d2769552f59ad13b197a786394b9d22a77a0d0399d41cc28a5bf8cc775b" + }, + { + "alg": "SHA3-512", + "content": "7e4fa8f63ebfe87701e8b70d5d221570ecc23c3ce213bafed978276b640ee00a83260652531d69811ba96fc0ab3932610442af9c3b64b5273d4a8a2af52bce99" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-registry-serde-common", + "pedigree": { + "commits": [ + { + "uid": "89fa9b0b31cd524ba929b13330310fcc2ecbadbf", + "url": "https://code.engineering.redhat.com/gerrit/redhat-integration/apicurio-registry.git#2.4.3.Final-redhat-00006" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-registry-serde-common@2.4.3.Final-redhat-00006?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.3.Final-redhat-00006" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-registry-schema-resolver@2.4.3.Final-redhat-00006?type=jar", + "description": "Open Source API & Schema Registry", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-registry-schema-resolver/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apicurio/apicurio-registry/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-schema-resolver" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10510147" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZJU7EOFCHQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.5" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "674f4d2f40d754a8b42d3bc2a20c06dd" + }, + { + "alg": "SHA-1", + "content": "803461a6d299cd9fdf0d1fd5e58d627dd5e7ba6a" + }, + { + "alg": "SHA-256", + "content": "7c5d5e5751d20eddcf8a1d1432760b748d191aed9fedf5db7d9e0763097c902d" + }, + { + "alg": "SHA-512", + "content": "e42d767dff4a0a7a189e149785fa7c45dcd0d30e783cff87d83c48f5ef365a74697a3e697cd7bf7971df77fbac43ceea3c7ef2351a68cc448b3c3255b02f29dd" + }, + { + "alg": "SHA-384", + "content": "3ef182657aa02afc1b33ab060c3f068038d7dce3951fb00b1b5d4e43857aa2321282159a55972b4801eedb0b5bcac556" + }, + { + "alg": "SHA3-384", + "content": "8b8ef9769cf08ba715d64117a04a0dee23aa4f82bfc78b46080e61240b6f8927e3ca86bf2bec0fd0b19f2484ca2e5cf2" + }, + { + "alg": "SHA3-256", + "content": "1ab8693748080b9ab8c8edbd56439d584a31baccabd391b6213fd0f8fbb0bafd" + }, + { + "alg": "SHA3-512", + "content": "d7d8d87c74e9465adaf281c9b7dbc193577ac32f69c3d61a75b062fc95a666ec1f1b5f3cef14c18edc2f22dbc099b1fa35ceb8f48bdf174fd68f8bd66a8c029a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-registry-schema-resolver", + "pedigree": { + "commits": [ + { + "uid": "89fa9b0b31cd524ba929b13330310fcc2ecbadbf", + "url": "https://code.engineering.redhat.com/gerrit/redhat-integration/apicurio-registry.git#2.4.3.Final-redhat-00006" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-registry-schema-resolver@2.4.3.Final-redhat-00006?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.3.Final-redhat-00006" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-registry-client@2.4.3.Final-redhat-00006?type=jar", + "description": "Open Source API & Schema Registry", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-registry-client/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apicurio/apicurio-registry/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10510116" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZJU7EOFCHQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.5" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "888adefcea7c9eb5123a266b16438c66" + }, + { + "alg": "SHA-1", + "content": "089c5836013eb344859fb250d399436105e03537" + }, + { + "alg": "SHA-256", + "content": "dd702f4e20e6dd6e8a619188a4aadbf9d648e6d57d04f16d22addc5f75369f38" + }, + { + "alg": "SHA-512", + "content": "b359a6821766021af6bbe1b403a3505d0543f2b9957b2ccf63635601d490fd4cbb87c184e0da79f2783777755b1710ed34591453c689a2a045a744352d37f1b5" + }, + { + "alg": "SHA-384", + "content": "f502931aaf49355f1e6d81b2414bf5f02a4c3b51b035cf7d38094e34caafd65a9d25c523dac6aec1fa09f935e9379aac" + }, + { + "alg": "SHA3-384", + "content": "0a5f46ba0c554f0a159cc1fe4d055d36d6a0491d279f50448b04ced2b9f846a7656257ac808c7f2def3e9af72a69e664" + }, + { + "alg": "SHA3-256", + "content": "bd06821974fe224d1ff5b062c06006e87c03c2ed60ffe7a2e2e5820a9fa03d5b" + }, + { + "alg": "SHA3-512", + "content": "b24611160f695859086580cc050ea81b23614f434b3369fae873fc4c8e845f979cc6645bf8f3d71545c28213ce6b6ecdbde98e100f019b3996148e5f447d4e0a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-registry-client", + "pedigree": { + "commits": [ + { + "uid": "89fa9b0b31cd524ba929b13330310fcc2ecbadbf", + "url": "https://code.engineering.redhat.com/gerrit/redhat-integration/apicurio-registry.git#2.4.3.Final-redhat-00006" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-registry-client@2.4.3.Final-redhat-00006?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.3.Final-redhat-00006" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-registry-common@2.4.3.Final-redhat-00006?type=jar", + "description": "Open Source API & Schema Registry", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-registry-common/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apicurio/apicurio-registry/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-registry.git/apicurio-registry-common" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10510059" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZJU7EOFCHQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.2:1.0.5" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "70e8796b2e94df6a73ef968ff0abee28" + }, + { + "alg": "SHA-1", + "content": "49726c998dd39ce96d5e6d4420256558efc119ff" + }, + { + "alg": "SHA-256", + "content": "6fdcb06432533bc8836fcf7dd65a321d819fdb56795f7b563682a8247dd74ba8" + }, + { + "alg": "SHA-512", + "content": "aa28b93ce98a0cad2da251ce71fd434019d90bd3a35258fe1d6f408c8009d7912aa10d279dd7a57c845faeb530d9e300b85b7a19f80805576214e654949b3eed" + }, + { + "alg": "SHA-384", + "content": "2bad3126215bd339ea9df9c05c560d3417319a3323953dc57bd1406d4644c9f4542ff5152b80033ab0b75e481dea9360" + }, + { + "alg": "SHA3-384", + "content": "f55efaf74afb99dfe5b7bf8871bc0b223b8015dd6202399af90e9961d9429c07b9cf1e5d98059d4abdf427026f9e2d40" + }, + { + "alg": "SHA3-256", + "content": "9bff159ceb4c353fbe6cee6b811d517dd06cb68aa91329c6a7ff913e82231830" + }, + { + "alg": "SHA3-512", + "content": "d6a7e30e65c2325ebc04057adfb71636dff4bfe649fc4c939e82540ce5e9af8208d9047c65472f7a271734f174213065d917ee807a0a0cea40e6d69d70db2202" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-registry-common", + "pedigree": { + "commits": [ + { + "uid": "89fa9b0b31cd524ba929b13330310fcc2ecbadbf", + "url": "https://code.engineering.redhat.com/gerrit/redhat-integration/apicurio-registry.git#2.4.3.Final-redhat-00006" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-registry-common@2.4.3.Final-redhat-00006?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.4.3.Final-redhat-00006" + }, + { + "bom-ref": "pkg:maven/org.projectlombok/lombok@1.18.36?type=jar", + "description": "Spice up your java: Automatic Resource Management, automatic generation of getters, setters, equals, hashCode and toString, and more!", + "externalReferences": [ + { + "type": "website", + "url": "https://projectlombok.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/projectlombok/lombok/issues" + }, + { + "type": "vcs", + "url": "http://github.com/projectlombok/lombok" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235158" + } + ], + "group": "org.projectlombok", + "hashes": [ + { + "alg": "MD5", + "content": "92c08153ae16c161c8cc2cc8185d2724" + }, + { + "alg": "SHA-1", + "content": "5a30490a6e14977d97d9c73c924c1f1b5311ea95" + }, + { + "alg": "SHA-256", + "content": "73b6b05b6a2d365b700bab08d30f94de9d336490bc0acce5b6181fef48cbf18e" + }, + { + "alg": "SHA-512", + "content": "c551a534ad8b4275ac881001b233e3abf32d5267b14eb19a3497f477e3752ebe0b09a55b1bf59bb6e4feb17c1b9c6d8c0554a5b63fbb8b5d441f66fc038bd8d6" + }, + { + "alg": "SHA-384", + "content": "1588ecc4497fcc1193fba639a6da89dd7edc9bddcb88b4ed8253fa9e13ca62bab1e26f65064d7cbfd8cb5c70689dd3b7" + }, + { + "alg": "SHA3-384", + "content": "66206ea59c5c3048cc1b720e5c558500515f83df79215ed0ae63deaa5b711fe2aa3dcaeea3adbec8241b341ff4a7516b" + }, + { + "alg": "SHA3-256", + "content": "5c50c613749455f1ca9fae5320ba305c68abedb72ec9632634249fc6e18e9829" + }, + { + "alg": "SHA3-512", + "content": "57ccfb3a9865e68a076bce2d3e6e1cc38edae8eff3eb6d62403e5e45d971a338b575038e55b62d74fb27c1533cdf9b19061a62bb0d1a3544331cb55543183463" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "lombok", + "purl": "pkg:maven/org.projectlombok/lombok@1.18.36?type=jar", + "scope": "required", + "type": "library", + "version": "1.18.36" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-common-rest-client-jdk@0.1.17.Final-redhat-00001?type=jar", + "description": "Common utilities for building rest clients", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-common-rest-client-jdk/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Apicurio/apicurio-common-rest-client/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-common-rest-client.git/apicurio-common-rest-client-jdk" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10418832" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZCEXM46LRQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.6.3-gradle7.0.2:1.0.1" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "cbdcee4b4d29c557ac022881ccebecb8" + }, + { + "alg": "SHA-1", + "content": "be9838b2389fbbd679320045f2c6cccdd2c96833" + }, + { + "alg": "SHA-256", + "content": "d4f1e56ad1caaec0ba5e06e99032d8683a4c503440701ebd3e0335372899772c" + }, + { + "alg": "SHA-512", + "content": "f6f949cb700bf9424f06b46ab11df27f61d8d59ccbd7b7ef92ab8a18e87cb1d934feefe98a16d7d07172060d3abc7c4e21cdaadd94210cd07dbfc15967f089f8" + }, + { + "alg": "SHA-384", + "content": "e3bd3d450163fd66fb3e45a26c97a72e670bbf48df1c2023f71814dfc68c5790f74505be67531c6b15481c1c70a048f8" + }, + { + "alg": "SHA3-384", + "content": "4cbe33eb19f394dcaf92568936f56e9a5617cbb7df198ee0bd8a0506fe5b75f81b20bea9df7379a30251e8eed223f8cf" + }, + { + "alg": "SHA3-256", + "content": "1f75b725eb1c0d53469e7235967d2c5e7d5688b06e7636a3707ac7560af377aa" + }, + { + "alg": "SHA3-512", + "content": "e428204aec7fb572710cdd17c4815dd932f72382a5c1cc9658bc1e1ca0a4b64489d0a1e2791500ca1302a7f4932321903ded8c97bbc15ebea13344802bc242ae" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-common-rest-client-jdk", + "pedigree": { + "commits": [ + { + "uid": "ac8789f386d58cb17923989b501b324a5ee80f24", + "url": "https://code.engineering.redhat.com/gerrit/Apicurio/apicurio-common-rest-client.git#0.1.17.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-common-rest-client-jdk@0.1.17.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "0.1.17.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.apicurio/apicurio-common-rest-client-common@0.1.17.Final-redhat-00001?type=jar", + "description": "Common utilities for building rest clients", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apicur.io/apicurio-common-rest-client-common/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Apicurio/apicurio-common-rest-client/issues" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:apicurio/apicurio-common-rest-client.git/apicurio-common-rest-client-common" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10418834" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZCEXM46LRQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.6.3-gradle7.0.2:1.0.1" + } + ], + "group": "io.apicurio", + "hashes": [ + { + "alg": "MD5", + "content": "c1d095c613c46ab86658bb45ba59ee8c" + }, + { + "alg": "SHA-1", + "content": "07b12850503c52ff80e23c6493fb61541b3f9085" + }, + { + "alg": "SHA-256", + "content": "8814bae211970381381a03ced65dd1444d6c72e61570afdae0c96bd61d939a47" + }, + { + "alg": "SHA-512", + "content": "570539cb587f7024261b30d6d5f7f495955ffadc0fa188b35f60c0523677b06c7da18e2df38651aaa5833b4cb28dcb0bd5c0720f1d6cce5c0db0af260ff3aa30" + }, + { + "alg": "SHA-384", + "content": "64bf1445670c01a7c5247066bb17ffb7306ef087fecaa2ebadaee30280ef69883dbb58524f31c0a9e8d0cd95729a5eef" + }, + { + "alg": "SHA3-384", + "content": "e9484ffdb8b667a1781c1fab78809887a9b651c22aa2a80cfe8e284691baa320329f1d8df1edfe74741ff20a927cea82" + }, + { + "alg": "SHA3-256", + "content": "70bcce6c4ff1fb4399d8e4b2e862bc190e4993c61bba25b4371ab7a318abc393" + }, + { + "alg": "SHA3-512", + "content": "01e53a5752344b86f7d9f9a4faa4343f5a393274b766f62ac943553ea58e58361d1a62f5c20102137ecd5c3f37fd597a4d33f971c36107e42ac0799b87fdf3c9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "apicurio-common-rest-client-common", + "pedigree": { + "commits": [ + { + "uid": "ac8789f386d58cb17923989b501b324a5ee80f24", + "url": "https://code.engineering.redhat.com/gerrit/Apicurio/apicurio-common-rest-client.git#0.1.17.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.apicurio/apicurio-common-rest-client-common@0.1.17.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "0.1.17.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-offsetrepository@4.8.0.redhat-00001?type=jar", + "description": "An example for Kafka offsetrepository", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-kafka-offsetrepository" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-kafka-offsetrepository" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-kafka-offsetrepository", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-offsetrepository@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kamelet-chucknorris@4.8.0.redhat-00001?type=jar", + "description": "How easy it is to create your own Kamelets", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-kamelet-chucknorris" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-kamelet-chucknorris" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-kamelet-chucknorris", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kamelet-chucknorris@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-kamelet-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-kamelet-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-kamelet-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234801" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "19451e5646019f10219d1e85fdd88527" + }, + { + "alg": "SHA-1", + "content": "390e31f54941dc5496b9acba54c03ed81aaadcc1" + }, + { + "alg": "SHA-256", + "content": "b257350534282dd65fdf29a61c426d0f972990a61ce30fdf4ad19813337fe23c" + }, + { + "alg": "SHA-512", + "content": "1990f10409f043b22a51b5c4d923e3c8d71829de2653f0058a454f8d7ec28b59d8b87a5e49e01b25ceb05b805e8d376112c48364432c0c274280d2cdf2b58a66" + }, + { + "alg": "SHA-384", + "content": "1d0357fe0cd1d997ca0419f5b55903ae9004f6da18092b5d3fc1fc54cf8ee7bbcac27a4cbdd4024f4f307442425e6764" + }, + { + "alg": "SHA3-384", + "content": "4b4693e6609f5ca21c78bdd62ffaab9c22f98ce941f3d9ea3d0ffaa58e63f151defef48f617f1e8a0e0f3962ddb78f15" + }, + { + "alg": "SHA3-256", + "content": "b1d2bb198959bf14d57db1515bb0fdb489c3a2a35a298e4276b21cefdbf93660" + }, + { + "alg": "SHA3-512", + "content": "73c2e92090b0f0cc8c815a9103f519c8c5d032c83a3b0ad4addba091efd2d2f610d548be67ec90e77e685d8161b0c727627a541769fe1e4b4e88abed78047aab" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-kamelet-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-kamelet-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-kamelet@4.8.0.redhat-00017?type=jar", + "description": "To call Kamelets", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-kamelet/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-kamelet" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233583" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "1a19d5016162a0efbef56b8a0836d241" + }, + { + "alg": "SHA-1", + "content": "02704d5eefb3577f09bd64be11417b45fb038333" + }, + { + "alg": "SHA-256", + "content": "ff2506815ea01e831ebaee39ce34f3ae0d564f2813bd70353b1dabbfbaa33ee4" + }, + { + "alg": "SHA-512", + "content": "a4c25b86c6ffb8b7ab46e3c08035587e492aad1ee42697e9e57327524a99b780aca509a7752be7eb07e5c1bc97dac313165be99968cf17c4c0d61b8b5d89b87c" + }, + { + "alg": "SHA-384", + "content": "2c89d795ca36faea82c0aeb236c45f1317e9c0adb9d6b66453b4e7c5f761bf763afc5e0971924622e567d166f57b1735" + }, + { + "alg": "SHA3-384", + "content": "fe2e171628280d02a7c03556a83624cf260730d9f352fa1908ee04189d439c2d6d6a3aee6adb74a982bbb69d8048fbc8" + }, + { + "alg": "SHA3-256", + "content": "ec29a053d664c5df64200adbfd6bf57477bbce5471f28375e6cb4f60a72eadf5" + }, + { + "alg": "SHA3-512", + "content": "c08f0f373ddf9c673d4b5a982257db7c8718a8886c31fb23f304cb6d562a96a5b948756fab4a24c3f01becfbae1d21000d4490e914775570ea7de6f05412b39f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-kamelet", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-kamelet@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-yaml-dsl-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel DSL :: YAML", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-yaml-dsl-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-yaml-dsl-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234625" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "21f9e0c8cb98e97a398890a02dff144f" + }, + { + "alg": "SHA-1", + "content": "185cf085f44f9b422f9979b2cd61dfda99f6159c" + }, + { + "alg": "SHA-256", + "content": "9ad6aaef832fc9e64ab26ee405f54841ee617649031dd2f26701ba0c6a9705c8" + }, + { + "alg": "SHA-512", + "content": "836ef36799bba1ea7848cd95447fbf7ddbec04e2278736487e9382688aa48b73e4023ba3054f6b7544c53a0d1594c7b41c0c2925fba91a3762619c48602d807b" + }, + { + "alg": "SHA-384", + "content": "79c1ecc573a7f852c359206340ca8f7bd7828aaea979a20485efdff633936cee9f97e1299b1fbe56ef8af70a475b8d2c" + }, + { + "alg": "SHA3-384", + "content": "a0caea9603ecaad0fed7bb23ac22807e2452126d701a6ec2894244c7a3a553b78484d0e9cca0211eca659875371ce9c3" + }, + { + "alg": "SHA3-256", + "content": "a19a8fe520f884dec6ab703e76a88a8d845344c4349f80e735a9e8396a3a1517" + }, + { + "alg": "SHA3-512", + "content": "31af2364f0445ab6f51038d4082ad2a06a480e69660391b28acc1c87e8c28c862aeb53e65901a7ab8b89e3fbaa9d3d6762d4b1142109805f69996db05a37f73e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-yaml-dsl-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-yaml-dsl-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-yaml-dsl@4.8.0.redhat-00017?type=jar", + "description": "Camel DSL with YAML", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-yaml-dsl-parent/camel-yaml-dsl/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-yaml-dsl-parent/camel-yaml-dsl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233453" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "8d8d71c7efd5374c84e75e8de521564b" + }, + { + "alg": "SHA-1", + "content": "3c95ee2a2c32ea1ae37523ae513d74d01a7091ec" + }, + { + "alg": "SHA-256", + "content": "bfbc73fb99e36ccbd2e0517eebbc5d39b13fd5051a7e0400654967a6780fa4f6" + }, + { + "alg": "SHA-512", + "content": "4c68a346334a6889413c4ec12a05db8a27457fd07cf4c3486653842849ee6a7763b509761d7b670165b5143e823527d97c0511f7e7e0eb6e866bef38d5477b88" + }, + { + "alg": "SHA-384", + "content": "5601439b62bc82483792aae2436fc32c936f50c5dc2bc9ea8ba30f936f4aaec8112e0d35ef290af64c892c30c22c6a12" + }, + { + "alg": "SHA3-384", + "content": "28c5c90c5374ac62120a2dd9903fe57c68e8ac799d5283ea2e19b9d44b681cdda82c109b1aa208133b887c1669bac5e7" + }, + { + "alg": "SHA3-256", + "content": "b72cc0027850a6cc440ff8d7973f293959dd3e1003a2511fb53309ad41fb9c55" + }, + { + "alg": "SHA3-512", + "content": "9dea1226043e8e4f5d1598df3f2b06025c155c7e057152a4fd97466969a077a972e6d6a1ca455beb69b5efb377502c4c17b015ec1f21be4e33819ecaf7f1c24d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-yaml-dsl", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-yaml-dsl@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-yaml-dsl-common@4.8.0.redhat-00017?type=jar", + "description": "Camel DSL with YAML Common", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-yaml-dsl-parent/camel-yaml-dsl-common/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-yaml-dsl-parent/camel-yaml-dsl-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233550" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "5333a421c3d130f14de319afe1539333" + }, + { + "alg": "SHA-1", + "content": "1958368889435864b15c84423c13f29aea98d9ca" + }, + { + "alg": "SHA-256", + "content": "831160579fc01f91a5cb46db802cba0f6f555d58da232f803f475d77e1d29185" + }, + { + "alg": "SHA-512", + "content": "8c8dd17d5523c215a0f88e205c2097f65f1b572e7125df86d436fefbf5b0c840bb2c22b8b5f34c98a00934037d75a4ef3b2e7409ccf6efe94c58985828d7ddc0" + }, + { + "alg": "SHA-384", + "content": "e4cc9e0163ec4a0a3fdb863f7222e2cb6c238f012b6399902472fa168a7a170f4a4542cf04e0b190cb14f8366af78d4c" + }, + { + "alg": "SHA3-384", + "content": "4a52c4e9f55e460015ca9f6d8f7b9995b8645852d5d17bf54698d6a81280fdf511b4397a1c549c5b19b8d6ebe90b25f0" + }, + { + "alg": "SHA3-256", + "content": "8188f981a2e544871c6b18ca520105cdbf822ba94f20362f0e30ea08f0c2bba4" + }, + { + "alg": "SHA3-512", + "content": "549d5d18271671c8d3fd6840fc19c3c1668e3fff9352ea766a0eca2fa41cd7a6397bf81a6250ce988cef5140e1f91d5459f4e73155c56c24e92ef6eb39131d66" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-yaml-dsl-common", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-yaml-dsl-common@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-yaml-dsl-deserializers@4.8.0.redhat-00017?type=jar", + "description": "Camel DSL with YAML Deserializers", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-yaml-dsl-parent/camel-yaml-dsl-deserializers/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-yaml-dsl-parent/camel-yaml-dsl-deserializers" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233935" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "54f5d5ad0a6b32935f8104bf743a1495" + }, + { + "alg": "SHA-1", + "content": "7df3acbb7d474459dd7d531f84b2e03df4a8de2c" + }, + { + "alg": "SHA-256", + "content": "dd1c47f40a419d69ff0de8e943756953107422b33f4c280b91785874b6189ec7" + }, + { + "alg": "SHA-512", + "content": "9d15f61e996e80c906677deec85d4b7319426421c4f9fa56cd0b8fe44579d4b683fd33e536a794c59ec276283da4194db1522d480a86a1f714d879c60b4d3463" + }, + { + "alg": "SHA-384", + "content": "0b18c5ac706bb357c4f0ee483698331fb56f025894c064bb3e45ae3edfcc4c0821616706d7e9f8821cb29432db84987c" + }, + { + "alg": "SHA3-384", + "content": "c0319cd61c112f6bb4bcfb5acd8f9ef3e6fc7b03ba79ffd78b851a7a2f277a43bb060cee1cbaaf83eea25bd12ad371b9" + }, + { + "alg": "SHA3-256", + "content": "6620b614ae45b402883b07391d9a012d5e31406a5c92c85a3de2edbc6f4fc768" + }, + { + "alg": "SHA3-512", + "content": "06c925b1af1a695c8b315c6ffc70f7ca5dbc37eea4a8deeba8e9e71f56c7a62c20f40b1ba7c8433cef07527a460700f9c6bdb83b59272e7e8de4d682b8a4932c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-yaml-dsl-deserializers", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-yaml-dsl-deserializers@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-jsonpath-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel JSON Path Language", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jsonpath-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jsonpath-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234869" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "212723b61837ec180f8c22157f4104df" + }, + { + "alg": "SHA-1", + "content": "da0b9f2a6f8baec9094e2bf50a039f9c1a4e627f" + }, + { + "alg": "SHA-256", + "content": "06a7dae3fe78cb15f8267c333dd12fa47baa0e4c88c9fe57f5e66f12012778ee" + }, + { + "alg": "SHA-512", + "content": "a39ad1963f9b3d918f037fba10f560aeb99fe799b29c2cd01c019f5b2465cd574534357eeaeb151918d46eced20bd01c39a2ce3a13d48b1cbd9935f4b982b210" + }, + { + "alg": "SHA-384", + "content": "86d76677c7b59d27c63478ea278f25646f2b79a6558aa3c973edf5f10e8b3797a029c5d6bbbccddde832a186580cd92c" + }, + { + "alg": "SHA3-384", + "content": "2f20ecd877227f03d499b9d50d4f65c7b1d20eaff543c9febc3187582e739c82c7ad82f15d9a646fcfbcf021b5ba9bc5" + }, + { + "alg": "SHA3-256", + "content": "6bddf0545fe8b6039c647f70c475562e87a3e4370f75a1e721fd76a2960bc016" + }, + { + "alg": "SHA3-512", + "content": "abab99e06e66a64f0a6aac9a7936fe9decfe5970f3e62deec2237ff93cf18c862cc4388ae3e9ccf5f0a05166a3c35dd05574b11be38dc50eb060196593737a49" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jsonpath-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-jsonpath-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jsonpath@4.8.0.redhat-00017?type=jar", + "description": "Camel JSON Path Language", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jsonpath/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-jsonpath" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233739" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "dc1a4297b1029a22312b82e48eb17f7f" + }, + { + "alg": "SHA-1", + "content": "43da20e495095a41a0799ff03db50202e46b5bd6" + }, + { + "alg": "SHA-256", + "content": "562bfd283ce0dcfde28a5e8858259e77bc815e65c8d855e56add11bf85ba460f" + }, + { + "alg": "SHA-512", + "content": "e125509d90e935979ccb8724acd3011e127665595214409cb9ff9b16db18b98c189fa596dfc07103c49df4481e9cbbc305c1a1c7ee33a0211424a28981b01785" + }, + { + "alg": "SHA-384", + "content": "701e0aa619f9636d7d35c85f87d864b00335f6a4cbbfe930bd5f90c7d5fe06f3d3c5f9c988d4a955923936edb89b7357" + }, + { + "alg": "SHA3-384", + "content": "7866d962eea4ebefaf71bb4370dbf23903a49b33858eb19c746416ae4bf3e531fcb3faf48bd34bc3c83f401001c6b0d2" + }, + { + "alg": "SHA3-256", + "content": "ac948985b160d15dd17c5dd91e461551fa0ae822c11fe17fa71a04fa12646b91" + }, + { + "alg": "SHA3-512", + "content": "93dd87560581bfd06998381ec4a3680e862038da0cd1124932f2f3ff5dbb35539f5fa934c41502859e6e9d52d74a77d111f24945246fd23900fe5c4ac67163c6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jsonpath", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-jsonpath@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-load-balancer-eip@4.8.0.redhat-00001?type=jar", + "description": "An example showing Load Balancer EIP with Camel and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-load-balancer-eip" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-load-balancer-eip" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-load-balancer-eip", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-load-balancer-eip@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-mail-exchange-oauth2@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Camel on Spring Boot to connect with IMAP protocol and access email data for Office 365 users using OAuth2 authentication", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-mail-exchange-oauth2" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-mail-exchange-oauth2" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-mail-exchange-oauth2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-mail-exchange-oauth2@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-validation@3.3.6?type=jar", + "description": "Starter for using Java Bean Validation with Hibernate Validator", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233404" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "beed55da2dbef37fcb6ce786566947c6" + }, + { + "alg": "SHA-1", + "content": "e4ef4f6d2d260eadb8060c1419341d9b5667f95a" + }, + { + "alg": "SHA-256", + "content": "496d8b3b9b4615bc1cb9d53989baa37c9f007be4df41cc7e82ef71bbfa960c5b" + }, + { + "alg": "SHA-512", + "content": "828e06094121c042539d7285064e4eee61737b6b0cf1ac946757e0965e8e0c56f51bf0b40e3fae9ee3c9fe93adb27ef70fc44fdc9ff9c5231642a4a14928dd5c" + }, + { + "alg": "SHA-384", + "content": "47d0e4bdeeb3b449dfc33aa2b1399dae3db54497bfdd014ba563120ed044d75a6fec9e75c6d81473506563ad18e00b6b" + }, + { + "alg": "SHA3-384", + "content": "65e7afad9018d79aeb2fab705eac14d3bd1abf8fa75ae9517b43de1d3ffe7d79761e13ce45e17925fe131864ed13bb9a" + }, + { + "alg": "SHA3-256", + "content": "fd7a49fc155f4e8ae1b5c1b6d3cde766f16ee8e02f8edabb98e8c7942f3ab61e" + }, + { + "alg": "SHA3-512", + "content": "9c4de6a09bce95f677bc5f06ece5637085303f822598803764d56f4127bf697674db054881c7f39093d6ded768652bcf04ea2b33de0a5f6c2cf231fc971e9767" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-validation", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-validation@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@3.3.6?type=jar", + "description": "Spring Boot Configuration Annotation Processor", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13222413" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "4e0d345583aa228c96e256483e6e194d" + }, + { + "alg": "SHA-1", + "content": "3b0ecc19e201037302628e9f8084c93caf6b9439" + }, + { + "alg": "SHA-256", + "content": "4e9ad11dbe9408799d1a903f2c02c5eddcec5d21788a0d4dfac007f515a6eddf" + }, + { + "alg": "SHA-512", + "content": "f23d74774919aa22707cc3e682871721943af2a4b57ed88f5668f6bdd3aea39abe384f961a9975978f3b3e9fe5e7c1bec17e752349bb00e42aec4674cb4397cc" + }, + { + "alg": "SHA-384", + "content": "0275d043213f8842532730facb72d33a294625ffc87462c40a3ed475f8dd3c458cc8797169f2b4f8de57eefdaa46a79b" + }, + { + "alg": "SHA3-384", + "content": "72cd687da9768fac49bc17a3d37a5bff9d472e93a089e7c596aa2b85748dca0bfa3d0358bfd234c6e8671f5e1402dcdc" + }, + { + "alg": "SHA3-256", + "content": "b52e689150252bf29d5efe5ff6ce209b603d6c2c8624df9898bbf013256c8024" + }, + { + "alg": "SHA3-512", + "content": "2f0b2d633c10b4a168878cc891a0fe2066b989fce25fd41a39d734922b55a04ab95713c5cbc64c70c865654bcf4f52e87d2e444d0a02bb07e725442539b70577" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-configuration-processor", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@3.3.6?type=jar", + "scope": "optional", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-mail-microsoft-oauth@4.8.0.redhat-00017?type=jar", + "description": "Camel Mail OAuth2 Authenticator for Microsoft Exchange Online", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-mail-microsoft-oauth/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-mail-microsoft-oauth" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234299" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "f0db99db236d8789d09d17394102250f" + }, + { + "alg": "SHA-1", + "content": "20577278c81179a3055972d6584dbeee506a3e88" + }, + { + "alg": "SHA-256", + "content": "a3e068404d01e3b01aa7b5e8e1e285a03d5ba111789beacad6fc051021e3414c" + }, + { + "alg": "SHA-512", + "content": "7bb817fe44ffdee290794efecd8e5c52827a8d5d5f3e277fe55c0aaa014896e4d6d7971fd1743bd153de9663c1899304cdfb4b830a5a36813311b9b3d938474e" + }, + { + "alg": "SHA-384", + "content": "74bac066f74a7cfe6a04646742935c40b0922070aec6b6d75647a4f6bad83db65adbf555f6f4f9d690f257d08fd7a8e1" + }, + { + "alg": "SHA3-384", + "content": "78779571916ca694aa2ca6cdb2b1f0439294917026c69d0656d9727738c54de0fca5c17fed1eb09e56b4974d32589727" + }, + { + "alg": "SHA3-256", + "content": "39f82b25632774c68932f04f1af4e4a344636fb3d158bbad6fea40bdab5ffe77" + }, + { + "alg": "SHA3-512", + "content": "259f5b19e03ecac0bb9aedbcc4a9a7dd265fbd997f8f0c24c2c44e43ef03add76ae26dd9ee9a5da7e41dd6ee413f27ec52b2ae35f66ba0b52774b07d5d9fbfa3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-mail-microsoft-oauth", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-mail-microsoft-oauth@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-mail@4.8.0.redhat-00017?type=jar", + "description": "Camel Mail support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-mail/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-mail" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234296" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c580f305447bb04de2e4cae02bef2455" + }, + { + "alg": "SHA-1", + "content": "1b06021f6a53e82ffb38abaaf0118d901b3617f0" + }, + { + "alg": "SHA-256", + "content": "b4cc938281669b2b077e2608cb5e9153a995fcd04f4421139ec9929bd8f76a46" + }, + { + "alg": "SHA-512", + "content": "7e9e1beded4ed93bed8da832f62e91a8f4ea7ec139d8f1cc110af33aa0a9fb42bd2ceabe74be792c4347674aa437b4a885c0b9586672536b1f9e2cb1e99757b6" + }, + { + "alg": "SHA-384", + "content": "bbdb56e569f3d29374f0dc83d82db3a67314dfcf44f96882f622c85fb2f88faf71bb394fc0ad7f92f2f7fee410ab60f1" + }, + { + "alg": "SHA3-384", + "content": "767f02f13524ee0e2d87a15db841de2ce3f3e6ab5cf57e24ad1087a1d9e12a7ee8cab6752cc758b07781b621d7f8da46" + }, + { + "alg": "SHA3-256", + "content": "e6f18661603ce412d0786b193d2439329378b0ae22bc3c82bd47ad7a405a32d7" + }, + { + "alg": "SHA3-512", + "content": "d4bf0104f9e441d5910e87f69d9f7f44b5360750eb2a3fd65f31895974cdd6ed4e9f83366c13b451baa28d2541333a582335d9a85632a66bd1ec2ebfc04bae6d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-mail", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-mail@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.eclipse.angus/angus-mail@2.0.3.redhat-00001?type=jar", + "description": "Angus Mail Provider", + "externalReferences": [ + { + "type": "website", + "url": "http://eclipse-ee4j.github.io/angus-mail/angus-mail" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/angus-mail/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/angus-mail/angus-mail" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12020592" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A627EWOP2DYAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-gradle7.2:1.0.4" + } + ], + "group": "org.eclipse.angus", + "hashes": [ + { + "alg": "MD5", + "content": "d22ad8541b8c485d52058d645543cffa" + }, + { + "alg": "SHA-1", + "content": "c32071df001bc0fd196dc46c205a6efa84a1492a" + }, + { + "alg": "SHA-256", + "content": "3b468ccd1d309863f1cfd53ef613561e6fa3c299d64ae47c57de5e17a150ddd8" + }, + { + "alg": "SHA-512", + "content": "1d9db124d2edf0bbdb8e14cde050f11a020cddbe19c0eaecf4d0f59bf592cb7fd55dfaf9aa0223e567a3f7d7101ecaf8ee85e7b91624319da82d2f1804d98a7c" + }, + { + "alg": "SHA-384", + "content": "ce16d5208225e4f0f66a6736da8dc04672afc45718a1e99d0c69567a5f23a5bc8297c4d27b6f8e044304307981c7be03" + }, + { + "alg": "SHA3-384", + "content": "10ff3fa2cbe990156606a3817d00e30af1d17402874cc7009df22ff9c96a80192a9460d9e2b4258f1053f231818d8cdc" + }, + { + "alg": "SHA3-256", + "content": "aad65b6db642d08c696e46542763bffbedcb1f558dbb4b45298ccc3fdcbfe0db" + }, + { + "alg": "SHA3-512", + "content": "84c34dc39551f4c698d3342b346b2a5011c8f51fcc65d30e74f4c06a99ba2a24f1a6c1aa44113fdd5d36d0d00f8208b25cb14896d012c00916cdca22fcb9a6ce" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "angus-mail", + "pedigree": { + "commits": [ + { + "uid": "3c95f08a9b8f2ec86c232ccacbba729f84bd246b", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/angus-mail.git#2.0.3.redhat-00001" + }, + { + "uid": "07e957b5b5058056630206b4f441fae62f33012e", + "url": "https://github.com/eclipse-ee4j/angus-mail.git#2.0.3" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.angus/angus-mail@2.0.3.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.0.3.redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.mail/jakarta.mail-api@2.1.3?type=jar", + "description": "Jakarta Mail API 2.1 Specification API", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j/jakarta.mail-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakartaee/mail-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/jakartaee/mail-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11999755" + } + ], + "group": "jakarta.mail", + "hashes": [ + { + "alg": "MD5", + "content": "288a687deb06b87602ce14cd03dddff4" + }, + { + "alg": "SHA-1", + "content": "a327aa5f514ba86e80d54584417d7376ed2bde0e" + }, + { + "alg": "SHA-256", + "content": "8051b58d75f982f9a5b963b3765426e824b2a64865ef0af17205e455b98db05c" + }, + { + "alg": "SHA-512", + "content": "841a9784cfcfa1723d1c634b094280fabe6ecfdf640513a76a6a39b1ad29d59c1207c086cd66ec8e7f161ffaacd9e1dad12828ac4c57583e9d8593f12ae6460d" + }, + { + "alg": "SHA-384", + "content": "dd18dbcf72559ea405946a6d73dc60e672b3bc222e32944b2bf51e81cd41348ad7873b5b2a9d86f0440b44bcd6e45176" + }, + { + "alg": "SHA3-384", + "content": "c02d8861b3c9fee8f18bfcb41947d2a83eeaed4ea9d1bb8784525c7fedd2ccab6b704663ff5a452c78537d1b79fd960a" + }, + { + "alg": "SHA3-256", + "content": "c10cb31acf35574a203d85427d81e36162edc44b9f6cd9b422c19144b8e7ae4b" + }, + { + "alg": "SHA3-512", + "content": "4034e1d5280fde464902035e7491e997ffec62a327844deec6f7e64b7b2d8d1d9fe505f10691caf7223ec06e6d27ac263ae1341582a5c48adad1c7635c13f0d5" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.mail-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.mail/jakarta.mail-api@2.1.3?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.3" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-master@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel's Master component and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-master" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-master" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-master", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-master@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-master-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Master Support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-master-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-master-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234619" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "a79104de359fc191cde46c883383f3a6" + }, + { + "alg": "SHA-1", + "content": "a0c069e1ef61fa2700cb44bb622ccdee675271bd" + }, + { + "alg": "SHA-256", + "content": "1d072fff16c1a49a60145644576f22da4783f0ad51b0ce048d01f383846953e5" + }, + { + "alg": "SHA-512", + "content": "70420118fa0ebc4724de64f29e23fc072089e2e5285e16ecb74baec16fffa7a14f85cbdab4850facea64ad06f0ab9ffc40587dd40e7f48014cacd6674afc2cb8" + }, + { + "alg": "SHA-384", + "content": "4d9ab934051868fa6b7b64838c8ca6231c40f65ed2c4843c6d2fb04328410dd49f469d6a507298925273282763ea15cc" + }, + { + "alg": "SHA3-384", + "content": "a68bf7ebe01f10bbd669728914acc2c712ec13af8e2c8dd25d33a1429b237afc4e68eb97d0067504167a74f5a71649aa" + }, + { + "alg": "SHA3-256", + "content": "29d04546a0473a17fc0b5684562589153d0f9b971dbe698996c2a6c527227dbe" + }, + { + "alg": "SHA3-512", + "content": "4ec04145ee2054ff4c08e5fd407146ca42e31f231fba25c133c1b68b707b1c52f2b76e57856206dbf01dbe250921e8d18888bbbe577809f47fa19f256601c42d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-master-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-master-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-master@4.8.0.redhat-00017?type=jar", + "description": "Camel Master Support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-master/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-master" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234150" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "8cb2f684b1d1cab9be6917755f0beaff" + }, + { + "alg": "SHA-1", + "content": "4bd327d5e11c44692c6bba564e169800e27ecb2a" + }, + { + "alg": "SHA-256", + "content": "a6846f0bad290a74f8f22de8d11565592e59bccaf55ed0b9f6ec23926bd8ee37" + }, + { + "alg": "SHA-512", + "content": "22b94eb25ea1dbb9d096bdcb5824d1bcf1bb6d90b8358ca2800f5d7b30757618e8756915eca55f793c317c88dc67dc7630bf1fd2d9156c8ea6bc7a04f18208fc" + }, + { + "alg": "SHA-384", + "content": "bd20454da4cb32deb70b91d0cef05bd6627c8ffaf2fadec25769a205f6b0fce672397840f586935517e9a2291bd4059d" + }, + { + "alg": "SHA3-384", + "content": "605dae97ec740284c324d855796f31fb90bc4c893a998f4aa7ca76751caf348e4252640e72355fdccdecaae43f6e2969" + }, + { + "alg": "SHA3-256", + "content": "107790dbc151e084899c8dc9476e5e19802ab580c56eba6c8d3b660503426964" + }, + { + "alg": "SHA3-512", + "content": "4892dd1db63b4646029632b68dede2c35a4afb2f7259d140f1514d65de44d181955ab9e75bb8252da08b4adeaea40e7fdd144356ca0a2d14bedf0d0e6ec58590" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-master", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-master@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-file-cluster-service-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Cluster Service based on File lock", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-file-cluster-service-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-file-cluster-service-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13036554" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "f32a30d095130f301e3d4234830a1704" + }, + { + "alg": "SHA-1", + "content": "600377d41f84ae839772f86262bc54cded10848e" + }, + { + "alg": "SHA-256", + "content": "193b21312a51f5eee4cbe3616843e288e62e91cc40aafd64d3bb3818ad81d9fa" + }, + { + "alg": "SHA-512", + "content": "92feb16237ee22c2424c32ea9455e8929645954cc7e756d3f799d156a96e4ab373b8c2220f20f1cbccb4af6a88349b95a7a15a1771eb5664557530ec0785ff25" + }, + { + "alg": "SHA-384", + "content": "96103ec3f49ccbb95101606b9a52c2999c96b8e23606f78f41b1b59ca527279c8216b69823bc02946c42ddfc51e69582" + }, + { + "alg": "SHA3-384", + "content": "4221feac242291cd087ac22cabc6c9882177eb74277bb21fc92ddf77c11f8640ae3cfdc1acd04bd4f656a136508bf934" + }, + { + "alg": "SHA3-256", + "content": "8d3234d93699eaf2cda53e95a66b53b75ef5b3c95616441120fad70155f2611d" + }, + { + "alg": "SHA3-512", + "content": "353beb99dea3eb0f278d48bddd61938c4fc152f5d90e84fe0b1aeb1d6b89530c413f071d5cc85ca340c71568970b4b2e5852853eb8d4140ad884d6a57cb32cc2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-file-cluster-service-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-file-cluster-service-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-metrics@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel and Spring Boot and report metrics to Graphite", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-metrics" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-metrics" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-metrics", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-metrics@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-metrics-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Metrics based monitoring component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-metrics-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-metrics-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895402" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "34a34023458a56a84f4564c9650fa132" + }, + { + "alg": "SHA-1", + "content": "4a125094edf3f253406638eb3d272e6461e5bf11" + }, + { + "alg": "SHA-256", + "content": "5cdc59c2bd956aad4c24eb73fec4e5faa65ab7de6f604a8c117f2956c4c1d9b9" + }, + { + "alg": "SHA-512", + "content": "b515f8eb7947128f940ff595c2d103b430bd5d8ab00ada327a720dc4913bf500a8a1432617767871320a21fb406f8a435ab66ffad16c3623237c99d9678a4ba3" + }, + { + "alg": "SHA-384", + "content": "dd5e41e796583963d979ba7bb0bf5bd723f337981e79a888959d9f82554fba64e1c2bdeef2503735b89a8a9b07ee0f25" + }, + { + "alg": "SHA3-384", + "content": "b9dbb757e1137aa4c751cb729240f4044aa7c7cfb06038f46d09eab69b6ed10868ddae60974e5b2b1f9d9ef05010bd9b" + }, + { + "alg": "SHA3-256", + "content": "22b22b18e6dc497dec1c7607a8df7da103c00fd523b5826160779bf1c8093bfa" + }, + { + "alg": "SHA3-512", + "content": "bf1987eb98332cee4aadeb3c124deaa514d2667f3b91eab10a605235f2abda32106ad81596d0d27abf9815918e033ea30c55b57dcbc042f8d60d1a2415ef4071" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-metrics-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-metrics-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-metrics@4.8.0?type=jar", + "description": "Camel Metrics based monitoring component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-metrics/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-metrics" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866028" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "006c3192301bee5d16019cb2415706f9" + }, + { + "alg": "SHA-1", + "content": "82b48067814d9aaba287dcd5ca50a731482e616d" + }, + { + "alg": "SHA-256", + "content": "e4b53857ea102332ffeae0cc382357a9d417bb4af7c0bbd43ddc48c8f4424143" + }, + { + "alg": "SHA-512", + "content": "84557d0191922f9216bb14c31c45e62e6184a081909eab8ba4169beb41a88bfcc857f26b10658bc47a66c2ccda2441a803b09f0a6f902bafbebf31f39db7a853" + }, + { + "alg": "SHA-384", + "content": "6521a7c4b5a36a8ab76470967b714b188626e661d3be9b7af78b8378f2602ca0a7c7ab36b0ac8f1934a1366b57f81f87" + }, + { + "alg": "SHA3-384", + "content": "528a1be22eff302ac9c16359d48a438d57f8df4e16065d0bf7ea22f964f67efa977746eac6fff495884fc72ecb12b296" + }, + { + "alg": "SHA3-256", + "content": "1a94646f745b7e823e5afc8ee789f904db408fce52b7d01062658f9bd40f6e2d" + }, + { + "alg": "SHA3-512", + "content": "8c900fd50ee45dc5fb66a52db825a197b02ba21de8b5c2b8a1a2d06e743a65b126d27ce4aaaac059e5c42e9bf91d106c19549efc37daf3dc5978ce47e597e5d0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-metrics", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-metrics@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/io.dropwizard.metrics/metrics-jmx@4.2.27?type=jar", + "description": "A set of classes which allow you to report metrics via JMX.", + "externalReferences": [ + { + "type": "website", + "url": "https://metrics.dropwizard.io/metrics-jmx" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dropwizard/metrics/issues/" + }, + { + "type": "vcs", + "url": "https://github.com/dropwizard/metrics/metrics-jmx/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12731801" + } + ], + "group": "io.dropwizard.metrics", + "hashes": [ + { + "alg": "MD5", + "content": "c6a7973246b59ac961cb758552d623d9" + }, + { + "alg": "SHA-1", + "content": "10f1376905dee23aefd18bb83fa90654acc62742" + }, + { + "alg": "SHA-256", + "content": "50216d0d277d3698a4b7111a192ef27e6449470e98be76aa03ded5d683e58d7b" + }, + { + "alg": "SHA-512", + "content": "56cbc225677a1e6401d24a45cc0853185301f3183bcf41075ab69cb81e823a9f82ac287da8e497a61e8eb203f5e7af8852d31f9008a11366f7bc8285bf088ce3" + }, + { + "alg": "SHA-384", + "content": "605e3936a46622d2e4bfa314d340c012c23a45d2f60055aabc56a39778183334f569747c4b990c2aeb30fc0a11751798" + }, + { + "alg": "SHA3-384", + "content": "7cb339dbf934dd337c021b89712c58db28f3b44e7b1e694ac9ed2666797825822ea6f8243a6b3d5aa27680674f09b2bb" + }, + { + "alg": "SHA3-256", + "content": "57937b9f43d6c25cc0e4c11ab88c94c89895febf1f5ecef2e640bc00a8d57312" + }, + { + "alg": "SHA3-512", + "content": "1b8f7866293789b3e2758bc3a3de3d55ff49c22c5418f5050bb27f5678f758cfd6a9a4374845f4668fc2976a167f458c40b98513cdba8ff73eec0850ecaa85cc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "metrics-jmx", + "purl": "pkg:maven/io.dropwizard.metrics/metrics-jmx@4.2.27?type=jar", + "scope": "required", + "type": "library", + "version": "4.2.27" + }, + { + "bom-ref": "pkg:maven/io.dropwizard.metrics/metrics-json@4.2.27?type=jar", + "description": "A set of Jackson modules which provide serializers for most Metrics classes.", + "externalReferences": [ + { + "type": "website", + "url": "https://metrics.dropwizard.io/metrics-json" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dropwizard/metrics/issues/" + }, + { + "type": "vcs", + "url": "https://github.com/dropwizard/metrics/metrics-json/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12734022" + } + ], + "group": "io.dropwizard.metrics", + "hashes": [ + { + "alg": "MD5", + "content": "44b1094312540150dd06629a8b56adcf" + }, + { + "alg": "SHA-1", + "content": "4ef09cbabafd8e83d7c2414374595ff5d5964002" + }, + { + "alg": "SHA-256", + "content": "55cc21b02c692edf8c2a0b6fb8ff506f738c2d849ea12bdcb89e66c0ba0f2633" + }, + { + "alg": "SHA-512", + "content": "2e69b8625b160a3c752f0790fbccd7456f39bf19be31d0ac364444404033445679d6ecb020394768c6cfe9f783866b442f8231dfbd56f787d935ff31571cd983" + }, + { + "alg": "SHA-384", + "content": "670eef89a867fe7963872e55e3ef5a3eb62f50915261edee564bca640380cbfb20b0b75e0101ef747aaa0ffa7bd2f23f" + }, + { + "alg": "SHA3-384", + "content": "df14125af74d1d63f23c2de97c41a6cbe5de069f6ece8728eef8d59c2a88bc0242f8726c4e304a7612f284da933ca02f" + }, + { + "alg": "SHA3-256", + "content": "1a0bb6e4140c721037de236e5e668f4878c30df6fc2098e1bc5dce811c8fbffb" + }, + { + "alg": "SHA3-512", + "content": "a008939cc74d2a738ea7e871fbc98a03c669827a675d5c7d0e618117cc86ec7b1fdf0336771c7635d41c2fe447b785d4fc5b9a9637722f86cba9c1e13650ff1a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "metrics-json", + "purl": "pkg:maven/io.dropwizard.metrics/metrics-json@4.2.27?type=jar", + "scope": "required", + "type": "library", + "version": "4.2.27" + }, + { + "bom-ref": "pkg:maven/org.jolokia/jolokia-server-core@2.0.1?type=jar", + "description": "Jolokia :: Server :: Core", + "externalReferences": [ + { + "type": "website", + "url": "https://jolokia.org/" + }, + { + "type": "build-system", + "url": "https://github.com/jolokia/jolokia/actions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jolokia/jolokia/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/jolokia/jolokia.git/jolokia-server-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11923170" + } + ], + "group": "org.jolokia", + "hashes": [ + { + "alg": "MD5", + "content": "ea1d8c20a14c23b4b2807de00dca2306" + }, + { + "alg": "SHA-1", + "content": "81ec9d16ecb5e694102edcf59ca70c5d6017360f" + }, + { + "alg": "SHA-256", + "content": "c5d4067a5b01dd31a9651631b80ff1e1266e18d6e8107cfb236478c2716f3f77" + }, + { + "alg": "SHA-512", + "content": "a729628f5a947fee86d4eca784bdd1963f4db12c80eb6d5ab6d707a8ceb09fa81f1ae6415d38bf0c842138d11e1014d80fc996f616355c0b3e103ac48b917dd9" + }, + { + "alg": "SHA-384", + "content": "6fc8a2490ec5c7d191fa91c3a01e1e8fc4bc9489aea64e95aea971698b9ef901bca23df46e50faffd4cb9d406d9350d1" + }, + { + "alg": "SHA3-384", + "content": "0ea7778f6b5f8be764ff3f8a19c51133030efdbc2810561327804f348059b1f471195761e28e0b69ccf9f619d341b2b4" + }, + { + "alg": "SHA3-256", + "content": "c97fb264e53ab1db4b8cee630c37aa4736542b203e564569d94c1c9ada400b05" + }, + { + "alg": "SHA3-512", + "content": "b6eff5edbff6f86dba754d4ad7bd502429d3a0b1414b74ceb9705367abf9cbaed9b3bffbd7255bcf7392fb57aa20983c8fa898febec21e305a705919cfc1afef" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jolokia-server-core", + "purl": "pkg:maven/org.jolokia/jolokia-server-core@2.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.1" + }, + { + "bom-ref": "pkg:maven/com.googlecode.json-simple/json-simple@1.1.1?type=jar", + "description": "A simple Java toolkit for JSON", + "externalReferences": [ + { + "type": "website", + "url": "http://code.google.com/p/json-simple/" + }, + { + "type": "vcs", + "url": "http://json-simple.googlecode.com/svn/trunk/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/29434" + } + ], + "group": "com.googlecode.json-simple", + "hashes": [ + { + "alg": "MD5", + "content": "5cc2c478d73e8454b4c369cee66c5bc7" + }, + { + "alg": "SHA-1", + "content": "c9ad4a0850ab676c5c64461a05ca524cdfff59f1" + }, + { + "alg": "SHA-256", + "content": "4e69696892b88b41c55d49ab2fdcc21eead92bf54acc588c0050596c3b75199c" + }, + { + "alg": "SHA-512", + "content": "f8798bfbcc8ab8001baf90ce47ec2264234dc1da2d4aa97fdcdc0990472a6b5a5a32f828e776140777d598a99d8a0c0f51c6d0767ae1a829690ab9200ae35742" + }, + { + "alg": "SHA-384", + "content": "cec0c65bc033bf449a9214c37f4a4f1b8e6d90120cc613b677cfbe92f2b7bb68285d1d910146f1fd7ea7c622f898dcb5" + }, + { + "alg": "SHA3-384", + "content": "f489282b37e79b1f5d9ac27b66b61ca4bdc7697e7e27724e3dbc96fd5fc43e5c003b8dfbaa6947a9112d2aee15858ddf" + }, + { + "alg": "SHA3-256", + "content": "0de6743867e024955c58f771a38bda33c8e975e9066765db36b0db3e519f9534" + }, + { + "alg": "SHA3-512", + "content": "2566d35f2f426dbb5bd2a6cbab7ba1b78e503a315bcd784054dadbce7f98f41ec2cd1bb45be1677fdc909fb26e060b35b0064a3cd8c5dc6029cec891dd8ba77b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "json-simple", + "purl": "pkg:maven/com.googlecode.json-simple/json-simple@1.1.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.1" + }, + { + "bom-ref": "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar", + "description": "Metrics is a Java library which gives you unparalleled insight into what your code does in production. Metrics provides a powerful toolkit of ways to measure the behavior of critical components in your production environment.", + "externalReferences": [ + { + "type": "website", + "url": "https://metrics.dropwizard.io/metrics-core" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dropwizard/metrics/issues/" + }, + { + "type": "vcs", + "url": "https://github.com/dropwizard/metrics/metrics-core/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12731799" + } + ], + "group": "io.dropwizard.metrics", + "hashes": [ + { + "alg": "MD5", + "content": "b02147b5b36ec7a576f6e628fed57d69" + }, + { + "alg": "SHA-1", + "content": "55d29cfeb32ade650d9e73b94a81e4c85a5cafac" + }, + { + "alg": "SHA-256", + "content": "48c5c93ad60a6cb0dd5412cb2c02c63cd41b0cc4e3ccaa114bcf075cceda5147" + }, + { + "alg": "SHA-512", + "content": "42d29913ad89b746b81177d7a9b7825211f7330fd1473d82702f2051e3280431b8cc2a8cd4d932a3ce4006695d7baae003cf24afe229c670b62018b9de5fb367" + }, + { + "alg": "SHA-384", + "content": "fa0120658eca36e51781c97e0ab68160c8fbefdd6bb62ac8b20b616d704a0acb174619f3aff1610fb43c368a9fe4a65c" + }, + { + "alg": "SHA3-384", + "content": "406d8a10defb5d5f892cf29326623416d04c50771fca49d470541c3090ae00edcf51998b0b0ef436973a272e5d52800d" + }, + { + "alg": "SHA3-256", + "content": "ae43919287c1bb8a95674c1d3c394fc748e769deb76895de9d8506d6dbef72e2" + }, + { + "alg": "SHA3-512", + "content": "beda6598452de48f48791f7229446bcb507e6599fc7d0fa6aeeaaf0ee914a34674c80b3fd85c75684aad6de7fc40ecc3421a3a4a7dc37104c1e49534af4d0cd7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "metrics-core", + "purl": "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar", + "scope": "required", + "type": "library", + "version": "4.2.27" + }, + { + "bom-ref": "pkg:maven/io.dropwizard.metrics/metrics-graphite@4.2.27?type=jar", + "description": "A reporter for Metrics which announces measurements to a Graphite server.", + "externalReferences": [ + { + "type": "website", + "url": "https://metrics.dropwizard.io/metrics-graphite" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dropwizard/metrics/issues/" + }, + { + "type": "vcs", + "url": "https://github.com/dropwizard/metrics/metrics-graphite/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12734020" + } + ], + "group": "io.dropwizard.metrics", + "hashes": [ + { + "alg": "MD5", + "content": "ac5d3079803c3b768cfb46e797470b95" + }, + { + "alg": "SHA-1", + "content": "fe71b40878454ea54a091fefca42df04de8a1b75" + }, + { + "alg": "SHA-256", + "content": "22d42609951aa2cc7ff130a41c10eff09ea9c0c2c644c2ea8e22e1120bf7a647" + }, + { + "alg": "SHA-512", + "content": "8ad669592eb3283f2ad870e1725dbb62126bdcfb7647d6c047e808679d061913325d15ccc22350f05115ebdbfd9b75c3524c19bfbda4148d64dacb4b8c3b5fbe" + }, + { + "alg": "SHA-384", + "content": "ffd824b66e8eda10c7eb0446cfc030a5225729ef88c43167d4b0038665dd5ef01830a9ad8bec3014c171f8130e91f6a2" + }, + { + "alg": "SHA3-384", + "content": "83636ee943339c209930d71d001c33b2cd4afac6ba3fb8399fa8ba438391a6f6a372655d9495a1939d01305ae8ace5c9" + }, + { + "alg": "SHA3-256", + "content": "a24e624920bb54ae7755c59b2657e042252bd615e385249a053f1f8204e54d17" + }, + { + "alg": "SHA3-512", + "content": "67f051ffdd6fe4181e009595dd85321ec59c569a1e5f76109a496fbb09d109617dd1e25df594b5c65e5cf77adea7e7f97c29de1dfe301037be2787bf9bf59293" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "metrics-graphite", + "purl": "pkg:maven/io.dropwizard.metrics/metrics-graphite@4.2.27?type=jar", + "scope": "required", + "type": "library", + "version": "4.2.27" + }, + { + "bom-ref": "pkg:maven/com.rabbitmq/amqp-client@5.21.0?type=jar", + "description": "The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.rabbitmq.com" + }, + { + "type": "vcs", + "url": "https://github.com/rabbitmq/rabbitmq-java-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12718870" + } + ], + "group": "com.rabbitmq", + "hashes": [ + { + "alg": "MD5", + "content": "058d9f1fe66060cb20d3c6b2f7ff4327" + }, + { + "alg": "SHA-1", + "content": "070797e8a66e800391940edcf21f31423b9768f1" + }, + { + "alg": "SHA-256", + "content": "ff0286ffa02a97e94a91728c4db79bc8d4b91a3479849f443a87e4e8ecb9de74" + }, + { + "alg": "SHA-512", + "content": "e77c9bcbea09e54db76e0c8bb7d68e57e883fde510eac30663078678905df1eb6bc76e8896625cf571c19e997e462b5dba9737220a9df4b36ee38124048d4562" + }, + { + "alg": "SHA-384", + "content": "c863e36377db289740a6b7dee720db5429e8cb02154966671e2dad011d822479651ea699e12f9c482b82dffc42fd02b5" + }, + { + "alg": "SHA3-384", + "content": "f41f36799c93dff5018f3796c57a1130b8d567adbbdfa586bdbb8679a8b9c7d08221678ce6b36058980bc1f55a9a64a7" + }, + { + "alg": "SHA3-256", + "content": "3928404f3f0ea8c25d61da8c83c559da508dafb2cc93802092eb19b62500ca78" + }, + { + "alg": "SHA3-512", + "content": "8936aadce3b15bd04bdf345c422ea29bd453b82436d8476223229c3a7a3577d9e5c21d7b7993f7d63a87f438b232411229498905fb771b7e7a944888600541a3" + } + ], + "licenses": [ + { + "license": { + "name": "AL 2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0.html" + } + }, + { + "license": { + "name": "GPL v2", + "url": "https://www.gnu.org/licenses/gpl-2.0.txt" + } + }, + { + "license": { + "id": "MPL-2.0" + } + } + ], + "name": "amqp-client", + "publisher": "Broadcom Inc. and its subsidiaries.", + "purl": "pkg:maven/com.rabbitmq/amqp-client@5.21.0?type=jar", + "scope": "required", + "type": "library", + "version": "5.21.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-monitoring@4.8.0.redhat-00001?type=jar", + "description": "Example on how to use Spring Boot's Actuator endpoints to gather info like mappings or metrics", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-monitoring" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-monitoring" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-monitoring", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-monitoring@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.prometheus.jmx/collector@1.0.1?type=jar", + "description": "See https://github.com/prometheus/jmx_exporter/blob/master/README.md", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/jmx_exporter" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895378" + } + ], + "group": "io.prometheus.jmx", + "hashes": [ + { + "alg": "MD5", + "content": "22fdfa0428ff6f0225285a7487f62f28" + }, + { + "alg": "SHA-1", + "content": "5c4539e658bfa04629c92b455c208dac672a56f5" + }, + { + "alg": "SHA-256", + "content": "0827ae78d9387a0f41f3ffc45d9a23abe907ccee0a6764e9c0ad4220ac52c907" + }, + { + "alg": "SHA-512", + "content": "a994ba56433e18ce116799cd849e0fcec397098c6e698f655c2cbb4010b4d0509a83baee492d3d1de707f17ff5219bd072d4b940008a584b5f27f8cd4189cd86" + }, + { + "alg": "SHA-384", + "content": "1eb156beef73165ca1369d681e5cd4d2907dd4d2bb8b988cd324e0a020d70bdc0fd002f2aef450949b4f0725dec2bddc" + }, + { + "alg": "SHA3-384", + "content": "f1e39da941aa1f128d2e2ba4ac53c3bd3261344223c69350db35c933a3c111fd03ec59d3bb5898c87b61d7776cc48457" + }, + { + "alg": "SHA3-256", + "content": "63a54c8126ecbecd0e3fdbcc6ccb61b232e70ece2479ba7d5c3c00dd3482ee8b" + }, + { + "alg": "SHA3-512", + "content": "3993ba10f819cd637fa6b3d7b4e4da32c981d0a361cede35e040418198e09ff6f1bf96ce72ac78b8ab0baa70003f00a5382faf6769a381707023fc3329f246b2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "collector", + "purl": "pkg:maven/io.prometheus.jmx/collector@1.0.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.0.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-initializer@1.2.1?type=jar", + "description": "Initialize Prometheus integrations with distributed tracing libraries.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-tracer/prometheus-metrics-tracer-initializer" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235153" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "980aa4354b34dc0b91e33531b3806668" + }, + { + "alg": "SHA-1", + "content": "954ce111b0bab90c48a06802fb0dea033a559970" + }, + { + "alg": "SHA-256", + "content": "ccffb33a9f843f6087eba11a41b628e6b27177642738d7d4d17966d4669c48fa" + }, + { + "alg": "SHA-512", + "content": "745a46cba8c1855f2052a6da95c91fee8d9fff713faa0212edbaff7406b78231ecf99a900d0549db110a8c59b8376b02ec556293a391e7951008ef897a058070" + }, + { + "alg": "SHA-384", + "content": "78ad0c5ddf7838353756e2807b07ee0d9ed0d8aed07441de6cc6b6a417a881f449c4bd9b731bc3fc78fd40e09240dbc7" + }, + { + "alg": "SHA3-384", + "content": "c53e05919c786239b54c60d577c913728c3ab1297cdd004745540930299ccc681bd260b14eb35fd4d04ba461b169e1a7" + }, + { + "alg": "SHA3-256", + "content": "c14cfcba29526afebbd588d62e9a277fdbb4eedadaf8693139e078b3e19dbc92" + }, + { + "alg": "SHA3-512", + "content": "d43b67d5122316134a04ca065795cb358fb05195c7e598e1d37c2a008b20c5167ec2b9d37cb9a71bf44c9b1e648f034ce66a2b59a6ef2765683e07223f62587a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-tracer-initializer", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-tracer-initializer@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel@1.2.1?type=jar", + "description": "Prometheus integration with the OpenTelemetry distributed tracing library.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-tracer/prometheus-metrics-tracer-otel" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235155" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "4296005186649014e4b1ffa018bd5b33" + }, + { + "alg": "SHA-1", + "content": "08e6329b6fdaf02c4f1661d72fe360e8edbd2f08" + }, + { + "alg": "SHA-256", + "content": "ae85485421daadcf89574c3cf3e3ec80c12a8149dffc9eb64866c0ffa2951da9" + }, + { + "alg": "SHA-512", + "content": "c95eac4bb7cc80bcfb9495b1dfe9c8de2caa5b19ddddb73505ba2a36b091f8a578faf0d3e86858770ca0402e30fb650d34388d6a17bd83d257fece7616444e7f" + }, + { + "alg": "SHA-384", + "content": "51ac1948a2a87ff95bdb68c7307c86e723a563670c84b997bb85085887c6a949c948eaaa80fdee9885ef1dac55aea1ea" + }, + { + "alg": "SHA3-384", + "content": "b745ca7c94c0d65bb2a85b6217071c7f1f9ec498504138b161ba6748b848f34b6d05bd91ab358fa62afb5b6b8693cd33" + }, + { + "alg": "SHA3-256", + "content": "2cafdaea7f3e6f69151504e28af32f08d59c54a4bcf34802c7972ee2da3ab452" + }, + { + "alg": "SHA3-512", + "content": "45f93ecaddb54257fc4dc573349e0620e6efb697cb4ad401b34fe97856c7c7d63e611062e80a72e86c5813af6f560607c998238f7ba7ab0b369153f280b8043e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-tracer-otel", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel-agent@1.2.1?type=jar", + "description": "Prometheus integration with the OpenTelemetry Java agent for distributed tracing.", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/prometheus/client_java/prometheus-metrics-tracer/prometheus-metrics-tracer-otel-agent" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235154" + } + ], + "group": "io.prometheus", + "hashes": [ + { + "alg": "MD5", + "content": "673eaccf94c1fb19bfb700de54474e10" + }, + { + "alg": "SHA-1", + "content": "d7f76c08a21a391e5e5cf221df2ffe85f1e23b8c" + }, + { + "alg": "SHA-256", + "content": "494470ea8e2d48a0ca7caee0482c5ea3686fb306d003c189d60a31c289ff15de" + }, + { + "alg": "SHA-512", + "content": "1f069002e1473e66897b2a9172e34b5d99908c53b8997f1a85ffae0733b4c93e17b86261bf039c1b1a97a32b94871d1e9c283fdb6bcb32d7ff4363ae68265234" + }, + { + "alg": "SHA-384", + "content": "a055c6aef0a78329acecbeb91d1483eff8dc32e27e3070c9e55d821cc40d4e842024af8c76f75be1d841e04ebbd69dce" + }, + { + "alg": "SHA3-384", + "content": "88ca0fefc13a791c4bfb89be17798c5fbd2fdec93c24bf74d49692bcc07bb8f53204c65e65011ecb57b5ec2560fb6b7c" + }, + { + "alg": "SHA3-256", + "content": "ae39cd7d42747114603632b3a324ae41800e14ec93da3a5220893ee97e8ead43" + }, + { + "alg": "SHA3-512", + "content": "b8b088ae5c4bd7cec17b8a0da8ef23aad536694704927b9523f43561a077f524c78df0d209104d53bfd485fb92396c8319b8ea1cc617c4792a9a66b53e326bf8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "prometheus-metrics-tracer-otel-agent", + "purl": "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel-agent@1.2.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.2.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-muti-datasources-2pc@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel and Spring Boot using multiple pooled datasources with two-phase commit", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-muti-datasources-2pc" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-muti-datasources-2pc" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-muti-datasources-2pc", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-muti-datasources-2pc@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@3.3.6?type=jar", + "description": "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233402" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "43053693ca5a76b90a88ec5b8b1a23fd" + }, + { + "alg": "SHA-1", + "content": "0e5e6716f91117b1377d91a89d5fdb85229273b6" + }, + { + "alg": "SHA-256", + "content": "64338b755c57dbe17aba3b91d241ca906931896f736cb1a402b0e34bd0d472f3" + }, + { + "alg": "SHA-512", + "content": "85d66eefba288ed31f10bde1a91c97c0d324dff43e0b83f64d73e83c1bfa35f96b210646527c7b1b772f675cc11ab2823151b42af09cf6c807a89b85bb93d7bd" + }, + { + "alg": "SHA-384", + "content": "d8799af9f5a63050a9808562b440b98b8deceeab829e94d1340caf26b7889460d541bcc22f2a6d4528af30c6eaa00892" + }, + { + "alg": "SHA3-384", + "content": "93eaea1b1ab76402029fc594e1c8af4e2d64a3f5dc3ad15e7bb9e065ad2b24b94c6b80719d9d60de877b5bb082c60ba0" + }, + { + "alg": "SHA3-256", + "content": "4a10758224fe6420d39c77d2721a693814609d6a6328f65848886abbdea1bf4d" + }, + { + "alg": "SHA3-512", + "content": "c83abfc7cd3fe223f14d3df460bad542ba11fff33eec88e5ee85612a1182d1a1fff50632d7eafa057039eff14be8f9c42034116ba4453b3dcd14f70d1e34925a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-tomcat", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@10.1.33?type=jar", + "description": "Core Tomcat implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://tomcat.apache.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233366" + } + ], + "group": "org.apache.tomcat.embed", + "hashes": [ + { + "alg": "MD5", + "content": "48ee7e18b3dd003d03189906ace0b413" + }, + { + "alg": "SHA-1", + "content": "d4d10b953164db057e4a803506e4552731e5a6a0" + }, + { + "alg": "SHA-256", + "content": "66af498c219b95ff611545ab7963a88d97bcedc04c384a07e2312c4b96dab3c6" + }, + { + "alg": "SHA-512", + "content": "4cca1e01072bb9f63d9f51fddc2f48432cc94a2eaf1ca97b67f855127b5c00404f815d09ec8efbfb42f6deae419551494026e0c42e949095287ef1589fad55e4" + }, + { + "alg": "SHA-384", + "content": "178f6ee07027dcc05e59e9d55d2bedf44fe8c24fe412bb20d45f0bac913acb22902678df11e93ca5e77611ab2f017886" + }, + { + "alg": "SHA3-384", + "content": "f766b90d8b075fc62c889055d0353ed62ce28094815a4f50b89156734e3a64ad9b5c331f61e087848b0faf5368073f91" + }, + { + "alg": "SHA3-256", + "content": "ebb24365303315db18c934856719802d07843a5efeabec6b2965e6b64f1dd7ca" + }, + { + "alg": "SHA3-512", + "content": "8bc85fc0815280be4fe00109f5c087d61a0cad12b27d3b42751188d9ff6e32e7d1945ee9ad4fe05dd49fa6b235902fae64d192297e79c1aaf87a29e0085de231" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "tomcat-embed-core", + "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@10.1.33?type=jar", + "scope": "required", + "type": "library", + "version": "10.1.33" + }, + { + "bom-ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@10.1.33?type=jar", + "description": "Core Tomcat implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://tomcat.apache.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233370" + } + ], + "group": "org.apache.tomcat.embed", + "hashes": [ + { + "alg": "MD5", + "content": "e80bd32e3abbbed18b0c6338fe6e321e" + }, + { + "alg": "SHA-1", + "content": "67feeb848bf741029ed7a0fe91bcae515e7b1c25" + }, + { + "alg": "SHA-256", + "content": "c1227aab6b83884fc3426827206aac243a4983a1dc1c5125091ccd539b4ec84d" + }, + { + "alg": "SHA-512", + "content": "8a77fab07e5e64f8c429fc1ad85e0a9748f2afec5a6fe1941a4bc62b8c1a19647a334eeed22ac60cf37ca4cfc51e27ba09039dd75a57ac185d8d00a5df6edee5" + }, + { + "alg": "SHA-384", + "content": "695e512c74d86eee20386845847384e893e585b0d575e58b3d72413ebbe5ab5a35f853949d8a09c28b364c02ce6f25f0" + }, + { + "alg": "SHA3-384", + "content": "dac4e275c47232794fc6ff5823707bf0fcae54f8eb8d6db741ad944ecc2ee8e3d25a70ff872a2d956a5d807772b00ce9" + }, + { + "alg": "SHA3-256", + "content": "86bdd7491f01d7348d77b78869b6d31beff98a64d3fa6fe7258c6582e30670d9" + }, + { + "alg": "SHA3-512", + "content": "e3553d7e24929c545944fb61df11fed3d188eb1d0de16ce9cc3b71dc89f15be4a0a0d7f0469a18928bb7c7ff4f7ee5645fdd4d6a52a68be997086dae05be4c67" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "tomcat-embed-websocket", + "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@10.1.33?type=jar", + "scope": "required", + "type": "library", + "version": "10.1.33" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "description": "Starter for using JDBC with the HikariCP connection pool", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234420" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "f5ea8fbc02b031a8e5f61152b71798f5" + }, + { + "alg": "SHA-1", + "content": "b1e60252745ba7dae8f41eac40f55cde1c6eb72f" + }, + { + "alg": "SHA-256", + "content": "abf9d27fdac86249bb95374e4783aea9c3296510f8479e3fc609f4f516224384" + }, + { + "alg": "SHA-512", + "content": "01277fdc930aed945f3c65a5a9b2e980fe683cabf0c37b1e65ca254bf107d7efefc3b9de35097096d93b3a5da0b4bf7e23c5e8e568e1e5a834fadc166959f0a8" + }, + { + "alg": "SHA-384", + "content": "4cae0e2cce0921131efb8d9632c8137af2a8a7b44ab24f6aee2664214ce50f4624a80f6c216db0670284e984ffc02434" + }, + { + "alg": "SHA3-384", + "content": "262b1f4d9bbb7c50307ad04f30baf7cf1de64c7957020f9f82293f28354132d995ce34d1e493ff5b5932bdfa8abcce84" + }, + { + "alg": "SHA3-256", + "content": "8d78291d0c49c36c5153c6ad930d5be34a1de352394c9820f3957bed9cf240b0" + }, + { + "alg": "SHA3-512", + "content": "2970b99fef98e4c0d1e5da1c179ca7f3f3fa6428998453719763fdcab4140db1cd83864bfa4e776cf2373cc66a6d4ce118247dc86e37bb13443dbf02d1061375" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-jdbc", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/com.zaxxer/HikariCP@5.1.0?type=jar", + "description": "Ultimate JDBC Connection Pool", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/brettwooldridge/HikariCP" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/brettwooldridge/HikariCP/issues" + }, + { + "type": "vcs", + "url": "https://github.com/brettwooldridge/HikariCP" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12068077" + } + ], + "group": "com.zaxxer", + "hashes": [ + { + "alg": "MD5", + "content": "37404f82207a28141bd9b0fe6b1d0a16" + }, + { + "alg": "SHA-1", + "content": "8c96e36c14461fc436bb02b264b96ef3ca5dca8c" + }, + { + "alg": "SHA-256", + "content": "a47a6ee62379694ee52c30036f0931b72f9aee2a801d590341ed82bd839e2134" + }, + { + "alg": "SHA-512", + "content": "90a78172e68a0d27a2fcce55f9f3e154d7dda81311e8cb59ca45da1f705522491f3627d547d91c496b40134128ff0d42c022d408f7cf6be5ee01fc1e3c7a02d9" + }, + { + "alg": "SHA-384", + "content": "2cdbd745c85d9206ebfc57ab86fde5aef41a7095f9e7a9ce79e6864c8adb7b98dad51549d53c3e6c1f32020666c1585d" + }, + { + "alg": "SHA3-384", + "content": "2e243c1868b36e37d39046d40c32828d0d53d1cf74c9937584d6ee370e64ee92f0c72a38097dfd42250d305d6bd3f72b" + }, + { + "alg": "SHA3-256", + "content": "1235e636aa087bf4848b2c8bae99ef92c37664b7c365f3b7f86a1ba5685ffe72" + }, + { + "alg": "SHA3-512", + "content": "bdf73d234a5f5c445f5aa07d274095a7aa91168100ce219661beae316d1bb8856852331c2725e497450bdf6c3383bcde9158ec267fadb65337be8a03a0e6eadc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "HikariCP", + "publisher": "Zaxxer.com", + "purl": "pkg:maven/com.zaxxer/HikariCP@5.1.0?type=jar", + "scope": "required", + "type": "library", + "version": "5.1.0" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-jdbc@6.1.15?type=jar", + "description": "Spring JDBC", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233418" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "166ad8624de67d3c098263f7b0cb986b" + }, + { + "alg": "SHA-1", + "content": "6cce8300ce2c42675487ca2b088dfaa16c429a19" + }, + { + "alg": "SHA-256", + "content": "c8757a1c75a2e7ae809272abd5474a020c755d2b95eda2bf314bd0580a4f15d0" + }, + { + "alg": "SHA-512", + "content": "9835790a7e7f6c54ab36a6ea2b7fd8df6e50fa1f565c6febfe2431ed274d49f797e200872f848a0d72b20b919f02a2f98c7b28d65880ccd1b536bdfccdd9f024" + }, + { + "alg": "SHA-384", + "content": "b3b64ec578a1f22b889942de8a1962ccba58fa1e90f2306409683a867c51a1a01a498fdcb4f8e4ec157c9cb6768ea53d" + }, + { + "alg": "SHA3-384", + "content": "9755c52605c5ca271ef9ae2c5383d48b3669b3b7ff4ff726c42ace51f8081cad555e0f9bb615bac63be4a4c93696db94" + }, + { + "alg": "SHA3-256", + "content": "109d0925c8de93630deb9630dc5887acee41a76a8f75c33ff49dec9e6a376421" + }, + { + "alg": "SHA3-512", + "content": "65decd71c03e2f48b7e60e72a360ac840f2e1247f99006cacc8b04a294c43817719de712c747b9313a44491538748aea985305e0f07ff4f5983dd2653916cb3f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-jdbc", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-jdbc@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-jdbc-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-spring-jdbc-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-spring-jdbc-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234964" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "936423681856f0964273cf50c1a174f3" + }, + { + "alg": "SHA-1", + "content": "9502c0a7e320487839d5e123071a3ff05e484274" + }, + { + "alg": "SHA-256", + "content": "2b35db8dbb18b6e766bff849119b12cb763483a21baff01fe857b50271f8b712" + }, + { + "alg": "SHA-512", + "content": "8cd16dbbfcd2082257ff2454f03c0451d86aabdc3f04326a2879df425625bb33c94de22d0b5c0fdf6d2e4b0cc472afa96b4f6d01e505c3e53703ce8952773bca" + }, + { + "alg": "SHA-384", + "content": "26072c6a5b3c3acfb0284e7d5c348a33f8de3cfbd3bac24970a3479db532463b50a7d14dc2901670796e9ad1fc92e453" + }, + { + "alg": "SHA3-384", + "content": "80852a10e48f0c709ce29c89cf92b9c8880e957d8b301d385b31866c7628edfe515e2481a69220c6ce8b607425157304" + }, + { + "alg": "SHA3-256", + "content": "dc150369a5538bb0b8af4af5a7fe62609e5bddfd269177ebf433d82d4acd5cb2" + }, + { + "alg": "SHA3-512", + "content": "c7ec448eb014c7603c3de8b9be50c1cc046e631ea8164019949647673a23efc8af07556ef42953d89b39493193e46a2f4d33f89a9776620cc61cc376d42219ba" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-jdbc-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-jdbc-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-spring-jdbc@4.8.0.redhat-00017?type=jar", + "description": "Camel Spring JDBC support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-spring-jdbc/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-spring-jdbc" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233904" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c3eb810408a8451f8d8b6e2dfe4874b3" + }, + { + "alg": "SHA-1", + "content": "3e41c5deb7e9a02c394dab57850ca5cc05ebb37f" + }, + { + "alg": "SHA-256", + "content": "aa35e68001a548934ffcc19d4b846b45f28fe28081329b75d13d93c338e962f6" + }, + { + "alg": "SHA-512", + "content": "0ee3d453f15e051df08b6b4e7613776b3f11b7c42dfb8053a72772d82b8ae8f4314f6f029f385207174142f5c7b36d038379eaadcfb4a5b7f9de5678c4811ca9" + }, + { + "alg": "SHA-384", + "content": "f46837125e557c9e31afb3ea8499a1a0a2f421ade086b9537c85c7a06115ec0def2da598ea5c7986086ed27bce1acb4e" + }, + { + "alg": "SHA3-384", + "content": "6ce7a0fcbb8d7a5c9327d4fd6d07d554b0a41b33d0370cfcb0b97ff3c35efd16227a41bd1d28dddb7bbc22d91d33ad5c" + }, + { + "alg": "SHA3-256", + "content": "95c9954af22c8a8c2737458ed5eacd1a85ed3c80b78ed4047782414094acc4de" + }, + { + "alg": "SHA3-512", + "content": "ff741f73b35ee00850de8f12a7a5b42b327b4f333da9058fd44da93fc3619cbd970d236a707c60c81f122d860dafc3e45aa593eeeceb9202bb328a45dac398fd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-jdbc", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-spring-jdbc@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jdbc@4.8.0.redhat-00017?type=jar", + "description": "Camel JDBC support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jdbc/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-jdbc" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234009" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "53ab75b822856f50353ac50f0bdd95a3" + }, + { + "alg": "SHA-1", + "content": "7b5967887ca3cd5a01fb58b2b7445f696de94147" + }, + { + "alg": "SHA-256", + "content": "2780c035eb9ca835156192499dbb6f0b50f412cc9a77a886d5d84e88c87335ad" + }, + { + "alg": "SHA-512", + "content": "4978ed0610800cde7b984fa6a45df57807da550ba321c212d4f78ceab313fd41edf3e96a49dc849afd909e164ba913d3a8caa288cdea4a71a8a5267338d4f571" + }, + { + "alg": "SHA-384", + "content": "480b0076eeac493a73dfd10f0e8737148974e736e5f6233187540e2221316fcbfd3e527d84a802f5290a97652b9b9cb8" + }, + { + "alg": "SHA3-384", + "content": "e4a5ecc5e0076629f2890bbb3a62f0f6948343869001015a7ece543d06e823ab7c83825958997e778857e880a7ce74a4" + }, + { + "alg": "SHA3-256", + "content": "8bd9b5cad87d408e762813e57528012144f5afb584bc88c3243127e2f30d799a" + }, + { + "alg": "SHA3-512", + "content": "630ff7be1e1c863e36c43e3cf414db11b847ac44c6d8dde9cd48837bd4561c568881eada926b4e353b96f4eee7f238e766852482094a2d603650717c0bb4a77a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jdbc", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-jdbc@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/dev.snowdrop/narayana-spring-boot-starter@3.2.0.redhat-00021?type=jar", + "description": "Narayana Spring Boot integration starter", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/snowdrop/narayana-spring-boot/narayana-spring-boot-starter" + }, + { + "type": "vcs", + "url": "https://github.com/snowdrop/narayana-spring-boot-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234394" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "dev.snowdrop", + "hashes": [ + { + "alg": "MD5", + "content": "74df2d49621f33acca77135ca1f15414" + }, + { + "alg": "SHA-1", + "content": "aa17303437b2d59784e216c9d000df5f94351e33" + }, + { + "alg": "SHA-256", + "content": "289e4571d823572f0350cb9bd7ce838aee64ca49ff14369db0c61aebddc83be0" + }, + { + "alg": "SHA-512", + "content": "4b964a6e313ee9184acab5fb9d4e37035a779565c7bd97c39d2992acbac972151150d22c8f6faac284c74c8a475e543780a371c548ff95c6f8897a4b0a3a5bcf" + }, + { + "alg": "SHA-384", + "content": "9c20705ba7b251b67a8d3c524d829d59465d54322903691360da78ccb409c217fe5b603affdc31853e803f4eadb6cf40" + }, + { + "alg": "SHA3-384", + "content": "62d5a82c3d45e54794d9bd86433fdfbb597e6ebaa2ac798e5b8eb77307baba6f79c7820f8b3c70ab7ecc02bc7b1ec95b" + }, + { + "alg": "SHA3-256", + "content": "2f3af444a7b07a2a3761e9606de5d3d02f7657779073ddca9218a68ea341987f" + }, + { + "alg": "SHA3-512", + "content": "977b2e711a744b0bfa1f05da46963e6233eebba74eaa97fcf9d3269d8ca101045d7784b7ab3d94c6fd46d8c8e95f300685567f39053600035757edf0c7ab16af" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "narayana-spring-boot-starter", + "pedigree": { + "commits": [ + { + "uid": "d9d4a5600abc852905eaeafeb7ea5d3c2ef0235d", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/narayana-spring-boot.git#3.2.0.redhat-00021" + }, + { + "uid": "0c748dd5dbde20b9b5e54b360997ae43c5d9a47a", + "url": "ssh://git@github.com/jboss-fuse/narayana-spring-boot.git#3.2.x.csb-4-8-x" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/dev.snowdrop/narayana-spring-boot-starter@3.2.0.redhat-00021?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.2.0.redhat-00021" + }, + { + "bom-ref": "pkg:maven/dev.snowdrop/narayana-spring-boot-core@3.2.0.redhat-00021?type=jar", + "description": "Narayana Spring Boot integration core", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/snowdrop/narayana-spring-boot/narayana-spring-boot-core" + }, + { + "type": "vcs", + "url": "https://github.com/snowdrop/narayana-spring-boot-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234395" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "dev.snowdrop", + "hashes": [ + { + "alg": "MD5", + "content": "34ccfcc56959e97c2edda11e2d5917a9" + }, + { + "alg": "SHA-1", + "content": "041373f3e9f92fb575c607a8bc1a11ffbdf461ef" + }, + { + "alg": "SHA-256", + "content": "169f9699b3be3d0a4ff842cbf5458b157412d59525607b3acb7e9d0a09442833" + }, + { + "alg": "SHA-512", + "content": "d2b67f933155e4733870c79fd62069dfdcb13cc7510906c3754e7ed4225eb7a645d0c51f4f8bfc61c86bdb348c36f5be3e73564200f8ba238ca5a89c78285368" + }, + { + "alg": "SHA-384", + "content": "88e0e2d4dc342a9680844a33294469978eb027d0e1728812f33c452e158217fd6b0c9dfdb82cddf846822696d058e4be" + }, + { + "alg": "SHA3-384", + "content": "bbf339a481bb23f9a7a7c5b3d4542824cfe8589f529f1fd46e14b31bea9d997ecffa0d572c70403fad218f3e4d9e3867" + }, + { + "alg": "SHA3-256", + "content": "95b156df7fc3c009f41a600c3e64654505f7808c5b74b3adc8070f13cafcf989" + }, + { + "alg": "SHA3-512", + "content": "c283eeea4bb19bd640ab842f845ecaa66ff3e67c2fd7812ddc4195c7b84eda3b4032b50ffe13c1d25cdd8f2fbaedc66db802ae6d3a207ef16d5cfd240f7eb8d8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "narayana-spring-boot-core", + "pedigree": { + "commits": [ + { + "uid": "d9d4a5600abc852905eaeafeb7ea5d3c2ef0235d", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/narayana-spring-boot.git#3.2.0.redhat-00021" + }, + { + "uid": "0c748dd5dbde20b9b5e54b360997ae43c5d9a47a", + "url": "ssh://git@github.com/jboss-fuse/narayana-spring-boot.git#3.2.x.csb-4-8-x" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/dev.snowdrop/narayana-spring-boot-core@3.2.0.redhat-00021?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.2.0.redhat-00021" + }, + { + "bom-ref": "pkg:maven/org.jboss.narayana.jta/narayana-jta@7.0.2.Final-redhat-00001?type=jar", + "description": "Narayana: ArjunaJTA narayana-jta (jta uber jar)", + "externalReferences": [ + { + "type": "website", + "url": "https://narayana.io/narayana-jta-all/narayana-jta" + }, + { + "type": "build-system", + "url": "http://hudson.qa.jboss.com/hudson/view/JBossTS/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://jira.jboss.org/jira/browse/JBTM/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/jbosstm/narayana/narayana-jta-all/narayana-jta" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12622635" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBNCB2ZXDEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4" + } + ], + "group": "org.jboss.narayana.jta", + "hashes": [ + { + "alg": "MD5", + "content": "e5dce57cff3f43806e8c046b71081304" + }, + { + "alg": "SHA-1", + "content": "d0a8dd1f905627a7f50a4fa80258ab85affea399" + }, + { + "alg": "SHA-256", + "content": "5e242860761454468b0962ddf5b06eedc52a6069c22de5b5ba0c54c0d0001a43" + }, + { + "alg": "SHA-512", + "content": "0d3cff6ac6990f9d40081ad3d55b875a7f64bb7d48d3e38cdabfc645783fd6b0750e7727f95174b4e5956bbc4b9dfdb3264467b724074ec785a6594defbe5058" + }, + { + "alg": "SHA-384", + "content": "3512b614f3452f4c74327b29b8700fed2614825b22360fc8c2ddcc20a815a1f137fac728dfccf23af0e83097c9c45a16" + }, + { + "alg": "SHA3-384", + "content": "ceff87b4fb967bc2fd276b63c4ccd8e730d83fbf884220d4ba14c38eee3d04dcf9c0c2a054d04ff3b485b68789a9fe49" + }, + { + "alg": "SHA3-256", + "content": "e1e7f46fd7107b0f4ef55a144620ea79f1e3fdb11c7212d57e5afdd7293e49dd" + }, + { + "alg": "SHA3-512", + "content": "5b05892f948228c56fb6709ac8ffc9659277f9e19afe518a8396a6b55e4d16ce55ba978d0dad099a2c97a57efd127f272dd19acfde07d55c2e456a5e70c6f798" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "narayana-jta", + "pedigree": { + "commits": [ + { + "uid": "dd51e7e9697b78f2ca5bf0d6d5d838a810abfea2", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/narayana.git#7.0.2.Final-redhat-00001" + }, + { + "uid": "2fa34ac464251632a33c1f987cd8daf3229d1804", + "url": "https://github.com/jbosstm/narayana.git#7.0.2.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@7.0.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.0.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@4.0.0.redhat-00001?type=jar", + "description": "APIs for CDI (Contexts and Dependency Injection for Java)", + "externalReferences": [ + { + "type": "website", + "url": "http://cdi-spec.org" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/cdi/issues" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "scm:git:git@github.com:cdi-spec/cdi.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8802112" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AT47LVGPLVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4" + } + ], + "group": "jakarta.enterprise", + "hashes": [ + { + "alg": "MD5", + "content": "6c6b3cd927ba97f8c563befa89c5e4fa" + }, + { + "alg": "SHA-1", + "content": "64b48117212f544410c1b5ba7d050197dbfa5197" + }, + { + "alg": "SHA-256", + "content": "345fce9b7e34608d4bcdbc0cb1a0559fb1115e22efd8e1b51f5c5ed37c3da4a3" + }, + { + "alg": "SHA-512", + "content": "a23e0b0ce7a256150eb4f51895a1fc33bf54505879dab3f6517910c4e50697071e4f75f34c4b315db2f7b8f8c3132c45125ce10a530ecbdb0a4a681f52eb6d20" + }, + { + "alg": "SHA-384", + "content": "a8e11fcd5a1cc4675612e1be108d15ac86ca51dd55f7c611a280bd5351197f53008f8fafd44aa871617017f502692e13" + }, + { + "alg": "SHA3-384", + "content": "583c63a71a8ba5261cd1477c653f6149be2edbc9336cd88d39ba3010c67b105535663edb0d37a9199a2db63a2dcfdd0a" + }, + { + "alg": "SHA3-256", + "content": "1642aa5ac8a9fa5dcdd1f1dceb9c5e4f24aef62fd2dbf32d9bf09c8965e6e361" + }, + { + "alg": "SHA3-512", + "content": "d588e09f69dcba4812865da64f93cbee8b3c1102dc75a17a0e2aac41836cc36d515a51756d9bed1fe4fc11ef29965bce16ac92d9638d34c7e9f71d654ed9574f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jakarta.enterprise.cdi-api", + "pedigree": { + "commits": [ + { + "uid": "25ecebeec58dcbce67467a2fe800a81bfdfea265", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/cdi.git#4.0.0.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@4.0.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.enterprise/jakarta.enterprise.lang-model@4.0.0.redhat-00001?type=jar", + "description": "Build Compatible (Reflection-Free) Java Language Model for CDI", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/jakarta.enterprise.cdi-parent/jakarta.enterprise.lang-model" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/cdi/jakarta.enterprise.lang-model" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8802120" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AT47LVGPLVQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4" + } + ], + "group": "jakarta.enterprise", + "hashes": [ + { + "alg": "MD5", + "content": "b7a671d83354fad90ef15bc4a4e71e89" + }, + { + "alg": "SHA-1", + "content": "e5c6a75e479ed62016478651ab2fa09446391b8b" + }, + { + "alg": "SHA-256", + "content": "db1b1e10bf16576a1dd4fce2a4695a20a7c60900abadb6e9f1bcb2b0df045414" + }, + { + "alg": "SHA-512", + "content": "2fd5db77754b3fbc097e23c3f7384d33012dd2881a8659d3cd75219f20075a6b3ab1392095f70cfc576d5cfe1c3a3a32ecb4dec56ec84d19ffe55f3d3a11432c" + }, + { + "alg": "SHA-384", + "content": "b4f8434ef43fa8c0a8423bbdbdaf776e69c7c748734d4cb0bdb915952e95a9312676d930703712fef4f9b6b01a0ff1d8" + }, + { + "alg": "SHA3-384", + "content": "a0ab54a30a97fdb94a6e4a7a9c64d2f7806e5772cd5590f164ed99a47ca91326bcff727bce5db4e2b5505542a3b3cb25" + }, + { + "alg": "SHA3-256", + "content": "cd7fc8c002ae16e5d0baf268f3f7364c382b9103808cb29dba13027338c72112" + }, + { + "alg": "SHA3-512", + "content": "343485b5e5cbc2a0edab863dfe536b1b6deeaac3e9d8a13ee747200766ccef441bfd80fc6d3a3b2c088d82481a7dcada9809d164bad71405e01e518aa9dd0256" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jakarta.enterprise.lang-model", + "pedigree": { + "commits": [ + { + "uid": "25ecebeec58dcbce67467a2fe800a81bfdfea265", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/cdi.git#4.0.0.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.lang-model@4.0.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar", + "description": "Jakarta Expression Language defines an expression language for Java applications", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.el" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/el-ri/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/el-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/el-ri" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13081498" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMAZG5PGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17.0.10-7-mx6.17.0-mvn3.6.3:1.0.1" + } + ], + "group": "jakarta.el", + "hashes": [ + { + "alg": "MD5", + "content": "72f919acbdb6dbd25b4d216677a53501" + }, + { + "alg": "SHA-1", + "content": "0037b12ec10a72998489f80664a9a35e031cee0c" + }, + { + "alg": "SHA-256", + "content": "6fd64f6a80b8de8577e6196d8bd1367f5680dc7fb895a8783a7d08ddd26cea62" + }, + { + "alg": "SHA-512", + "content": "ebb36a3d297c66b8db9c80396fc622741a83b6d4318bb574b7d866b23b0694f9bc60d25d9971e508602bf645a39a7f1e4a0de2f92ae492f31deb8f86318bfa6e" + }, + { + "alg": "SHA-384", + "content": "5b1c32b1a51226a78bbfcada9bee18df0bcc7da2c4c821e605438c05687c08bfe25af216970cb41ecfb975264c139354" + }, + { + "alg": "SHA3-384", + "content": "0b591508a3e9a4d6a652b0eb59d850ba6ce28aa1db9ee414b81e7cdc23ae401a346fcc1f13ce450c6fd75998ef6898ca" + }, + { + "alg": "SHA3-256", + "content": "5a3df2561f0033f75e17d957632964de64c81409b1d8c2f9c64fc66802eb8ffb" + }, + { + "alg": "SHA3-512", + "content": "af885cc9faf7e9824da184a944367c963f16ae9d19e3e8eda4810b4bbe1abc56c1d7435ed77947f7bbbb31fdc661761cccef28732363f760a0f61f985cb217e0" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://www.gnu.org/software/classpath/license.html" + } + } + ], + "name": "jakarta.el-api", + "pedigree": { + "commits": [ + { + "uid": "13b24b1117c015ade18b4ae75397870818dac04c", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/eclipse-ee4j/el-ri.git#6.0.0.redhat-00001-13b24b11" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "6.0.1.redhat-00001" + }, + { + "bom-ref": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@2.1.0.redhat-00002?type=jar", + "description": "Jakarta Interceptors defines a means of interposing on business method invocations and specific events—such as lifecycle events and timeout events—that occur on instances of Jakarta EE components and other managed classes.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/interceptor-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/interceptor-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/interceptor-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11265577" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A3WUFG4R2MYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "jakarta.interceptor", + "hashes": [ + { + "alg": "MD5", + "content": "7afff0a84771b1cda684fe520b58e7db" + }, + { + "alg": "SHA-1", + "content": "2052e77f22f6c97dd6836d707dec4fc3e0048ece" + }, + { + "alg": "SHA-256", + "content": "959d248153c83e52be422dfd3126860f0775d37b70286a9cc0a538eb56e3ddb5" + }, + { + "alg": "SHA-512", + "content": "c9e07c0045ffe01fdd09bc5bc9d5a4962ba7c6d87027e4d2021323c3adb2bff455c8dbdf46f53a73c483bded0269dee4be6f0141641891b57068bae488028e38" + }, + { + "alg": "SHA-384", + "content": "b42c157c89b3a15d8736f7755acf06f9bfe3f8fe91afb3174c42cfd3c4168f28787e6358cc1161e5c8c7b082bf9f36c6" + }, + { + "alg": "SHA3-384", + "content": "75283152f691781fabbcbb5d4cfc27917364730c2679cb8753b28b0e5c1ed226677972050d1f73aa6a96a9ad61329b31" + }, + { + "alg": "SHA3-256", + "content": "dccb1891c97a34302aeb0d08e8769733ca822901afd248adff59f762f221c196" + }, + { + "alg": "SHA3-512", + "content": "4dbda58441728f2df61b7b2f60ce68916e0d3a79bfa2200bd70a2b1b7af2b4c3b7d9162443f4fa93473b0276dfacf447eda171e17f80d9437d3bda66bac2f504" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "name": "jakarta.interceptor-api", + "pedigree": { + "commits": [ + { + "uid": "60e929f7e9858d490b1726edd571d77b283aed0c", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/interceptor-api.git#2.1.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@2.1.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.1.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/jakarta.resource/jakarta.resource-api@2.0.0.redhat-00002?type=jar", + "description": "Jakarta Connectors 2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/jca-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jca-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jca-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10918353" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A2ZBRCGTCEQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "jakarta.resource", + "hashes": [ + { + "alg": "MD5", + "content": "62ba41aa44fa5ef98f5ff963363d9703" + }, + { + "alg": "SHA-1", + "content": "cfa1b9c2e4ab1aec15c03c1228f70ba8b5ec8e89" + }, + { + "alg": "SHA-256", + "content": "eae11453ce73bd6e74e4674c23c11b777595dc6e7ed3f4b064288b0e30963829" + }, + { + "alg": "SHA-512", + "content": "428ba220b45c6cc7de868bd862652712f3766acf32210b8a5578462f4cd122a995acb009eac10d0bfa6214a960fffa0d29e0e98f87c421eb9e9aaf25bed91dbc" + }, + { + "alg": "SHA-384", + "content": "afc5b1f84e2bab963a8bd18380878d8a40ad4f4d447acbfbc75b6c8cb3722e09f3a3db5a588593261eccdf7f2a4f12e0" + }, + { + "alg": "SHA3-384", + "content": "a08b383290ff21aa215a760aa33f7198796e529613514633733e5de181f62b721b05af6e09e525e8fb87d5aa3269500b" + }, + { + "alg": "SHA3-256", + "content": "81dc1b20a2d7cb2fedb5f49142328c6eb6ed9a6dec49c053618e9c8102ba3e8e" + }, + { + "alg": "SHA3-512", + "content": "5753e59c2042513963c097195d3909ba5fd12a39474a3cab51e21fd1906631488c314e9456628734cd0c939c9eb2897291c86d0a456400a20458826e1699533c" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "name": "jakarta.resource-api", + "pedigree": { + "commits": [ + { + "uid": "0819931985c1b28087eb38235474212fa922fa2a", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jca-api.git#2.0.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/jakarta.resource/jakarta.resource-api@2.0.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.0.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.jboss.invocation/jboss-invocation@2.0.0.Final-redhat-00001?type=jar", + "description": "Invocation Application Programming Interface - Jakarta EE Variant", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org/jboss-invocation" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "scm:git:git://github.com/jbossas/jboss-invocation.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9884920" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AXJAICEP6SYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4" + } + ], + "group": "org.jboss.invocation", + "hashes": [ + { + "alg": "MD5", + "content": "7be152b60ec6ad9352bcd07867b618ef" + }, + { + "alg": "SHA-1", + "content": "1d60d799130fdd9db0344e73b1f4a62996834461" + }, + { + "alg": "SHA-256", + "content": "6d8e222218c401030bc15f1144fb681a59f4b16302bbbd31126ac4041ad8e28f" + }, + { + "alg": "SHA-512", + "content": "5b6ef48aaea5003c06c8f2728a6316fc885c277d2f8c862224fe4873a9e55f480fafa87dbd223b84e39bb895dfbfa3ad3942a1f46c0d0bfd6e989654c3f2ea26" + }, + { + "alg": "SHA-384", + "content": "3d93ab88722fff1abdc854078bda468afe5a5fec8e11b655c0aeb8d085871ae6a098b97a1a8ede2b1c07fd902311edd4" + }, + { + "alg": "SHA3-384", + "content": "c144be3bbb85893be9db0c816cd77e42db639d47b91eef330b607e148cb637b9eeb5e9de3fbc6e529c35062a8d31631f" + }, + { + "alg": "SHA3-256", + "content": "000d24a6a61de4a75030a979c9014fb01f9c824bf33aca12dce80a004c1f231c" + }, + { + "alg": "SHA3-512", + "content": "b16318191e158a4d663bcf786b740b913b3f05e2d567696e6b6f0d3ffc32af83200e7c9432e8894acdd18e1741b003603ae0e48f96312867386ecc4f48d4e769" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "jboss-invocation", + "pedigree": { + "commits": [ + { + "uid": "58bd732aea1ae326f1bc36f8689e9e3597460ee1", + "url": "https://code.engineering.redhat.com/gerrit/jbossas/jboss-invocation.git#2.0.0.Final-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.jboss.invocation/jboss-invocation@2.0.0.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.0.0.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@3.0.0.redhat-00001?type=jar", + "description": "Eclipse MicroProfile Reactive Streams Operators :: API", + "externalReferences": [ + { + "type": "website", + "url": "http://microprofile.io/microprofile-reactive-streams-operators-parent/microprofile-reactive-streams-operators-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse/microprofile-parent/issues" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse/microprofile-reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10659455" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AZXYC5UWS7AAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6" + } + ], + "group": "org.eclipse.microprofile.reactive-streams-operators", + "hashes": [ + { + "alg": "MD5", + "content": "c159fa9c62b9ab2416139261729493a6" + }, + { + "alg": "SHA-1", + "content": "2d936c48dacbaeee1a8b7d1696c3d1a8548bcef2" + }, + { + "alg": "SHA-256", + "content": "f4c34837df2801f8e1324d22f0cb58a2ae8c85ca71dd86bcbfc7a5cf0095cb6a" + }, + { + "alg": "SHA-512", + "content": "bafd04b24f089c2dc9bbba290f80ba85012d0249821a41343f0719df70033eb75bc40c6c3175d874c3b4d5f0ef01db1eee4f03073f9e7872c03fdcf527d9178d" + }, + { + "alg": "SHA-384", + "content": "2fbe66dde88d4cfc4fd34fe52d4788ef7380bd4e66d032b2dd86383f4b0291ad364c99ad74443411f5f40c198eaf579f" + }, + { + "alg": "SHA3-384", + "content": "892ec0b6c1984e61adc609dcd084dcff659b43205c5ec3ed68af82503c806a426084f7b77e79c43b113b79fc92ced0f7" + }, + { + "alg": "SHA3-256", + "content": "35c3bc52783d52b9f502d95ca9884060a1cca1cc4de790c25ef75184ddc63d5d" + }, + { + "alg": "SHA3-512", + "content": "165e8ec6c450ef90285a3bf7146333333b3e8e988dcdf77f801d6e0fb461f53d686ab995083dcf1bbdcace77f9dddc38c75e7ba138328cab31795d366f57be7c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "microprofile-reactive-streams-operators-api", + "pedigree": { + "commits": [ + { + "uid": "ec806d62ca8da5e6130908f4d899510ce23b0b88", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-reactive-streams-operators.git#3.0.0.redhat-00001-ec806d62" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@3.0.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.0.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@7.0.2.Final-redhat-00001?type=jar", + "description": "Narayana: ArjunaJTS integration (atx)", + "externalReferences": [ + { + "type": "website", + "url": "https://narayana.io/narayana-jts-all/narayana-jts-integration" + }, + { + "type": "build-system", + "url": "http://hudson.qa.jboss.com/hudson/view/JBossTS/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://jira.jboss.org/jira/browse/JBTM/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/jbosstm/narayana/narayana-jts-all/narayana-jts-integration" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12622743" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBNCB2ZXDEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4" + } + ], + "group": "org.jboss.narayana.jts", + "hashes": [ + { + "alg": "MD5", + "content": "a3f126d7b3eade456079c61d7d4dede7" + }, + { + "alg": "SHA-1", + "content": "896eb8907648cdb22f2053f4d0cc66870fcaffdf" + }, + { + "alg": "SHA-256", + "content": "a6ea89e1790281d2b0e58b45d19d3f16145c0b674c12c5c1df94b3685a56d72f" + }, + { + "alg": "SHA-512", + "content": "51b9426e509afb2d9cb42131fe73c5469632d64b8375ca304e895ef3475946a575738460eff0090cc3e5d7cf4066e0b322ab458ccfe968c9dfdae7df194ed93c" + }, + { + "alg": "SHA-384", + "content": "a6b913fd64d45fc3af665fcc03e3c3e318ce62c09994eba85c876b03e2e9093f457d3ba04d355c1fd8be5b80273caa93" + }, + { + "alg": "SHA3-384", + "content": "8464c6a621e4d93e976b8b1e1142a35d15c93c5160b75068350a23b6d5ba61d8c50f41c20912d09ad59ca95e557c83bc" + }, + { + "alg": "SHA3-256", + "content": "5580b5f61efc09fd102ba1f1631da30112b970d278c454d1aaecbf57d9930c58" + }, + { + "alg": "SHA3-512", + "content": "957d95244fc3e05744a6fc5cad3f35d39161c6f29e81f298bcfa4c848095896567a27d5ff38279058c8a0cdb417b60f275091bffef40b6651e99870e82e113ff" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "narayana-jts-integration", + "pedigree": { + "commits": [ + { + "uid": "dd51e7e9697b78f2ca5bf0d6d5d838a810abfea2", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/narayana.git#7.0.2.Final-redhat-00001" + }, + { + "uid": "2fa34ac464251632a33c1f987cd8daf3229d1804", + "url": "https://github.com/jbosstm/narayana.git#7.0.2.Final" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@7.0.2.Final-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "7.0.2.Final-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.agroal/agroal-spring-boot-starter@2.5?type=jar", + "description": "The natural database connection pool", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/agroal" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/projects/AG" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/agroal/agroal" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12872633" + } + ], + "group": "io.agroal", + "hashes": [ + { + "alg": "MD5", + "content": "1453610b10020bb309d58013643f5879" + }, + { + "alg": "SHA-1", + "content": "f8958e5ee8bd477320850a7dfddb64f443d4d1dd" + }, + { + "alg": "SHA-256", + "content": "977455bb73f8652821a56f1f851295ad4053cbc0d732c69daf185d876628ecf3" + }, + { + "alg": "SHA-512", + "content": "93a1117dd562b989ab71337fc3d169bbf2c0c0ba04c380cd2f4e2e4c71bfc0e2ccdd59fe3c9c83c52b60458db02f74ed556394417d6b7c47f6e8230382b0d6aa" + }, + { + "alg": "SHA-384", + "content": "b29dafa9259fb97c3be0f46b5e8ff4a65cf2e82ea2aca4ed5f946a17fb20efabea5b4f9a5ebc468aa93b4803ed1ada3b" + }, + { + "alg": "SHA3-384", + "content": "dfd139080925c52f712243c7d1db404914e04447bbaf9c14429d686fca7beba4f5c38c55ba7d8bb78c0aac141ffb083a" + }, + { + "alg": "SHA3-256", + "content": "22f6ea0f8f9a9cb5cbaae4acbed90b19d58f146858209f5c755cbf64a26abdad" + }, + { + "alg": "SHA3-512", + "content": "90ebf1f039b875275ac970113dfb53e19b6a8b9e8c9321e2c677b66db507611260e21ea6f8875fecf4422ad024223f8fa4557294fb9d39f8109e2e3b1d51d029" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "agroal-spring-boot-starter", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/io.agroal/agroal-spring-boot-starter@2.5?type=jar", + "scope": "required", + "type": "library", + "version": "2.5" + }, + { + "bom-ref": "pkg:maven/io.agroal/agroal-api@2.5?type=jar", + "description": "The natural database connection pool", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/agroal" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/projects/AG" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/agroal/agroal" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847414" + } + ], + "group": "io.agroal", + "hashes": [ + { + "alg": "MD5", + "content": "301767303d66f5d9db065c9aaceea9c5" + }, + { + "alg": "SHA-1", + "content": "89e17544ac6c10f22af5d29c34efefb7f66108a2" + }, + { + "alg": "SHA-256", + "content": "c21fa1cf4abdd69ca3cb759760efb44749b502b8453d54a5c4a7ae2645a67656" + }, + { + "alg": "SHA-512", + "content": "55b462e19f88ac32ce96cc260cd29b4c03f1e0da0fa6407a70c4176f94ff123fbabc7340dff5b36891b6628cbea38a690b3e7dd61c9122294151ae4a12ff283e" + }, + { + "alg": "SHA-384", + "content": "99a3d5cda99cc6f37918384da496b5da30f8b6829cc38adf43aa9f0351ececdc5d4183b90980e7128e3f6fe0899232fe" + }, + { + "alg": "SHA3-384", + "content": "4dfca2458fa6bacededd8219838b2a61b4ec790951fa39e8e3f3ae0984f34f0d71da22cf069a5c88d7921f14452e5d18" + }, + { + "alg": "SHA3-256", + "content": "25c607e0823fb685c2e9b7ed6e3bde23907af7c9e1f87e7ae36155e8de53e252" + }, + { + "alg": "SHA3-512", + "content": "d21c4376f20f8921175355b0dd0ddbd496f95630cc7dbee862c4548e612e4d176fe13d93c8db84fc9649ae23cf07c5800bef2d074012c5311d792274e78d960c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "agroal-api", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/io.agroal/agroal-api@2.5?type=jar", + "scope": "required", + "type": "library", + "version": "2.5" + }, + { + "bom-ref": "pkg:maven/io.agroal/agroal-pool@2.5?type=jar", + "description": "The natural database connection pool", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/agroal" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/projects/AG" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/agroal/agroal" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847419" + } + ], + "group": "io.agroal", + "hashes": [ + { + "alg": "MD5", + "content": "37cb7b9316e687c077b4f84123623866" + }, + { + "alg": "SHA-1", + "content": "4d0413d27e5f935ff3ba350671f468e9001f308b" + }, + { + "alg": "SHA-256", + "content": "b434d89e4d16a0e400a3c46a705a778aea56a7852f8d749bfcf3bee7a33f9137" + }, + { + "alg": "SHA-512", + "content": "b0ac0b07bae38e46d15495b079c4d7f25d0e31033806b24f204b3f7caf3ab2592ee2fec3f029753675b8009ce87ead511479aee2d68702cd43d67adb32a4e839" + }, + { + "alg": "SHA-384", + "content": "9d206c049a33c3c09053a79f59df344cb17c38d92fdf9143ba2d13d48cdb698451b5d9fa841fbecd16c887b576d5755b" + }, + { + "alg": "SHA3-384", + "content": "5775b4725d6e953d0918181ce8f77eaf444fc1fa2ab1151be1baed7c5504a9b436193ca64b1017f8ec7e197b549da295" + }, + { + "alg": "SHA3-256", + "content": "465bdb31d8f352dbe573313e7ca30a28c02a2f7ed26f8c09604105fa3076191f" + }, + { + "alg": "SHA3-512", + "content": "ffeb659de91fb4f41f65d16c70d94f008eed502e5c2865a1e217dae5e8ef1c8d31319d14e005c74438557c5de4a7c0daf82402269f13dcf695efb4a9d4d5fa53" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "agroal-pool", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/io.agroal/agroal-pool@2.5?type=jar", + "scope": "required", + "type": "library", + "version": "2.5" + }, + { + "bom-ref": "pkg:maven/io.agroal/agroal-narayana@2.5?type=jar", + "description": "The natural database connection pool", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/agroal" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/projects/AG" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "https://github.com/agroal/agroal" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12847416" + } + ], + "group": "io.agroal", + "hashes": [ + { + "alg": "MD5", + "content": "9e9367e2ae092e8952b456e222696b02" + }, + { + "alg": "SHA-1", + "content": "b4b5794ea421656babc14ac420864412bb280fb3" + }, + { + "alg": "SHA-256", + "content": "a607d53871e23f8d1fa801cebfab37b1c25e4235d9ab8c928d78ea58f0cfbb63" + }, + { + "alg": "SHA-512", + "content": "8a8da07b507bc348940a6e27b9171553185d2715f77c0165a6e986e3c65cb62aee486369349b30f3765daadc42e1911bd2b2e632b33c781cd18a64e839c6ea12" + }, + { + "alg": "SHA-384", + "content": "7deba00b713af171cf33616a620182cd793f68372e5825579ddb98885a5a6190aa7a40fddde6c5dbfada48ad8bdfbae3" + }, + { + "alg": "SHA3-384", + "content": "ac8c8e4f852e18778d93f01c6fd562bfc5151dcae765217c081eeb1d0c84c1b9dda12296dbad4ee976fdf2ad69f9f277" + }, + { + "alg": "SHA3-256", + "content": "99cb50a0f317469241fbe6499fc7c3bf29ccf3f0874be0867c9b4518ff1a6e93" + }, + { + "alg": "SHA3-512", + "content": "1e09cc0e8c023bf65b428670b03c7705a2ccc6562ad81478e082c4ec4a0463ac4fd25da77b0f55d7b2d4de59588162fa19f73fb01ccc2883e1e70db1f0f43b3e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "agroal-narayana", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/io.agroal/agroal-narayana@2.5?type=jar", + "scope": "required", + "type": "library", + "version": "2.5" + }, + { + "bom-ref": "pkg:maven/org.jboss/jboss-transaction-spi@8.0.0.Final?type=jar", + "description": "The Java Transaction SPI classes", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jboss.org" + }, + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://issues.redhat.com/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + }, + { + "type": "vcs", + "url": "http://github.com/jboss/jboss-parent-pom/jboss-transaction-spi" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13154802" + } + ], + "group": "org.jboss", + "hashes": [ + { + "alg": "MD5", + "content": "218b5e634dfb78d592e2702e8f214dc0" + }, + { + "alg": "SHA-1", + "content": "c9ac775a105f4f7326c3b3052aee9c5ab1b29403" + }, + { + "alg": "SHA-256", + "content": "07e4e62ceae075a8c11a715d89b19992c879f505b48be6b2727f5be798562ae1" + }, + { + "alg": "SHA-512", + "content": "271e99605c77ed4ea9020c9a7ff693fa70b505a36beac228de585304f8a9d73c411228f513fe819a051cb6247ccac47d0045121816f8b7ea0b574c1d780e5750" + }, + { + "alg": "SHA-384", + "content": "4d604ae7e69561e7f1c27feea6bc5b3250eed263af5c27292375a9954721810c3785c5d10eead6ce59bf18bafc8738cf" + }, + { + "alg": "SHA3-384", + "content": "79dcb8816df1d8c108ca5b35c0eedd1f3f50caa732db2c53c9bbad717a3ad6061dddaa86691d03e69a2b6ed6dfbeb0d0" + }, + { + "alg": "SHA3-256", + "content": "a7c22ce61dfc863879cd4c075c10bc5b1fac08267b34441d0df204b7aaff0ba4" + }, + { + "alg": "SHA3-512", + "content": "ffde4d1878f8fefb25d3d05425f66ba8e57cf1ed7e8a0f8f778524b5129b58fa5c9e75d041b62464c55c6b558a880108886fe5b646573fc67be0d46c06d80b8d" + } + ], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], + "name": "jboss-transaction-spi", + "publisher": "JBoss by Red Hat", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@8.0.0.Final?type=jar", + "scope": "required", + "type": "library", + "version": "8.0.0.Final" + }, + { + "bom-ref": "pkg:maven/org.postgresql/postgresql@42.7.4?type=jar", + "description": "PostgreSQL JDBC Driver Postgresql", + "externalReferences": [ + { + "type": "website", + "url": "https://jdbc.postgresql.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pgjdbc/pgjdbc/issues" + }, + { + "type": "mailing-list", + "url": "https://www.postgresql.org/list/pgsql-jdbc/" + }, + { + "type": "vcs", + "url": "https://github.com/pgjdbc/pgjdbc" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727053" + } + ], + "group": "org.postgresql", + "hashes": [ + { + "alg": "MD5", + "content": "ef7e9be503b5c6243697d628fb196cad" + }, + { + "alg": "SHA-1", + "content": "264310fd7b2cd76738787dc0b9f7ea2e3b11adc1" + }, + { + "alg": "SHA-256", + "content": "188976721ead8e8627eb6d8389d500dccc0c9bebd885268a3047180274a6031e" + }, + { + "alg": "SHA-512", + "content": "1e7ce2040145a8b2e48e6c33fb6954aabf1afa21b1bad9f39465ad508570f22424e31a897f46eb92b28b99ade89d5068214dd400dd473f440d694520e06da796" + }, + { + "alg": "SHA-384", + "content": "eda1993df61c0a47317f80c2a7318e542a617d5a69708262abe2f64d0bba2784c07fba9482a7fb20b48bdbb7ad402b3e" + }, + { + "alg": "SHA3-384", + "content": "ad4bc7b32deb659a05b5e19026c3e385d178b1d86c00bdf453968ac1798f0092f54853f5da94677e2766a7dca759c49d" + }, + { + "alg": "SHA3-256", + "content": "fd3c97063825bdf22632823afcfde33bbb9562081c7070dd28eb3597c1d583d2" + }, + { + "alg": "SHA3-512", + "content": "97881b9c74107dc1da82c679d0e1529c752281d060a7b5125104da59a19b338eab6791cf465f40bdc9bf2f63e1bc41241cd6da720c77cfdcb7ade4edbce653b3" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "name": "postgresql", + "publisher": "PostgreSQL Global Development Group", + "purl": "pkg:maven/org.postgresql/postgresql@42.7.4?type=jar", + "scope": "required", + "type": "library", + "version": "42.7.4" + }, + { + "bom-ref": "pkg:maven/org.checkerframework/checker-qual@3.42.0?type=jar", + "description": "checker-qual contains annotations (type qualifiers) that a programmer writes to specify Java code for type-checking by the Checker Framework.", + "externalReferences": [ + { + "type": "website", + "url": "https://checkerframework.org/" + }, + { + "type": "vcs", + "url": "https://github.com/typetools/checker-framework.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11708825" + } + ], + "group": "org.checkerframework", + "hashes": [ + { + "alg": "MD5", + "content": "4c55448dcbfe9c3702f7758fc8fe0086" + }, + { + "alg": "SHA-1", + "content": "638ec33f363a94d41a4f03c3e7d3dcfba64e402d" + }, + { + "alg": "SHA-256", + "content": "ccaedd33af0b7894d9f2f3b644f4d19e43928e32902e61ac4d10777830f5aac7" + }, + { + "alg": "SHA-512", + "content": "85f66a42a079b4578256b5b6daa4b1ba5aa684614982cab2c9cd83324f2c3fcdde420de6ad51b2f439c4c809be10b376f80f5a45110a1ee6caa59e6298c0ec95" + }, + { + "alg": "SHA-384", + "content": "1ee2061f8da04e77b577030edc21904b0700aceb241fcb5a549767d44c9b71267217850dc89aca41e65d188e148f8d58" + }, + { + "alg": "SHA3-384", + "content": "5d89ffdcafb432d84503340827bc6fae5f6fc290fde59c1eb491996c15fd92ad00dfd1e781d8c9d6ef4ca9c4f3e5b264" + }, + { + "alg": "SHA3-256", + "content": "25c061a632fc0263f974761afad7f4209dd6582a461f3049e39d260640308393" + }, + { + "alg": "SHA3-512", + "content": "75a743fb2577bb3252de16a86cf10922626689e75918136c83caa3a26db669f7c770779cfb9b9003ba5b181ffc9f7d871ab250cccfc4ff19e587a0384b448929" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "checker-qual", + "purl": "pkg:maven/org.checkerframework/checker-qual@3.42.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.42.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-observation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar", + "description": "An example Observation Tracer", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-loggingtracer" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-loggingtracer" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-observation-loggingtracer", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-observation-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Support for Micrometer Observation", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-observation-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-observation-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895404" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "aa393b623be3237dc59bd67299c9fad8" + }, + { + "alg": "SHA-1", + "content": "49f85957d3ec6401e162c34c6bb00bdbd538dee8" + }, + { + "alg": "SHA-256", + "content": "aef4a19ee4c1cf2e1e8d4fda0175447c4c3f75967b2a5d663a5b9d9d1afa73c6" + }, + { + "alg": "SHA-512", + "content": "239a3799e134bd3708730ca24883c449e5b1b0b0ddb0e4ae41bba6b8dabaeb07549b2530eeab744b129a146c8390310a4dcf2c11236429fefb5909477b6dd65f" + }, + { + "alg": "SHA-384", + "content": "83796e87e69234ff3dfe12ec6a8ed0ee04cb7159f9fd2426649887f218b8dad1cfec45f191108070c207c1383df50d37" + }, + { + "alg": "SHA3-384", + "content": "e5e1a010e01d380e7083f738b123ead9f0230806cd4d0fbfd85bce93b190be50156d8819446b73ea707452c024413aca" + }, + { + "alg": "SHA3-256", + "content": "0cee3ce02e325577f0ad9d204628170c27a943402cc3f5e7626b6df90eebe201" + }, + { + "alg": "SHA3-512", + "content": "f36c34939d125d6633f2494b9e0b919fddf93a743271cfda6fecb03c2f9de4bb0e7a53b1c3c18a1765b74461de84cec2ace54fb8ac57efc519a914fc3fe03824" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-observation-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-observation-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-observation@4.8.0?type=jar", + "description": "Observability using Micrometer Observation", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-observation/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-observation" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866046" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "b1ab51ffb21b55f374770411cff897e6" + }, + { + "alg": "SHA-1", + "content": "e6b101af921da59d88e0c7af88502930d6ae2064" + }, + { + "alg": "SHA-256", + "content": "8c34d0105c35654765aab6ddb8e50c8011615a2c39679f1263aa22f6b3327165" + }, + { + "alg": "SHA-512", + "content": "d13785d88b512baae08d36e215327b455dbb202bf94f6a6deb08fdeb5c47843d4cd00c3474f7360d22eb77cbb531aa6b80a85633e78ec5af17b5a0c3e178c929" + }, + { + "alg": "SHA-384", + "content": "d0705ec70d6510652d98be6a78999274b5d48be32478808c821d1946d37b90a33daa5c38d885db60add4cd4b5d2f1e76" + }, + { + "alg": "SHA3-384", + "content": "a05d02436dd9542d66d2b45ac79adf8e85c85fffeca9ff30cc875450091cd122fda928cf14f2c7627eedece00e71873b" + }, + { + "alg": "SHA3-256", + "content": "c2c6e917fae6a109161b5d31a6c00bb9135c649c2d14f19304609d19fd0aaf87" + }, + { + "alg": "SHA3-512", + "content": "510a5ed597508e0e9b4e4c53e45a037884ddccef1523e1f2fc78fb4985692fee130e367eb7f00e3ed340b617a3e01cf494498fd72045e1efd99d29bc92f83cca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-observation", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-observation@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-tracing@4.8.0?type=jar", + "description": "Distributed tracing common interfaces", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-tracing/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-tracing" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895444" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "34ea50bcc466f5e270e7b0cea0fb7657" + }, + { + "alg": "SHA-1", + "content": "5001847a14a9e7ebb97ee0d18b2f91a4c5fb232a" + }, + { + "alg": "SHA-256", + "content": "755171031015a888f0471a27d53ca20093a564e0dc051875c5cd11f702ab186d" + }, + { + "alg": "SHA-512", + "content": "61b03f8764633357ba7ad8052bdc63a435e872ed71028ee07064ce575a2f59cb289937b8ad5b0590c6a4351d65168e064e022458d81130f2e7a1634bf1d86352" + }, + { + "alg": "SHA-384", + "content": "31be9aebe055835309f7b369d0e31815fd3df98ae8768da2f17d213e16c314d5a70452597d450fccbad471adbd2f2a8f" + }, + { + "alg": "SHA3-384", + "content": "c792b3e16f2321844ba6a1ca893d4ca587a99f23ee1517bcbd608317f33c3d95a8a06eacf25c6ba7fc9f8a2c519deb7a" + }, + { + "alg": "SHA3-256", + "content": "1457060cde4364759a5fec98becc1ef914b59f20ca4a438aedd753ddd655c399" + }, + { + "alg": "SHA3-512", + "content": "28fa5f321c3d608b69743c6fe8454812a20ea1eb926fbc86b6ab45aa5f84fc28707758b6a67bdf24a62cee5d3656894f6152eede81ebb75860b05f7379d329a6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-tracing", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-tracing@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-tracing-bridge-otel@1.3.6?type=jar", + "description": "Facade over tracing concepts", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/tracing" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235149" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "8fda6085f1321b59f4ad492c69e9a49d" + }, + { + "alg": "SHA-1", + "content": "5ef9fc0ee89c789a9f97c26fa0a97e20bb9c51ff" + }, + { + "alg": "SHA-256", + "content": "e3079a5f6e962cf74cdd3496df620ced68a58df2c465eb37c56722922f71986f" + }, + { + "alg": "SHA-512", + "content": "572dd9add0e4fc3ecb8df56bfcfa55479aa05036dc01bb778f3411550a2fe4babbb0b029d0391d124944c1472d457371f6d446eb96d19f41c452812b02e2df13" + }, + { + "alg": "SHA-384", + "content": "9151cea2e4494ad49f75087dfc3108ad369d80004732c211604713cf3f0ed434b13b579d027eb5fcb98101e0f19a575c" + }, + { + "alg": "SHA3-384", + "content": "8955657175a14069a05341a2709686fd28e5dc24ca4bbd9b1be808815138d8fe357210b835506c558f2d28a22be2939a" + }, + { + "alg": "SHA3-256", + "content": "5c333b1bea7dd679cf1b39a98c37f995a5b4289df9b825e68684c86dcd6508ec" + }, + { + "alg": "SHA3-512", + "content": "65246b705602b24f09fbe21ce3fc7137115a5a7036cdaf11f7a3b860673c62e788101e663b428337d74ebfe1e30995b0ecc57ca08f4e55b1f0fe131974a0d8f3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-tracing-bridge-otel", + "purl": "pkg:maven/io.micrometer/micrometer-tracing-bridge-otel@1.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "1.3.6" + }, + { + "bom-ref": "pkg:maven/io.micrometer/micrometer-tracing@1.3.6?type=jar", + "description": "Facade over tracing concepts", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/tracing" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235151" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "afc15bb5114e557ace108feefe8bcd95" + }, + { + "alg": "SHA-1", + "content": "aea6891e4059dc5385f7da13b65361b2c5fc3b8d" + }, + { + "alg": "SHA-256", + "content": "5581d9fa416488fd69bae8aeb3345d7c559887e6735b6943f47fd997e8c46189" + }, + { + "alg": "SHA-512", + "content": "774c7adfe0f52b583b00dbbea03e571f653515e624fd8bcfc3b670761a4663cf1786a30fe4bdcc1781d9eabb6f2636e2d6c04819e1edb5972bd5fda24b95ad44" + }, + { + "alg": "SHA-384", + "content": "2dc4cc8156e8777c0624732eae6176194ae0258e2e4d0ae6a33f2427309843ed2717202344d16d5cc804426cb36b429d" + }, + { + "alg": "SHA3-384", + "content": "d0fec555f63d0f99931de70ea138f9fd04c8f8e7b5db9f14fa347c4ca4f20f5d97b05d7e3a8487b6c6cdad617941c710" + }, + { + "alg": "SHA3-256", + "content": "812721565ba67be58ffb45fd5e77af0f8a8fb1ebb063005a0231b24e645d6bbc" + }, + { + "alg": "SHA3-512", + "content": "1cbdee2f75f42ba102ef6f4038ebc8e33ec44b3078c16b44c5e2d2077e6cf345206583da3f22318ebddde34970f7d53cd5ab50fc5e3498a66811fae5677da01e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "micrometer-tracing", + "purl": "pkg:maven/io.micrometer/micrometer-tracing@1.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "1.3.6" + }, + { + "bom-ref": "pkg:maven/io.micrometer/context-propagation@1.1.2?type=jar", + "description": "A library that assists with context propagation across different types of context mechanisms such as ThreadLocal, Reactor Context etc.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micrometer-metrics/context-propagation" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13101119" + } + ], + "group": "io.micrometer", + "hashes": [ + { + "alg": "MD5", + "content": "66563948193e366f0b4df1494cc9e28e" + }, + { + "alg": "SHA-1", + "content": "771c187140f7610260020f63d2ac6548d72204d1" + }, + { + "alg": "SHA-256", + "content": "5da9b03dc726dd47365f2627304ea35a8dd2f11367baaa0aaad23d0ff30c4fd6" + }, + { + "alg": "SHA-512", + "content": "c86c8f9d032f023d806c4b38526363060b3706d27a8ff0d5c55ba9727bac8e3cbd56a2021fdd8290fa4f3baeca949b121a6f54542ea87006175e8a6728a90558" + }, + { + "alg": "SHA-384", + "content": "26e10b2af9636fd3ec504a0d8062faad615c898f4df5a8cde553df149f62a8b94a0a89c69ff87e797be73cf911e24dbf" + }, + { + "alg": "SHA3-384", + "content": "695b7c3b923d4620859f09990d2bd594ef5f695a197eeb16579027311d8e62cabb575aa56c629e224b744cb8fada0f02" + }, + { + "alg": "SHA3-256", + "content": "b798c1934074d09f83e611c2605aa96e1ea5107f9b9f7a29b98baeff64d77600" + }, + { + "alg": "SHA3-512", + "content": "3b27c6680514d53e287515d2d4b95dca89d002e19042ef29913568b7604810f69aac036dce279edfbd57ae5e9035ca5f05b50c5253584d5b93ad66d2f1a20ba9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "context-propagation", + "purl": "pkg:maven/io.micrometer/context-propagation@1.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "1.1.2" + }, + { + "bom-ref": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "description": "AOP Alliance", + "externalReferences": [ + { + "type": "website", + "url": "http://aopalliance.sourceforge.net" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12720020" + } + ], + "group": "aopalliance", + "hashes": [ + { + "alg": "MD5", + "content": "04177054e180d09e3998808efa0401c7" + }, + { + "alg": "SHA-1", + "content": "0235ba8b489512805ac13a8f9ea77a1ca5ebe3e8" + }, + { + "alg": "SHA-256", + "content": "0addec670fedcd3f113c5c8091d783280d23f75e3acb841b61a9cdb079376a08" + }, + { + "alg": "SHA-512", + "content": "3f44a932d8c00cfeee2eb057bcd7c301a2d029063e0a916e1e20b3aec4877d19d67a2fd8aaf58fa2d5a00133d1602128a7f50912ffb6cabc7b0fdc7fbda3f8a1" + }, + { + "alg": "SHA-384", + "content": "4dddf44338b5aff9580da2532b81c0ac3e1d09e1f28c6db871a55cad442b705dd7791eb07f9d4577d49d0be3673ba783" + }, + { + "alg": "SHA3-384", + "content": "2bd64cbaf769c6e4e85e34f7a6119d89e16fbf55af3fc5d6cbd52eb214c367dec1ac7b9062ee0fb35a2e0acfc7c477e1" + }, + { + "alg": "SHA3-256", + "content": "d4a726b2bf8aa58197021a7d8fca674b4b2790d4c48de43a92f728866a91c2f0" + }, + { + "alg": "SHA3-512", + "content": "830bc3f8328be76897990e9b9fc42eef02623115e456af96ad09b20900ad615519c8c8de60155ac04fb332eaa9510110d52edd13911af76271c71d91cbd789cc" + } + ], + "licenses": [ + { + "license": { + "name": "Public Domain" + } + } + ], + "name": "aopalliance", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.0" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.23.1-alpha?type=jar", + "description": "OpenTelemetry Semantic Conventions generated classes for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/semantic-conventions-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11833798" + } + ], + "group": "io.opentelemetry.semconv", + "hashes": [ + { + "alg": "MD5", + "content": "6a16c54c9cd193b1b06cbe8000dc03cf" + }, + { + "alg": "SHA-1", + "content": "218e361772670212a46be5940010222d68e66f2a" + }, + { + "alg": "SHA-256", + "content": "ae8cace98274227cd4b04f1dacee9309a88f3208e2e2bd96df7f8d7d57fb7d4d" + }, + { + "alg": "SHA-512", + "content": "b525e869fa4bcb0c16102f2344af68e309a93466e1364fe4ff228101b65bfaaa415a622c7a1515ff24b369d1681becf1c24a1599565f6be496c8244450b47961" + }, + { + "alg": "SHA-384", + "content": "89101cad74875c8238661f2fe6ab26dcbbbdcb48892d89b89287a04499735d420ed86aadc608a6c427974fb0583f56c0" + }, + { + "alg": "SHA3-384", + "content": "56c9ae48f3b5d7544e491cc7c842835058365f3d4f2b355ce0dce9b388094fa5536b0110188ef0e74d2cacade736d6f2" + }, + { + "alg": "SHA3-256", + "content": "ad4fc5c46ff6bf7333e63f2cdc7ba826949a8f7780afd164d2a277a67e6da9d4" + }, + { + "alg": "SHA3-512", + "content": "ff73545bae8a9a9b1fc33a45e51cfd3f03715d18ee02814526b90455b1ff96185efadd9e31042318e6371bb854950723777134fc03719d71f60d22d69d9f201a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-semconv", + "purl": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.23.1-alpha?type=jar", + "scope": "required", + "type": "library", + "version": "1.23.1-alpha" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry SDK Common", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088666" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "831c6bbe5f807436bf4417383686d9e9" + }, + { + "alg": "SHA-1", + "content": "6a06f488dd4645104d8f7f8b94496a2eeb4823fe" + }, + { + "alg": "SHA-256", + "content": "28ac9d1786c1893c5917641eb61d7100958c54126515667bc5a9bb5f7adeb391" + }, + { + "alg": "SHA-512", + "content": "4c6acb77b3b9f23c81541f681f8002b40e5fae6f30105a3ee40c2d0c5c62b3e9b1d15882a19e6b91e5a450237f10e4262b926e4e6c491a93971095182b11cedb" + }, + { + "alg": "SHA-384", + "content": "ec1869882d32c5ff13c33e4f0d5ce7936b8a2420b9c2d9762d6391339619aa947e64da4e9b4836d6b280e0a0381eb896" + }, + { + "alg": "SHA3-384", + "content": "882e378d933e069588a09f8812ccae8dbdd8043dd78dff23f6d569fbf2324668f0760e02e6d7c34f5d56451420d9f584" + }, + { + "alg": "SHA3-256", + "content": "d24b623eda9d89b57c41148be1f8d045c0045bf1c5a1e995ca676b48b1d14a4c" + }, + { + "alg": "SHA3-512", + "content": "56e2b3142d95cbd17cab4f8bccd3c9107745a3474f1039754c29b016db6b5d943fedf63b3cd37adf4738997b3754dedef4822dabdb606c0e70b3f1ac3c03c7fb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-sdk-common", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry SDK For Tracing", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088650" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "51c362fe1e1a0d6e09add76346f737ab" + }, + { + "alg": "SHA-1", + "content": "751d7f9e732cb7de61f182bc5fa16ac09d1aa54d" + }, + { + "alg": "SHA-256", + "content": "5ce1ff8c73f596802520f20ff78f6ef09fe3e409e9cebccdbab603d8f5c52528" + }, + { + "alg": "SHA-512", + "content": "b99f788427792ac926edd1441e88132692c6c187e77493974273d685a08853ae8373f601149d81de45a33da9efcee4bf8e6fbc48ce6da4e77d74ded0122d0235" + }, + { + "alg": "SHA-384", + "content": "341ba2c666701398b50fdc1faebe1e14d77447199f9169f3744836e7cb9eaf940b4dfe35211f6932e7d47328d213e95a" + }, + { + "alg": "SHA3-384", + "content": "09a4106167acd8c896f249af02081326c50fa441c21088017de9e43b83020dea3f6b89d5aa0ee35c802426255633e720" + }, + { + "alg": "SHA3-256", + "content": "0de9fc684c3bc87122314d481f92421e42217e71fbea732641ba84a50e9414a8" + }, + { + "alg": "SHA3-512", + "content": "41195a9f6a7c34fa3ee1e2783906a3338c889333258b9d1331a645d19f8b71af619b48afa81c02468dfce270fa6991b5466677324a515aca666409d5330e90ca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-sdk-trace", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar", + "description": "OpenTelemetry API Incubator", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088596" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "60a61f20f66fd5230240ae335bf1bb87" + }, + { + "alg": "SHA-1", + "content": "8f6733f0ca2d170a5e48e827cfb96f3af29316bb" + }, + { + "alg": "SHA-256", + "content": "cccf2a0aeee62a428f0e6e4d21a17cf027e7c1f58864fff8ce3e2fc81d686064" + }, + { + "alg": "SHA-512", + "content": "a26036d2a4bb4aa731f606f8ed8ed4e45f29dc7bf98ec5a83be690bcd652b50e8a85993455f9660a7f8cee787dda740e530145ac8445c96da7b106c1a127038f" + }, + { + "alg": "SHA-384", + "content": "155639e787bfd0a0acd6d9bc3fcb2c971cec0614ad019e312efff8acb9d3934de2fafa4e3fc0d3d96ea97ce7cedbb945" + }, + { + "alg": "SHA3-384", + "content": "3c0aa570513e64e20ae4351097b294c47a9294a343447830a9efd5c0492622ecc8c90241b34536ee2efe8db3416acb36" + }, + { + "alg": "SHA3-256", + "content": "13312fe4457102545adcb33d43e5e7a910006d62b766dda5c44f659cc0c2ec28" + }, + { + "alg": "SHA3-512", + "content": "c06fd652c3386aec7fc1ef224d747910a0e454030b37be8af18a2ecf86a9438d39f1296d12b144f0f19420dcf20d413a5db0159f9eaa96c8afee5cf67dac1954" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-api-incubator", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.alpha-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry SDK", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088570" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "c6b3d13f2000c57ea200d4cc955263bf" + }, + { + "alg": "SHA-1", + "content": "3c27390c7c3b329e01e4974a664ec188697c0847" + }, + { + "alg": "SHA-256", + "content": "7518f5a5b2d827041bfe0bd96cf9258937a8b8fa3c59b17474704acc5564a341" + }, + { + "alg": "SHA-512", + "content": "91495d47f6dd78ffc98d9f13ca6c5831c197c5ac443c9e2e0faaed256e2186b44c3a564a4b7efd4f4a2265c43a6c7543f26c084819c5a7cf6eb5350e911cd382" + }, + { + "alg": "SHA-384", + "content": "bd0654d1ef2de7f43444d74e49f05d0d5e38a8d7da889d5a8b3bf27d4f48800e2eb225c8abb17942dc9ef8dd7272d8a1" + }, + { + "alg": "SHA3-384", + "content": "cd7cbf5e9f9de51016d1be2047fce3f74014b507b6b371cbd4aa977c55e80784ad468bc52f14e47193439a4c11015cff" + }, + { + "alg": "SHA3-256", + "content": "e8cfb30c8d8083560717913ab98da5ed967c68f15adcc9f498c584e3c163cf72" + }, + { + "alg": "SHA3-512", + "content": "0e42ce4303e63ea1ee651b0def98f5234941ec01ebb217c5774f223b2793736504b520ffb1c846b5ef7b64bd215046bff6875032c1dfa8345548b108fc2d6fe4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-sdk", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.33.3-alpha?type=jar", + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12997295" + } + ], + "group": "io.opentelemetry.instrumentation", + "hashes": [ + { + "alg": "MD5", + "content": "b974da697be1a198e6bc4fe452e3ce74" + }, + { + "alg": "SHA-1", + "content": "9b26012e6c08d39441e2f44af181311bbd9bbb09" + }, + { + "alg": "SHA-256", + "content": "79dd554d60b4a3bedb2b7553037a867cd731877964ed3ce47d255e1a1a8effd7" + }, + { + "alg": "SHA-512", + "content": "18897a7e966d2103aec86da426b278cf2992b35014189b17a7e44ff5a26b3ef309638dcc9f8783ce80210d56e2d7666ba9dbcb833f04226db895dc069e47d67f" + }, + { + "alg": "SHA-384", + "content": "abc70860522b28e54f2433a3e2a27a67ebe1ea469797f8e209594c1da07c4d643104996da0be25ee5c035ee0d3de5fd5" + }, + { + "alg": "SHA3-384", + "content": "0b3ed293b01c2b07af14e7d89726f34afa65400e520d58580338046eee93d16bd2b21837a43de95a34334496fd323b1a" + }, + { + "alg": "SHA3-256", + "content": "5b765a531af25aa1f6d12827e510968436ec4ab89f74ecfd8fc5b08d70980141" + }, + { + "alg": "SHA3-512", + "content": "bde910838c3f62e3940e1be05db1a3c3a0d54720b6e1e57ef223eebf6cdf38dabcd7dc053cbc0de72d9d8441669ba97c557796071ab5fc147e82f8f628a60f1d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-instrumentation-api-semconv", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.33.3-alpha?type=jar", + "scope": "required", + "type": "library", + "version": "1.33.3-alpha" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.33.3?type=jar", + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12997297" + } + ], + "group": "io.opentelemetry.instrumentation", + "hashes": [ + { + "alg": "MD5", + "content": "42da8a5fb0a8726c6b93f7f3af0a9103" + }, + { + "alg": "SHA-1", + "content": "133644185f680998c454ed738afcb459b211f6db" + }, + { + "alg": "SHA-256", + "content": "672dd6993800d5ddf809cb20522a64ada4185cf223c6a1d84ce6e7e47d468ade" + }, + { + "alg": "SHA-512", + "content": "cc4b2d837b5149a25caaadc92f3ec5ec03de556e5d7f244c86a05cdb2cd24b57f601677b9dddb7e978532c55ed96f52dc5d892add901fe44e05bf9c76c8f72cf" + }, + { + "alg": "SHA-384", + "content": "bad11eddea2d617fc352d70ca13bb2e9767278a735c3b6dc69ed9ce863b2ff4839bc3f10732d8dcc14e0a262d4871009" + }, + { + "alg": "SHA3-384", + "content": "5dd710962a84c39b55450e75ce6d61c5239a2ac0175775b30dd576bee7129dd9857ffe8047594018c9d35cd883196f24" + }, + { + "alg": "SHA3-256", + "content": "e51d61f5f36c047675f14f813a43fc6d980db8616b1dde09b2f9a97d1b4285ce" + }, + { + "alg": "SHA3-512", + "content": "5901d5c22a7cd1b2bc733f3f98b9b1858acced35bb2b360460dc244ce61f190c572ceec19d4fc6538f34a8b2b50cb43a19fb3367733382899e80b1814c461e8a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-instrumentation-api", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.33.3?type=jar", + "scope": "required", + "type": "library", + "version": "1.33.3" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-extension-trace-propagators@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry Extension : Trace Propagators", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088641" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "6489641e035aa5577b618828ae444535" + }, + { + "alg": "SHA-1", + "content": "e5170ebd1703cd8a6c6879d2ea889107e0647e3f" + }, + { + "alg": "SHA-256", + "content": "a3c14e3fe243efc0a416b0f74d515714e84195de1a765880dc15be2390007cbd" + }, + { + "alg": "SHA-512", + "content": "a416ab51031a1901320a839d95ef65deaf1404c22349785a2cdb78fe33915bbfb974c01f259ac779ef3fd8b23afd59ed831723ce6360341f9fd260a117af938e" + }, + { + "alg": "SHA-384", + "content": "351aeea4402057c95b95720801ba7f00e9053bd0ece09799d7c685511eb39e98d0529424c6ff8dcce48ed9da16d5e8bc" + }, + { + "alg": "SHA3-384", + "content": "5392e404bc519a8cb9d7e166ce56aadb2c4badaf9ef3c757be3e43f49ea20cf004f2cdeec58cb41bcb5ee0fb1098d951" + }, + { + "alg": "SHA3-256", + "content": "2cc7afa0955656346a38557f27e1a9899955fb7a25c80ca791d89cfea36b1ddc" + }, + { + "alg": "SHA3-512", + "content": "5be1c182c91f4885822a952a26a884e80f79f8bd192e3dae1489cd8962c0f1a088b2825f9ef919a21c9a743dfd0ad2dcd32f39601cf6b8c6c71919dabf2d8fad" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-extension-trace-propagators", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-trace-propagators@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry Protocol (OTLP) Exporters", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088600" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "7ed25cbe44fe1e4b29fef7895a653b3a" + }, + { + "alg": "SHA-1", + "content": "bd8a5d71a72dd46a413b31f8d5b1fa563237a26c" + }, + { + "alg": "SHA-256", + "content": "e8d062cd0dc5f5602c7d918c40d35efe7a923e42ccc36121ae834395b41a575b" + }, + { + "alg": "SHA-512", + "content": "aeca31cfc1b1fda44daa387da3ac2dc8cec702cd4343dea381fb83ce5a1087ff99c80e3ae8f0415dbeb1a9723bd8cb41c155b21f8daa38f4111382c57c4e4404" + }, + { + "alg": "SHA-384", + "content": "b00f466cde4434de7d7a7205381320be50d4f352f51cc8862d93c85338741a4dcb11a036fb580219fddcfbe55318d5c9" + }, + { + "alg": "SHA3-384", + "content": "e29ded59e3936e1deac90287f8f344801d60bf7de466f0a84c611ec49ee4e9094d1c0c42d521ba1e1469e64caaa1e6f0" + }, + { + "alg": "SHA3-256", + "content": "c33479d86b1bf092ab4a3234f84acf5216db3778686c8b7e0e192d3d86489928" + }, + { + "alg": "SHA3-512", + "content": "0842e814d2fb3a7f5f235d0eeb9986b12eb094f88c84577280b4f681c07729facb1b191d292e7ee2de33f1601e490b3f38c571e6c843c80d20fab18cedd120a7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-exporter-otlp", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry SDK Metrics", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088674" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "436d9f80e4b8f153ebe90730248cf722" + }, + { + "alg": "SHA-1", + "content": "ba5863eeda455569a4a4a3c9beee3064906c42a0" + }, + { + "alg": "SHA-256", + "content": "deeb6d784e5f1f3f10ed26011c8337e218135c40d7d0f2eaefc81595d2abdf6a" + }, + { + "alg": "SHA-512", + "content": "2fbbe66094cf77f2b27b42a2b98c4f1650d9a580f66156d0ac1a72b57e5284619a0977db701a96b1cae20bcf8ababc196849f81eedd7ad93faff773422a9ee75" + }, + { + "alg": "SHA-384", + "content": "fde08abce892593eb47bf223f9102ace13bb137fedd9e4a289e3d56c2c9c2420e963c470831c7e8f1536e4ad7582ff0e" + }, + { + "alg": "SHA3-384", + "content": "57d50afb6ff362c499ed1ed0a3f719f615541414da051286e23fef1538dbcd0156e340f4c49e39cb46270466135862aa" + }, + { + "alg": "SHA3-256", + "content": "fe48d34f1f90acbc1bbbac1f91d724fd1d668eca213b0f42f7bcced6e90789a6" + }, + { + "alg": "SHA3-512", + "content": "e4d74b81604e0e65305580dc302ce7b278b90029aea0c129a486518d860fdbcf8a61c706d5b15a742dcb1160575e21da55b147d909c3e73edcd4405547a0ba2e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-sdk-metrics", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry Log SDK", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088653" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "293fa7825646ec6c13dfd40290edafb0" + }, + { + "alg": "SHA-1", + "content": "26d6555cdd7b8173bb77e9f9b15e613f956367ac" + }, + { + "alg": "SHA-256", + "content": "3cbd2bbf9be6af35ae6f77fdfaadb47d73640d9d5cc7fafafcef73a1f784b2e2" + }, + { + "alg": "SHA-512", + "content": "fc9a6c0a42067761e0f26680805f15cf7a74bc079ab33555d8b4d1f9a808cc2416ca0ad694ce718228192bf6b079c4aadf9517621b86b7de506f5e78b015a915" + }, + { + "alg": "SHA-384", + "content": "4a174f6d4031bca8dfa057d69c9a081d73c49071cbf366d9c53b51e6bdd95860fd855a254fa9fb2702207eff95ff7c6d" + }, + { + "alg": "SHA3-384", + "content": "9dd0943fe15350d462c9ce556a93a57119d08c0047d8093f8d236b851523e8f82c66595bceb553e6e98a5a762879113c" + }, + { + "alg": "SHA3-256", + "content": "e51a70b421cf88cd90cc665671a7711f7c3e78a8a80e11b65318f7c1377ec38d" + }, + { + "alg": "SHA3-512", + "content": "2ab480b489fc02c5ddc1bd90fbe69ea82e466b0e4a2c86f1cfca0ca131f1802bce0bfbdc8fd0b9edb98ef23bbce46780c12c5d63d05c19cdce75a66043ffe8a1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-sdk-logs", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry Protocol Exporter", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088623" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "1078bf54caad9fc91ff63264e5fdd977" + }, + { + "alg": "SHA-1", + "content": "64735ebed87504c2ee80d8abd5302f8bc9178931" + }, + { + "alg": "SHA-256", + "content": "2ff7f48f6090b00fa63d646c84f0e906df1d27d7ad4a735b9cc912ae4e24fddc" + }, + { + "alg": "SHA-512", + "content": "f22d111f051f1e364dbf419d7e82cef09e098827efdfecfe1f4cdc8db03fc791da4b3064e48a8d0f516fb9db043f407f5188eb756e17d46b3b59dec754d55cc1" + }, + { + "alg": "SHA-384", + "content": "3b2e0a31bef7d9aa4f3c3fa7fa5216ae969b2c86a1e048ffed7b32bd840c1e63d614a2b68e9e872f5df05e38c891ea5a" + }, + { + "alg": "SHA3-384", + "content": "fa94e78b5a621abbab4afc798f9046c82b73a5c3c314543935192ec7be657150bbf99177361e5061d5a0435da0457d77" + }, + { + "alg": "SHA3-256", + "content": "58e8de416b5202ff2fb072200419889400973cb2ef4497d03630f91e19d69ff9" + }, + { + "alg": "SHA3-512", + "content": "fa3a52c8c0b18928d927c0bebfeb982df91cac51237aea32dac26f16a37ddd30c197a7f1ffd372f239fcf59f515957c6a33d4986f8602a891e827b60a5b6edb4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-exporter-otlp-common", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry Exporter Common", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088664" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "ad5c1e6d788bb329a1aa571b3eb6e5af" + }, + { + "alg": "SHA-1", + "content": "1b09778a1072d4ba5a1b98bc164b90fe9a40d0c9" + }, + { + "alg": "SHA-256", + "content": "c8741a06a73c34fb0ffbdaf222535b18202463867e8c3b20661b81b01c336207" + }, + { + "alg": "SHA-512", + "content": "37bc90aaba75a223d18218ea48d8ea2248fe9baa9ea337a17c1101cdaf5038bab7cd0448481a891d2d8f492b11c10f083a62e8d775503640758b475657514e82" + }, + { + "alg": "SHA-384", + "content": "3bd233cb6943aadf5f389481a46217417f3026ba9f5fa72d732f76c5c4424396491152b2c8e09d285e9037a0f16af763" + }, + { + "alg": "SHA3-384", + "content": "1480085b4b43dbf3e5513b65fcc5d9b8d9f6185f03e5883a59c9c9f3bb5a80e6009e7952449d32e73ca96ff5e0261be3" + }, + { + "alg": "SHA3-256", + "content": "05e50bb0dd465c3dc69b7738339c2f20c534799165e02501a6880dcd276fd32f" + }, + { + "alg": "SHA3-512", + "content": "9e7c5b6bace323dbdc781bee081b684421f14ace40dabecd423e0755a2a08de84540af7aad29eb2fa0355b9d1dcb2d1aee49d8f5ed18d2908a66ac79dae45a94" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-exporter-common", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-sender-okhttp@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry OkHttp Senders", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088612" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "0d7cac2362184c8e95d6fbfbd68eaf4d" + }, + { + "alg": "SHA-1", + "content": "a0d6e62487328431e56ba1766d99a51253c25372" + }, + { + "alg": "SHA-256", + "content": "a6e6b6afb311fd0748987fa04edff2d611f68176a0735edec08be856f68ac70f" + }, + { + "alg": "SHA-512", + "content": "90583249f43a65c283e89c2dd693cfbeb43a1dd565669e4a2767d6d5a4f69e64b5e85876935a9b4b86bbb3f898f99862cbb07f2e345f4f634188c87bb71c3860" + }, + { + "alg": "SHA-384", + "content": "073e02993f39366c9241e7ffca5aabeddf5ced1c2c4d891dd88c7a03892ddc2af0f4df6baf81bceeacc758152f6f2fff" + }, + { + "alg": "SHA3-384", + "content": "ed630bbdf29aa5f996c6b9f61e50c47b74718fbbb7dc5526654ab1f1d42c6c2df94a0494b78ac779a5f563e794b077e0" + }, + { + "alg": "SHA3-256", + "content": "cbc9aac09f6c781b7b1b11d5bc811374cd314274d55b12e84d9b386d6beb0b6a" + }, + { + "alg": "SHA3-512", + "content": "1cf046034e67920c06f27d3ed28a20e783e49f8b08d04017ee10b109bb9cf09bb7dae4ec985df477ed7ed49e75449c4a966b912f40ce3e6f0b12ef84e28803d1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-exporter-sender-okhttp", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-sender-okhttp@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.41.0.redhat-00001?type=jar", + "description": "OpenTelemetry SDK Auto-configuration SPI", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088571" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMTW7GHGXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.6-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "c68a1cf1b399d3baeee3619ad8bd0d2c" + }, + { + "alg": "SHA-1", + "content": "979208cf46e2ad7921e40a21c67b9ea2145912e3" + }, + { + "alg": "SHA-256", + "content": "efd55488b1681fd1eec7db8f661458f00cf1939ae9d78a88ec3562452765ab3e" + }, + { + "alg": "SHA-512", + "content": "8fe8948b3d36f20f2329477c17faee14f7d02c3b7d1e32596ed86b24b7b159fa0b43fe057b86cf5c45a57b28a889b19f153b8eaca713fe26d90400b348238131" + }, + { + "alg": "SHA-384", + "content": "e64e2f711d6a71dce020fb18cd5daa72c834314d35fefb5e2e48c4c4434255ac18f357c7392399e0ec36219914cdab95" + }, + { + "alg": "SHA3-384", + "content": "54fed0e7fc8e7fce4fdb53db8acb11d36ba572644ef9aee38ceaa7e01fd1535d51501bd11dfc90bc441d6c589e7fe810" + }, + { + "alg": "SHA3-256", + "content": "1d5f82513319cf30dd332a4ac7da48f54c1d56d9925998735c5e4f354aea19d4" + }, + { + "alg": "SHA3-512", + "content": "b8e1d66a9b840dd6208db4f606b357426fb78571b66429489b02b3326b0073082415731ac87f3ed888734470de2ffd52435a9dc8959b61661f07a619e5f69864" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "pedigree": { + "commits": [ + { + "uid": "03948fdfc780bdd7cd387f920360ad1d5504f5d1", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.41.0.redhat-00001-03948fdf" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.41.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.41.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service2@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to trace incoming and outgoing messages from Camel with Micrometer Observation", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-service2" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-service2" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-observation-service2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service2@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service1@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to trace incoming and outgoing messages from Camel with Micrometer Observation", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-service1" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-service1" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-observation-service1", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service1@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-client@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to trace incoming and outgoing messages from Camel with Micrometer Observation", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-client" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-observation/camel-example-spring-boot-observation-client" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-observation-client", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-client@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-openapi-contract-first@4.8.0.redhat-00001?type=jar", + "description": "Contract First OpenAPI example", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-openapi-contract-first" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-openapi-contract-first" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-openapi-contract-first", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-openapi-contract-first@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-rest-openapi-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Support for Rest OpenAPI", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-rest-openapi-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-rest-openapi-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895408" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "59ac910dbf309c3af1d437c1be9c9605" + }, + { + "alg": "SHA-1", + "content": "011b4e219eb719de2e1dc9f46f67bdde2d2d120a" + }, + { + "alg": "SHA-256", + "content": "664e170305aecf670d4b712bc97517b57f521626013d035b87239be5b2c431d0" + }, + { + "alg": "SHA-512", + "content": "4ac7404fe963574901d5f649e3957ea4b00a0511744eede1309d36184b915b5f4656c6abe9cb734385d4a5b2fb18efdfddabbd03b1229801c4a026c197a72917" + }, + { + "alg": "SHA-384", + "content": "4c471b74fb8155ebc08e03cb074e02ffe104c7adbf0b191f888c0ad8ab4806954938bc4a0cfd61eddd49f4f9966f1d6a" + }, + { + "alg": "SHA3-384", + "content": "19ce932c6e07a9bfa1b3dabd09ecae131517b60a61d8c66b17c035c5cdc3cee1f009353c6179de8d52cd66c7186ec209" + }, + { + "alg": "SHA3-256", + "content": "1e7ac1572933257262c7b69e65947240258bfe828622c53d46468952e10dbc0b" + }, + { + "alg": "SHA3-512", + "content": "e6afd32b94bd053adcf45def28f3e8da6d2b1111e563c9a222866f5b728cd2100bed3d3db717f3341389fbd58e23a6fe6de9761252208f99fcd28111622834fd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-rest-openapi-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-rest-openapi-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-rest-openapi@4.8.0?type=jar", + "description": "Camel REST support using OpenApi", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-rest-openapi/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-rest-openapi" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895440" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c2f6fdd1e56507497486a783bb448f3a" + }, + { + "alg": "SHA-1", + "content": "eacf68bd6ade7fd37c0443a3d4228d28ef884cee" + }, + { + "alg": "SHA-256", + "content": "900707c2200d7c36e9316e36baec341baecefcb7b61b505b48c50fc505672618" + }, + { + "alg": "SHA-512", + "content": "9459c7032ea1df019e2b8b3ca34168b251dfac800bfb25285e3176e18062540dec648fe3c4fe864583dddc03838931490d24ce0e59ba028f057abaf9ffc33543" + }, + { + "alg": "SHA-384", + "content": "6201ac8b7b21dc93ab1aeeab54c2cf1513215a82f8d29e92d8f698420df7caee5daf6e73a6f1f3937a400a487fb58611" + }, + { + "alg": "SHA3-384", + "content": "c056a7a8811f475d9d4780ccbcea190b636ea668b5d7ceb79b9054f631aba53b8d4a9561000423654309d3563e642661" + }, + { + "alg": "SHA3-256", + "content": "c28bccd89c82743929f2ca8a781dfa5111950be00b23c986a382f8f1d7cad7f5" + }, + { + "alg": "SHA3-512", + "content": "ee4167a87ade48d464d70f083f9de2c300c531bc52e2021c9a86dd5ea4cbe0ad81fb796c6c9f0c61a13861b702db1d5aa0a6844f14f15154e28a45fcccf4c9ed" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-rest-openapi", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-rest-openapi@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar", + "description": "swagger-core-jakarta", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/swagger-api/swagger-core/modules/swagger-core-jakarta" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-core/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-core/modules/swagger-core-jakarta" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13055418" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKIDB7MOXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0" + } + ], + "group": "io.swagger.core.v3", + "hashes": [ + { + "alg": "MD5", + "content": "b6606e037e370f9c3c0a7a87dc878598" + }, + { + "alg": "SHA-1", + "content": "c43ae9ff00df93290a1431737f97eb88d4a50b32" + }, + { + "alg": "SHA-256", + "content": "6c00ca9e8d3626827b2a9876a4219e01bc83fb20e4b4e9b6561d34bf84af22c5" + }, + { + "alg": "SHA-512", + "content": "74390b505d7e311e46a57daf88027aadad26b096e42417d084ea87542a39fbb3b2c0baeb166070596b69572dc5bf598c4c1d8a480063bf17cb32a1102e266b15" + }, + { + "alg": "SHA-384", + "content": "66a5bc3fee81e4689d4f3d4f7897a10327f47d3e8687993453984ca3d1811824bd94f5c1dd2250e0442ab8ad0cbf2a7d" + }, + { + "alg": "SHA3-384", + "content": "e34bf18839dd60fa905ca1afb2073861355f150f51f64b3e736fdaad2071413b5d7bcfed368d19ad3abc573f5f6b208a" + }, + { + "alg": "SHA3-256", + "content": "fee86352bff3ab3fb81af0ab739b6e490185d88a18900731f0bfb7d746bfa859" + }, + { + "alg": "SHA3-512", + "content": "3923bea28d7d54e7e166ba98701b6e6712dcad24b3a9d3a1a56c7d5fa0dcc6e997f8a362bc9c75c50551f36fdea2d6ac006e25643b8693c39b2ff7f6193a9d77" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-core-jakarta", + "pedigree": { + "commits": [ + { + "uid": "4c79c5711fe96ffffae6c1540750ac581a895294", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/swagger-api/swagger-core.git#2.2.23.redhat-00001" + }, + { + "uid": "2ac5ea387febb0e8031dea0fb966d8878a0b29bf", + "url": "https://github.com/swagger-api/swagger-core#v2.2.23" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.23.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.swagger.core.v3/swagger-annotations-jakarta@2.2.23.redhat-00001?type=jar", + "description": "swagger-annotations-jakarta", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/swagger-api/swagger-core/modules/swagger-annotations-jakarta" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-core/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-core/modules/swagger-annotations-jakarta" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13055421" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKIDB7MOXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0" + } + ], + "group": "io.swagger.core.v3", + "hashes": [ + { + "alg": "MD5", + "content": "6eeabf3a6c9357449070064691900047" + }, + { + "alg": "SHA-1", + "content": "8c4cb0094d90bf6a602febd9ab9e4410e825cad2" + }, + { + "alg": "SHA-256", + "content": "7f2ccee75ec4f3517663672e294f29a643a485180086be4c97f49ce5109dc531" + }, + { + "alg": "SHA-512", + "content": "0ea38b0102e91e1f8f4ebc8339367cd24a05f358776f0be857ecd4ac2c0df790e4f805fdcaaba1ec9a3a27d2f7381fcba991d15fc54fd322d742a164016014dc" + }, + { + "alg": "SHA-384", + "content": "41ab2cdecb5f77a69bb345d2c95abc24ef644d09de8fce9bccbb8e88f2fa52c4b764feb702acca4bbb28314c07dcdbf1" + }, + { + "alg": "SHA3-384", + "content": "8698808b1547684381133595d3d8a64f46fa5243602945e6ee21b6a67bfe68ee5d69b7160e15cd162e45306afccdb1fe" + }, + { + "alg": "SHA3-256", + "content": "d5c81cd379a5bf3548488fa116ef432b66b4ee459083093f3dc5abc6481903f2" + }, + { + "alg": "SHA3-512", + "content": "3422242c798524c5608ffc9fb46b3c9ae519979a622ddad415cced9dbc20cfb3d868e0bedc07b2c4c0ccf71efad069c02eb5963a5b0fc75542bb82f806f1e293" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-annotations-jakarta", + "pedigree": { + "commits": [ + { + "uid": "4c79c5711fe96ffffae6c1540750ac581a895294", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/swagger-api/swagger-core.git#2.2.23.redhat-00001" + }, + { + "uid": "2ac5ea387febb0e8031dea0fb966d8878a0b29bf", + "url": "https://github.com/swagger-api/swagger-core#v2.2.23" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.swagger.core.v3/swagger-annotations-jakarta@2.2.23.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.23.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar", + "description": "swagger-models-jakarta", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/swagger-api/swagger-core/modules/swagger-models-jakarta" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-core/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-core/modules/swagger-models-jakarta" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13055414" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDKIDB7MOXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0" + } + ], + "group": "io.swagger.core.v3", + "hashes": [ + { + "alg": "MD5", + "content": "3f8b35704e288a94f0ff1c5cbcf99142" + }, + { + "alg": "SHA-1", + "content": "a923854b62fd3c3b9d2496684051ea7b0aaea897" + }, + { + "alg": "SHA-256", + "content": "6f8f5c1c96781b871b0dc8bc6354fda74ff123fd54a5ebdd7d3ff22644975113" + }, + { + "alg": "SHA-512", + "content": "4573d3d24cbff492221d846263295c28e455d06a63be4842bd7f4b97978b5e4b73006d3e1fe157902f2c5d4d7c3154c805bd170a41db84f7022961bb9a94d429" + }, + { + "alg": "SHA-384", + "content": "4199da9be23c38d2481401de225a76c3ffc9cc341d36e1511610dfdf4cf457735354d79d3ade18113e537ed00f52a534" + }, + { + "alg": "SHA3-384", + "content": "fc255214a41861cdf5afb018e45127de3fb7b778624addc07941c6f23206dc0f72091a6060233aa341e325ac92ba6c22" + }, + { + "alg": "SHA3-256", + "content": "15855af9b3a8146aa618f49b59d4619329153193b055806442c29f15602ca952" + }, + { + "alg": "SHA3-512", + "content": "d10caf17e98775b0c5f2c75ead52b5ec07aa7464dc70febc30d9a66013252a3b06e3e800d12f69809944c0d733930b6230788dc13165b44af3a8cb7d0eab1673" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-models-jakarta", + "pedigree": { + "commits": [ + { + "uid": "4c79c5711fe96ffffae6c1540750ac581a895294", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/swagger-api/swagger-core.git#2.2.23.redhat-00001" + }, + { + "uid": "2ac5ea387febb0e8031dea0fb966d8878a0b29bf", + "url": "https://github.com/swagger-api/swagger-core#v2.2.23" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.23.redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.swagger.parser.v3/swagger-parser-v3@2.1.22?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/swagger-parser-project/modules/swagger-parser-v3" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-parser/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-parser/modules/swagger-parser-v3" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499083" + } + ], + "group": "io.swagger.parser.v3", + "hashes": [ + { + "alg": "MD5", + "content": "224092a86a8cea841c8b448ed46d5c40" + }, + { + "alg": "SHA-1", + "content": "58160f204b0be1921443020b4e9c074d3e5009c3" + }, + { + "alg": "SHA-256", + "content": "046fc1f9a7de7366bfba7c1b1790e1efb0e720ddc9475ad55fc5b3d34ace9175" + }, + { + "alg": "SHA-512", + "content": "02ad86f4259d7c6b4546e973fe7a790621cdf81e260a5f3acb2f4924e93eae05524066af01a63a04218ade31248913604e24ab2c02fda86df5511e5252de536d" + }, + { + "alg": "SHA-384", + "content": "fde3d4a354d44bdccca02a4b694aa918eeb1cd63d419cf2c9037ee044a482a90e73955776530f53bd4b6f45178fa72df" + }, + { + "alg": "SHA3-384", + "content": "e828da888d9b9316d5b11c85e767a0c793a3588c40fd59239a9ec296802ad57dddcc74628440c970f4000d0209aa693c" + }, + { + "alg": "SHA3-256", + "content": "e6a0bf436cd08a8a577d5e9383c96d1a560eddc789aabdaa7cda599f9d2d954f" + }, + { + "alg": "SHA3-512", + "content": "a94ec746b2183e1e71861fed7d551e5b976ecd88a6f31baae054f569d3bcd53f7bff0acdbe7386221add99adaa5cd53dcf6e7536b7699fd1bedb3b05483941da" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-parser-v3", + "purl": "pkg:maven/io.swagger.parser.v3/swagger-parser-v3@2.1.22?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.22" + }, + { + "bom-ref": "pkg:maven/io.swagger.parser.v3/swagger-parser-core@2.1.22?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/swagger-parser-project/modules/swagger-parser-core" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-parser/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-parser/modules/swagger-parser-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499076" + } + ], + "group": "io.swagger.parser.v3", + "hashes": [ + { + "alg": "MD5", + "content": "79fb8e8f4163f96b73a4f75a01856d0b" + }, + { + "alg": "SHA-1", + "content": "ae0a729007d0fbeda6d0a037f24b438287e304ea" + }, + { + "alg": "SHA-256", + "content": "56bafdfec20f69e0acb42f1067fc89754c0eff930a8e6518752fb51059e93eba" + }, + { + "alg": "SHA-512", + "content": "ed2fe4cf802a33fcf6418e85f70348384d839d630708798de89e4596878cb56e341b2fefed9936df86e782af441765ae98b4c9cbea9661c934c8c695536f51eb" + }, + { + "alg": "SHA-384", + "content": "347309be09cda504138ed601e7dcb8b3dfd7f110973c16c38df30e43888dc1136657dbda8b15c822fb0509d8223cd9c3" + }, + { + "alg": "SHA3-384", + "content": "3ef0b0f11687a3f8b71709939ec23e74e70783162a49f4b3fa1b90b06772232f358226492e8fcfe02166a82973601db9" + }, + { + "alg": "SHA3-256", + "content": "b6ce4700135dcd836235c96a98baeb8bddc0b784b42220e5d70b1b09677c90a1" + }, + { + "alg": "SHA3-512", + "content": "78350d1698156c89faf4f5b7de1fba10d85a8db39280ceb0b0c0203d1efb23693751cca2e0f62a2371dfc9954b7675d89cc1bad2f4daeb5ecd53ae17bb1034bd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-parser-core", + "purl": "pkg:maven/io.swagger.parser.v3/swagger-parser-core@2.1.22?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.22" + }, + { + "bom-ref": "pkg:maven/io.swagger.parser.v3/swagger-parser-safe-url-resolver@2.1.22?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/swagger-parser-project/modules/swagger-parser-safe-url-resolver" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-parser/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-parser/modules/swagger-parser-safe-url-resolver" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499079" + } + ], + "group": "io.swagger.parser.v3", + "hashes": [ + { + "alg": "MD5", + "content": "1e99c062cb51ad1d2df77878436db477" + }, + { + "alg": "SHA-1", + "content": "572c9d6c9d320f1b0e8ce068f849f619f92e71ac" + }, + { + "alg": "SHA-256", + "content": "4cb4ab341ab79b33a7977614558986d12a65f7d17eb398d46587310c98406644" + }, + { + "alg": "SHA-512", + "content": "fa26592fb436471b8c4b6a6c00e5a713bbd7fcf8cff886b962c586065e825086f88e041d9079417794c849c02c7dbb90dc40ed29ba2ac5cfa77efa0b9fef273f" + }, + { + "alg": "SHA-384", + "content": "1ac874ec99c20ae99b390b017b365933bef9bbd27d9b4ee18ca7cf95f9cab3b6e2dcd84dfa0df91908e8f4743466b6f4" + }, + { + "alg": "SHA3-384", + "content": "1d848c863f8b00843221b29aaf88f4081a2f6875883313e575af2b42afc122e02d4bd3738d248ca713f6e8c221d7e85e" + }, + { + "alg": "SHA3-256", + "content": "a62d6c0e60231a97708cf3073b30b9cb00f97af26758db10330ccd5de580df0b" + }, + { + "alg": "SHA3-512", + "content": "e5222655861843ab06d790fb2e355ef9fa955b5d282aae527f1c5b213697ea52f1237252120986126e49842a967f83a49ec4479201f557d445f6cd1dc611ab06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-parser-safe-url-resolver", + "purl": "pkg:maven/io.swagger.parser.v3/swagger-parser-safe-url-resolver@2.1.22?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.22" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-console-starter@4.8.0?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-console-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-console-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895396" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "a45ad7cccdb0450a1a78c663f73cb7ce" + }, + { + "alg": "SHA-1", + "content": "b3e06b314d59718ca799dcbba38e536fb4e05e45" + }, + { + "alg": "SHA-256", + "content": "12a3c4bd3033a7c016162cdd7d01ca44617941f139eb41e84752ae4bbf6d8a32" + }, + { + "alg": "SHA-512", + "content": "0826ffc1b5331b676abeb8f8cc1ad5fdd8f1d4fab175a82b86eee2704bb84060cd8c6d5596114debe6b902c02b920b6e46e8ce7110e6449413e6954e6f706ac6" + }, + { + "alg": "SHA-384", + "content": "1d07785c447766ef12c026e7c86be325485de425cad2d9238c2f815f611631d3d55df35a818b6f8f40c7e773266c7e1c" + }, + { + "alg": "SHA3-384", + "content": "162a1be8a7f3d183d1534324baf1cf194a6610e1d3299e137c5a78cf0c4127669a25e3a0728b516cf6038a7b4a852248" + }, + { + "alg": "SHA3-256", + "content": "cbf147e9fd097e3b4a605d414a92bfce76db05bcf255a7b874c70fdfad13d6e1" + }, + { + "alg": "SHA3-512", + "content": "3157bfc293dd56abaf8e210bb929fa89feb337820e9dc5dc182815682ad1debc63a6e7b2262ce1a773f06f86289be66318a36c1db118ebd876e847c5c6bf68d5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-console-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-console-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-console@4.8.0?type=jar", + "description": "Camel Developer Console", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-console/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-console" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895422" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "02eff9b114d867de3b8fe926458fad17" + }, + { + "alg": "SHA-1", + "content": "feaf18b1f588c2897ca4105a54e9758e9174ecc7" + }, + { + "alg": "SHA-256", + "content": "890bd7682c9db6e233f580302ac76e06083186f29e5e872d06dcd9cadab8af2e" + }, + { + "alg": "SHA-512", + "content": "e2f62c385a55da9638e229a79fe3367b7125fdee23976b7cb2db16842f29cb62d4bfb04f34c49928f3f0d28c3aeabe52774d83b7dde99bb766387045210fd4ab" + }, + { + "alg": "SHA-384", + "content": "484db690789c3c71d087edcb619c7937ed8a87fdbd5fc0b1fdb0935188cb01be151844a9d4ebbe7bc220578596e5a7b5" + }, + { + "alg": "SHA3-384", + "content": "f3519a61bae638d418d751ce68c5166efeb1a77b3a52f16519675320f43d4c3f6cceec66d11fa3b541ccf377b0a0def2" + }, + { + "alg": "SHA3-256", + "content": "6f43ed5cf455cebb1b8949c8801cb46a7ffafd26e272cda4f989ccb31f9ecd76" + }, + { + "alg": "SHA3-512", + "content": "108b4659e9837f4ea228dec66876d15222dd04ba058c7361d5ddecaceb9c9134f8ae15d8f5814fd0c6e64cccb89700a0083713bf0823a90c2863321314f9ad8a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-console", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-console@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-cli-connector-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel DSL :: CLI Connector", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-cli-connector-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/dsl-starter/camel-cli-connector-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234909" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "224d3ef16276afa8e4679d39adf42836" + }, + { + "alg": "SHA-1", + "content": "27afc79b933a83023f549b2ebc79321283f382ab" + }, + { + "alg": "SHA-256", + "content": "b00666c9942fefd9eca644b2dc09d9ec7aaf8e6e48d3fc392bbbe019267ad1a3" + }, + { + "alg": "SHA-512", + "content": "ef8c46f04c0fd684deee691cbcee00a6ffc1d15833f63fb4aaf909db1d1b205e1326aaa4d2dc9ebc3f81eda6b8ba1faeeb453ff26516246e7a7deca68a63529d" + }, + { + "alg": "SHA-384", + "content": "02fdec134ae41d1dde690fe06f1b9f2d9b31a19db043170a1dedea447c302082bc373d8d1d1366d8923eb351a9bad05b" + }, + { + "alg": "SHA3-384", + "content": "bc51a0eaf4ee83babda8321397f6a65a46e4fced283398e3cdf4a437e5c021cba414ed7a6fe644fb6b88ef94f44251b9" + }, + { + "alg": "SHA3-256", + "content": "122e49a4b82023648791f7d67b56ab9384db8b2368c2ee478407e10d5b1b79f7" + }, + { + "alg": "SHA3-512", + "content": "5ae43cbbd35dee9b94692419fe95261d992cf21e76a3de0e49bb483f27cf1bf23d7de02dfca4b06edda29825549aaa1cd231217d7e6c3257de7c8fc8c4f6d7fb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cli-connector-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-cli-connector-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cli-connector@4.8.0.redhat-00017?type=jar", + "description": "Runtime adapter connecting with Camel CLI", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-cli-connector/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/dsl/camel-cli-connector" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234284" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "89a392359cf178a75d3ff7f6e0d6f580" + }, + { + "alg": "SHA-1", + "content": "ceadf5bc2b2c5461e836cb72c4b8b0e445940918" + }, + { + "alg": "SHA-256", + "content": "c2106c6e53065f54c8b60df9c4ebab094f17d095aa94d6c918057a13f759f711" + }, + { + "alg": "SHA-512", + "content": "62f274b9ca560815371ec853beb808f4d31728195cde8e63ce3342a44d2c8b4b691dc3d64c4f0d5df9247730bc17654ced5d333a35db2f8dbc50849f1d116523" + }, + { + "alg": "SHA-384", + "content": "3403437e014a807902e8afecdd0ccd157f3504a63874e553393b9373ae07e5e75e048c908cece404c288fe93b4b7ffa2" + }, + { + "alg": "SHA3-384", + "content": "38a89fe578e872f974d958ef1cf97281a728218e6ca846ef27978b5c59fdc924f2b7e9641dc43dba5b586994617b16dc" + }, + { + "alg": "SHA3-256", + "content": "a798e482bbc36994474ac0733c9c22dc7317950c743b519d4ea894869df8bac2" + }, + { + "alg": "SHA3-512", + "content": "b511f3e80d9dad485432a4d4832d47723feaac2960d1bdcca853ba503f6aa1de78654724d424058c3e0a135274b7c3f6baa46cea959ca2e903945d3444bea20f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cli-connector", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cli-connector@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-opentelemetry", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-carbooking@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Camel with OpenTelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-carbooking" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-carbooking" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-opentelemetry-carbooking", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-carbooking@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Support for Opentelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-opentelemetry-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-opentelemetry-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234679" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "0020891b77698a4bd5738b30ef7dbe61" + }, + { + "alg": "SHA-1", + "content": "60d36b9b723be344554350f59fc1dad66e883480" + }, + { + "alg": "SHA-256", + "content": "15b94714c100a095a6feafbcd3da51f50e590eef4d585803be8909a94bb3785b" + }, + { + "alg": "SHA-512", + "content": "17c8acb65e61aa9e8abbadb9155adbaa630baaaf1ad7f0b69c1930befa2e6696d88961ea9904dbecb8e32f24381e371e21c229e994426fed1a4eec1727372f4d" + }, + { + "alg": "SHA-384", + "content": "296b503e0361833cea805df7933265bc7068d2335c49ce6f6a13cd77ff39b8285a717e76f48517f33aac147a3c653de8" + }, + { + "alg": "SHA3-384", + "content": "29b2426f02049559c973c64dee14cb43a296a18ade9f5e620866e633306bd40f9e20069a55b823308be9079a81935aad" + }, + { + "alg": "SHA3-256", + "content": "c8f3409e1a80f3bee48008600b961e20552f2f0bc7897bde5cfef9aa5e0bcc9c" + }, + { + "alg": "SHA3-512", + "content": "2e938126319f3fb23ebaf2d0c2fe81d20778a9b3e33ebe79963432b2e2d8821b55a53571cd990bc2b175bd2dac54e7187d2d729750f95a11625b4b5c5b3e7e0e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-opentelemetry-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-opentelemetry@4.8.0.redhat-00017?type=jar", + "description": "Distributed tracing using OpenTelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-opentelemetry/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-opentelemetry" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233886" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "3e62b75915d23894b3ab545cc61ffd7b" + }, + { + "alg": "SHA-1", + "content": "f1cdd7ea740651cca51984a829c1dbb817179e23" + }, + { + "alg": "SHA-256", + "content": "ccc8337b98e860ac7e59d8c21c081b8b4018cfe03e022f6783bd24a56859d23d" + }, + { + "alg": "SHA-512", + "content": "b17b498474cd36818a598d962aaf9e38474aabd055197971bfb13cf13e2ee38f3c04e851fb7275ca7262ee9632a3eba3f79c3f137b3985e1a64abbabe0ab59c4" + }, + { + "alg": "SHA-384", + "content": "352a12ff618460ccdffee977e3b24aac481e0a9377d17f8d12f8404509c85dcff3349c8acea0c500e703899b45778ff6" + }, + { + "alg": "SHA3-384", + "content": "56a01df5e070bf9bdab7318875216b498b43936a9dc90ef03924d2dc3eebbedd5602d6f467bb708a0cdf96181083ac48" + }, + { + "alg": "SHA3-256", + "content": "a7363ed2d70b69e9bb62b0263663ba2df4ae6180934a581b451ed5300243d14e" + }, + { + "alg": "SHA3-512", + "content": "aa40f151ebba6851e0218e2282db902a344b5364104ed040fa80665a9eb9be8b34b5c787b793b185fcfeb97094899d3b6a572a5976633ba744ed31d3b9bbdbd2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-opentelemetry", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-opentelemetry@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-tracing@4.8.0.redhat-00017?type=jar", + "description": "Distributed tracing common interfaces", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-tracing/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-tracing" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233592" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "7589a7a017e0350b95e012ce90ca6af4" + }, + { + "alg": "SHA-1", + "content": "c9a6d779602b942a2b09130f32e54ab86cf3c561" + }, + { + "alg": "SHA-256", + "content": "1ab9a723c67aaa2290584b3c721c518e06eba53350a2c7eaf47420523d8d1780" + }, + { + "alg": "SHA-512", + "content": "83af6924f252ecaa210ab8d02ba66e15127ed9fce1f7d52760c5608a92fdb1bc0a4ece0b6624286e6fcdb6cafe6f29186eb28febe902b68e9d9512f6be39cc39" + }, + { + "alg": "SHA-384", + "content": "00f538cdc3e33f75a219c02ae5346e0355954d963181fce662cfd1e5c115658b6c77fdda86ff8060bda7c5e71ad98105" + }, + { + "alg": "SHA3-384", + "content": "cf67f71efeeff4eedd8fbf54c88c855aa43ae2adff9012a1e04c32dfdcb71cbfcac9b95107981cdbbcd841b39b9d601b" + }, + { + "alg": "SHA3-256", + "content": "d1e431a235def63eafff38f10de2ce6259ba2d159d60333437b757443b6ea975" + }, + { + "alg": "SHA3-512", + "content": "309762af93d7379b0c2f7a12f68037d1ab17e256c0b75dd820b170ad3231edd06663ab0bcf75a8cfed65310a84ed2ab79c05d0d92ca338d21d9f2b0923b68408" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-tracing", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-tracing@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.grpc/grpc-netty-shaded@1.66.0?type=jar", + "description": "gRPC: Netty Shaded", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/grpc/grpc-java" + }, + { + "type": "vcs", + "url": "https://github.com/grpc/grpc-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865556" + } + ], + "group": "io.grpc", + "hashes": [ + { + "alg": "MD5", + "content": "efcf8bd3860282c929e748d40b543112" + }, + { + "alg": "SHA-1", + "content": "41662eda67d8e131e2c87cc82070cd8102499ed6" + }, + { + "alg": "SHA-256", + "content": "909c3465b9e287d81a2478f8fbc0985a5c3dcfa72f98a77ef0a5dcbbe41ba2e5" + }, + { + "alg": "SHA-512", + "content": "a613172229f2424f15155b0f25d03a6222b43b29f64c5af4f3ddaa430dd8e2704db953ad8fc99ee725eebd21aa797077a1698cbf07512ab26c23917e58394a01" + }, + { + "alg": "SHA-384", + "content": "c99a814c03d76c9866fc0a2ff73416c972d60bc7c9a948d6da3f8cde3cfbf336e584b3a96be5a72a6f1d543897b0cb6c" + }, + { + "alg": "SHA3-384", + "content": "0fb808c4a8048e5ac9d8add0c8908196e34eda5ac2e017f2bc490a9930efb1ed75bac58762a62b21925b8d3addbdb59d" + }, + { + "alg": "SHA3-256", + "content": "8c0813e25b65c1c66cd160b4f85bc987405a5923027e389c28ace38adc6b8388" + }, + { + "alg": "SHA3-512", + "content": "b626edadbc78abb94748ac57c2f3d18a91ca99387168d33f220a61546479ed9d988c8186ee6b00b060bbc94a07b2f467ad3d94ba7081e2e3303270bc051c6311" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "grpc-netty-shaded", + "purl": "pkg:maven/io.grpc/grpc-netty-shaded@1.66.0?type=jar", + "scope": "required", + "type": "library", + "version": "1.66.0" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.23.1.alpha-redhat-00001?type=jar", + "description": "OpenTelemetry Semantic Conventions", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/opentelemetry-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13088995" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDMUWUXTOXIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/opentelemetry-java.git" + } + ], + "group": "io.opentelemetry", + "hashes": [ + { + "alg": "MD5", + "content": "11a31b3bc0eb079bfb4098accaac0793" + }, + { + "alg": "SHA-1", + "content": "42571a7be502799cb409fb66a8555e55279c8e1a" + }, + { + "alg": "SHA-256", + "content": "fa06d490cd407ce9228c25250eec44762ecc03ff5dffae4324cd67e9e930d132" + }, + { + "alg": "SHA-512", + "content": "3acf53f135734e8aee2faf2b6256835252f9e0744d7d7f5b6220f38e48285f16296b663340e712586ae06b24470789795ab27d7a3b3d93f436d517637d44b771" + }, + { + "alg": "SHA-384", + "content": "cd3e8cc5eb4ee252d4671e9eb34d5a2f9a722748cbd71e44c753230592d50adf954246d7292a6b0d97ab9b7efbb46b40" + }, + { + "alg": "SHA3-384", + "content": "43da234f6b52366e5284574f609e67358cf51d89d12a23ed01a2ffdd146e30e7f57d7d3e63f5151f4cc32227bd5ece7e" + }, + { + "alg": "SHA3-256", + "content": "56fb1d51bf0577371481cf6196121566e6e8aa403e7a87deb3cfb39f90d48b6c" + }, + { + "alg": "SHA3-512", + "content": "3dba4c1da1bdf51799efef9c2b99949ae33cd429e627610d12f68def53ffef31d67c1b134aaf6b12735531e9b06b48e160ee62b42f81e5d4cce099609581bf2f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-semconv", + "pedigree": { + "commits": [ + { + "uid": "ab64f96de079a085cb93703d3f2045efc2a06068", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/opentelemetry-java.git#1.23.1.redhat-00001-ab64f96d" + }, + { + "uid": "49577ffbde33567d258b588c6567ebb1b798a657", + "url": "https://github.com/open-telemetry/opentelemetry-java.git#v1.23.1" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.23.1.alpha-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.23.1.alpha-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-flightbooking@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Camel with OpenTelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-flightbooking" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-flightbooking" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-opentelemetry-flightbooking", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-flightbooking@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-hotelbooking@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Camel with OpenTelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-hotelbooking" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-hotelbooking" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-opentelemetry-hotelbooking", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-hotelbooking@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-tripbooking@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Camel with OpenTelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-tripbooking" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-opentelemetry/camel-example-spring-boot-opentelemetry-tripbooking" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-opentelemetry-tripbooking", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-tripbooking@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-paho-mqtt5-shared-subscriptions@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to set up multiple mqtt5 consumers that use shared subscription feature of MQTT5", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-paho-mqtt5-shared-subscriptions" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-paho-mqtt5-shared-subscriptions" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-paho-mqtt5-shared-subscriptions", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-paho-mqtt5-shared-subscriptions@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-paho-mqtt5-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-paho-mqtt5-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-paho-mqtt5-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234944" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "bf11de43f2554a562b9d9dd18bb9a1ed" + }, + { + "alg": "SHA-1", + "content": "fb767533728e4c9d16190f9509bff61c4a511abf" + }, + { + "alg": "SHA-256", + "content": "707721f3f509e0b6adcccf58f8d1c2e26c2391e8909a0e0ab628e84e8847c03a" + }, + { + "alg": "SHA-512", + "content": "612ea06022a124fc02f4a5353f014ee933b05648f5d4f6bf089353299b7e3cd3ebac95885af9291d6bf59ce9af728809c5904ec38d950c4bf689e12952ad3c6d" + }, + { + "alg": "SHA-384", + "content": "17c794b5956b90350afe4130b1a1950b4ff82c029f37f77f961da0be40b38d8f12af772ff2560a9242c43eb03ac4e2ec" + }, + { + "alg": "SHA3-384", + "content": "f1ec00012cceb0da02dc8172bbff14a6aad5c3050ec1d2dbe595b3d52cf9ce7a028219b48d9b881ef2fa0502df35e7a0" + }, + { + "alg": "SHA3-256", + "content": "c8384b887fad44810c07fc74d4a7ac2277b940ef0af6092228f34c54c0d1d72e" + }, + { + "alg": "SHA3-512", + "content": "05d19cc5e973198ca3f4d643247099c8e6e4c6c4737007000f83ba85875216197dd8acc4f5eae7e7bff7d4f27dba050e8e8df98ee16b6f5959aa5a181c90d521" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-paho-mqtt5-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-paho-mqtt5-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-paho-mqtt5@4.8.0.redhat-00017?type=jar", + "description": "Camel Eclipse Paho support for MQTT v5", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-paho-mqtt5/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-paho-mqtt5" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233763" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a3e070702fb30a21c09b5fed7bc85954" + }, + { + "alg": "SHA-1", + "content": "06ab57a86924b1f0c9419f32cec08b52b8674d5b" + }, + { + "alg": "SHA-256", + "content": "4c7d0460cf2869073a26e43a6b9d6c18a00e615c80303665bfbb0ef7b241a9ee" + }, + { + "alg": "SHA-512", + "content": "5948605103c28c281bbc5bb17c66e49f913dbdb385ad4cd43ae99ea7906c0c448c75fbca9aecc3e5a1a53fdba04411305eea03296f3cff47c1245744216ec4c4" + }, + { + "alg": "SHA-384", + "content": "1743ea497a1d6f11e3c44ec3a7bfa9f6302b6bb76aadf9b9ae1a746442ce0ca1365999321dd0ec6092d0f270b1ac0272" + }, + { + "alg": "SHA3-384", + "content": "e6caa923f89aaefbca907a9a4946fe4b91339e4020ff4c4615fe03512e36ec311d4aa5cc1d7cce0004f39ac59c7ebd6b" + }, + { + "alg": "SHA3-256", + "content": "db74c3e3e1430862ea0c749b47439bc646d2df1f23f5d80f41f6c67ff5fd5205" + }, + { + "alg": "SHA3-512", + "content": "d762f88f8fd115bae27ec712350906d219fdb748abb75da7a1d4db52256e716a890b6d08ba0407e8b9b5ebf56d225fdac7c8b1fa67be3955d934756a30ee06c1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-paho-mqtt5", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-paho-mqtt5@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.eclipse.paho/org.eclipse.paho.mqttv5.client@1.2.5.redhat-00003?type=jar", + "description": "The Paho project provides open-source implementations of open and standard messaging protocols aimed at new, existing, and emerging applications for Machine to Machine (M2M) and Internet of Things (IoT).", + "externalReferences": [ + { + "type": "website", + "url": "http://www.eclipse.org/paho/org.eclipse.paho.mqttv5.client" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse/paho.mqtt.java.git/org.eclipse.paho.mqttv5.client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10841286" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A2PW6YTQQHQBS" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.10-9-mx-mvn3.6.0:1.0.4" + } + ], + "group": "org.eclipse.paho", + "hashes": [ + { + "alg": "MD5", + "content": "c94607f0a0323f492f3421de398ffdbd" + }, + { + "alg": "SHA-1", + "content": "56ba2f638e9973b2cfb70e15e098086cd65081b3" + }, + { + "alg": "SHA-256", + "content": "b6669bb7bc7776900bcf74fb58666c9d919ffa0805d4f494e63f9b0b4680ae9c" + }, + { + "alg": "SHA-512", + "content": "99876dd26a5256e72166adf60c6f0c3078b2efe1514057d0f5069313bc2b057d89e8265aeb7853b8b2f9aef14ddfee6f0d091d7e0f16fa5a41d4e6d6c629cb4d" + }, + { + "alg": "SHA-384", + "content": "d9c0ec4f4a3c0c2dfafbbc968e403c13305bf673ff7d16795f88777bb84d950ae6ef85be4f6f56270546da8dab3d4385" + }, + { + "alg": "SHA3-384", + "content": "8b44e6f5eee6392ef12c889891c8608bc328a4c94c83d6a9979991fc6068404060bb16f1e3b8e857cce82e26b4e7bff4" + }, + { + "alg": "SHA3-256", + "content": "f2d20ab7b06f5135967ebb160f16854bf61c0a0047448e487e60b93ea315e597" + }, + { + "alg": "SHA3-512", + "content": "3eef9d80aa33b712ba34c94cbd994e50381d2dfd5bff6084214b8d9294fe8062f929c4f1ebff96a1070fb14cc272a5119fe8b4a90aa6a247fd7bb59f65acab10" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "name": "org.eclipse.paho.mqttv5.client", + "pedigree": { + "commits": [ + { + "uid": "de726b88641c66055b900afad1c833750ed60fb0", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/paho.mqtt.java.git#1.2.5.redhat-00003" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.eclipse.paho/org.eclipse.paho.mqttv5.client@1.2.5.redhat-00003?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.2.5.redhat-00003" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-platform-http@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST DSL with platform HTTP", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-platform-http" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-platform-http" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-platform-http", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-platform-http@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-pojo@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel POJO routing with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-pojo" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-pojo" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-pojo", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-pojo@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-quartz@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel Quartz and Camel Log with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-quartz" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-quartz" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-quartz", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-quartz@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-quartz-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Quartz support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-quartz-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-quartz-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234874" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "277cfe28ebc69ee38a071942b3d5d495" + }, + { + "alg": "SHA-1", + "content": "8751abea5945b34498a4a7a99f41e9d86988a4c3" + }, + { + "alg": "SHA-256", + "content": "b3e5bea408b46ba76791aa07156c2e2f828b3ce3240f803c3fc83d3874ef9d2c" + }, + { + "alg": "SHA-512", + "content": "6e312e389104411fbc18f7cf1e8c259aadbbb7769b95d8fe0ea532eb321a6d80f95b337283183a7b6f69bd882bdcf9d728a81e7dc4149e68140ee07d70cee004" + }, + { + "alg": "SHA-384", + "content": "c3a6b80f9a50f7321d86b546b017f69b252c16817fdfa865ef34926458fd6a1a14d34e2a7a16e4438c1d14cc9523991d" + }, + { + "alg": "SHA3-384", + "content": "c607a25094085d40fc7f0eedd34704ea318f45fabf1dc338d15aabe9e1a091fd8781d3e7777154da8bd85e4f708c276d" + }, + { + "alg": "SHA3-256", + "content": "b1f205800fdb168d35e238256bdbb8ce50343c45d1963c7cdf6a7a431d7969a2" + }, + { + "alg": "SHA3-512", + "content": "387f12fff3a2109b8f4845beae9841acc740f93b0c71abef04a5cda1b71a4aef769c659b2ff9029ab70b7d9fb066e3938af388026dce7e5fa00b36ad551747f2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-quartz-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-quartz-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-quartz@4.8.0.redhat-00017?type=jar", + "description": "Camel Quartz support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-quartz/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-quartz" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234162" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "4df04209daad89c745f965d1277fae2c" + }, + { + "alg": "SHA-1", + "content": "b2de41f2edf47c80da4d8bb4564caecfe7578a87" + }, + { + "alg": "SHA-256", + "content": "28aa15be17beaa852946c790f46befa3f7b7be1cf59bbe802a72e0bbd6322171" + }, + { + "alg": "SHA-512", + "content": "feb8e018b81661c7d276ddd7b0f7b1337ca171adad9af6326ac51955753deaf8dfe217efc516b7984b341626b519f65ac80b11bd21bffbf222884a6763ff9b3e" + }, + { + "alg": "SHA-384", + "content": "4cde9354d0c9a339e0e92c5516871bf7459169af4895ce2d849b2981dabd106b6bd4cecfbbb3e28744552256963afcf8" + }, + { + "alg": "SHA3-384", + "content": "1dd9d11ac5dcc0a8b022d3859e5f778691697a1624f5b109a095aa10ba58d14c939f6c9e5d102316167786bc5435541d" + }, + { + "alg": "SHA3-256", + "content": "fede4ea857934aac7200532dca2755ba355d1ce1ed03da5972332738dc9a9a8f" + }, + { + "alg": "SHA3-512", + "content": "34506b760f9b0377f014a2c808b9910369d7dc4c3d15e7b44ee0d2360aa4afbdab6f015701078c7768c527f10cbcd6206fd9ed04a03616d2fd87d2f25d434ba7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-quartz", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-quartz@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.quartz-scheduler/quartz@2.3.2?type=jar", + "description": "Enterprise Job Scheduler", + "externalReferences": [ + { + "type": "website", + "url": "http://www.quartz-scheduler.org/quartz" + }, + { + "type": "distribution", + "url": "http://nexus.terracotta.eur.ad.sag/content/repositories/terracotta-staging" + }, + { + "type": "issue-tracker", + "url": "https://github.com/quartz-scheduler/quartz/issues" + }, + { + "type": "vcs", + "url": "https://github.com/quartz-scheduler/quartz/quartz" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/2779602" + } + ], + "group": "org.quartz-scheduler", + "hashes": [ + { + "alg": "MD5", + "content": "d7299dbaec0e0ed7af281b07cc40c8c1" + }, + { + "alg": "SHA-1", + "content": "18a6d6b5a40b77bd060b34cb9f2acadc4bae7c8a" + }, + { + "alg": "SHA-256", + "content": "639c6a675bc472e1568df9d8c954ff702da6f83ed27da0ff9a7bd12ed73b8bf0" + }, + { + "alg": "SHA-512", + "content": "d9154efdf419e9b9a521970cb6fc63697541424387a2c0b3e8343e3a5daf74fc532ba3da8f4bf557a42557ad820e03992377183422df2d3e1e6e2e1b284799ca" + }, + { + "alg": "SHA-384", + "content": "97bbf915b5053bd11fa082b2145c8e068efdaf1f9905202f67a8662f9983d2305f43df65222fe9b82d1fc36ad333b76b" + }, + { + "alg": "SHA3-384", + "content": "cf56aaf3211919124c69e51706571a121abad8246d7a813811ad9a7cc62f24f8f3fe4aaed9cfbf0c6069f1838b105028" + }, + { + "alg": "SHA3-256", + "content": "1d38659d9d425f74844921a1a404dbdbec04192592d85ce3870a4f5af6281d8d" + }, + { + "alg": "SHA3-512", + "content": "3f94dfb237c464471c8f660613cb51bc69f5663d9657ab08e4801a994a202f4c08be8a4ea2448807a16b046c39cbbb32a6b0136ea3ef128640def88ee0e4d28d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "quartz", + "publisher": "Terracotta, Inc.", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2?type=jar", + "scope": "required", + "type": "library", + "version": "2.3.2" + }, + { + "bom-ref": "pkg:maven/com.mchange/mchange-commons-java@0.2.15?type=jar", + "description": "mchange-commons-java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/swaldman/mchange-commons-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/1318021" + } + ], + "group": "com.mchange", + "hashes": [ + { + "alg": "MD5", + "content": "97c4575d9d49d9afb71492e6bb4417da" + }, + { + "alg": "SHA-1", + "content": "6ef5abe5f1b94ac45b7b5bad42d871da4fda6bbc" + }, + { + "alg": "SHA-256", + "content": "2b8fce65e95a3e968d5ab3507e2833f43df3daee0635ee51c7ce33343bb3a21c" + }, + { + "alg": "SHA-512", + "content": "288bcc948b0438b4c9d67189eff87d1c7b7cbbac386a295af86c0606021a904e0501b42eec3b788aeffd686edec5bea4a30d3698b6dece99d8f16b692cfd41ac" + }, + { + "alg": "SHA-384", + "content": "8f98d0903850e5d5440f186f54e7a06890483c8d7150ce5e224242001309b8cb2e04cacb9a518d6531a59f37b1c599b7" + }, + { + "alg": "SHA3-384", + "content": "f06ab7858ba9e5370f33ab0cdda77f3c783aad66ae6807304bee001568df8a5a0d5eba8b2a8ff2126dbec0719d5cabda" + }, + { + "alg": "SHA3-256", + "content": "069ba8469c05d642d3c3e43bad83bf551f01c27d64a4b4efd07cb90d75f841cb" + }, + { + "alg": "SHA3-512", + "content": "d68093be5b91ea4461c152d2ee28e8d6cecfb6208fa4ca97b1a1d97bc2b72956b7e5b2330fc03fabfd4453ea64e454b7d9093933e6dc982cd278a7b4688ae2ad" + } + ], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "name": "mchange-commons-java", + "publisher": "com.mchange", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15?type=jar", + "scope": "required", + "type": "library", + "version": "0.2.15" + }, + { + "bom-ref": "pkg:maven/com.mchange/c3p0@0.10.1?type=jar", + "description": "A mature JDBC3+ Connection pooling library", + "externalReferences": [ + { + "type": "website", + "url": "https://www.mchange.com/projects/c3p0" + }, + { + "type": "vcs", + "url": "https://github.com/swaldman/c3p0" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865404" + } + ], + "group": "com.mchange", + "hashes": [ + { + "alg": "MD5", + "content": "f68b8bf544d39746f19e19407d1db5b9" + }, + { + "alg": "SHA-1", + "content": "719d269cd51b6877081a6dc88a213d5d1479a915" + }, + { + "alg": "SHA-256", + "content": "aae9a46d26e4908d3724018e6a9029cb6155f38af103d40c896892727d9a9956" + }, + { + "alg": "SHA-512", + "content": "af65fc7c64ee515a3583933f145dacfb8c65f8fc13ccda4147636cb79be3bac96051e39379884f26d52dc997bb0d4f19aa4ccadec408961a11a14268d1a696d9" + }, + { + "alg": "SHA-384", + "content": "688ebd3fbcd9ad1fa31a1ad8a336122b60116e067d3b2f2eb1a995786b10a9b0fddf45ff53fea2f13a0707e02e489914" + }, + { + "alg": "SHA3-384", + "content": "dd281e465aa0a619725ab91959930cc7102e2402e95288805c82c4be70c86ba4ba1472366291082d99cb0adeb7cf4987" + }, + { + "alg": "SHA3-256", + "content": "4a77955327785e797958dce2e14efe316e64763f64a5d2ea5304e355d3d5dbb7" + }, + { + "alg": "SHA3-512", + "content": "85108d878a0a2391c1a1af0ff3f656119097cedcc70dd190c9a0e23529737203f2456b3bbd6906a98d1df3384b5967e3e72269cef22daadaf918223a1d87eef0" + } + ], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "EPL-1.0", + "url": "http://www.eclipse.org/legal/epl-v10.html" + } + } + ], + "name": "c3p0", + "purl": "pkg:maven/com.mchange/c3p0@0.10.1?type=jar", + "scope": "required", + "type": "library", + "version": "0.10.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rabbitmq@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel and RabbitMQ", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rabbitmq" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rabbitmq" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rabbitmq", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rabbitmq@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-amqp@3.3.6?type=jar", + "description": "Starter for using Spring AMQP and Rabbit MQ", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235160" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "8a90b5fd435ed6e873fea9c104c230aa" + }, + { + "alg": "SHA-1", + "content": "5e5ae37e1149be52a12c339d8d324ce7209607d0" + }, + { + "alg": "SHA-256", + "content": "c01966304f56823d8252b9fbf09f0b05509484dc94f3d5cea7a990ab332d4557" + }, + { + "alg": "SHA-512", + "content": "aca902a5d6bf4d8e9d9617a6185f25af1507c9748a6fb1b62729a646797525a79955acd37d27ecc2b856e4ca4330495b2f2f3577e16c64cb14d9b4c48631df51" + }, + { + "alg": "SHA-384", + "content": "8aee3905d2f5beb481dffb473cd5f550bf8b4bfc793de2003e24f183e7639b199c3e1a977366cd1b127f84f49625ff72" + }, + { + "alg": "SHA3-384", + "content": "9d7f8a6989135b4cb37ca31c08a6a5dcb297941c474fa2242e5bec2c496e66fec800904dc28ae929a62338701f0dcf15" + }, + { + "alg": "SHA3-256", + "content": "9670218fb2fdc9ebf340aa652114ab461f8df1ad44f7df591eab510eb706eace" + }, + { + "alg": "SHA3-512", + "content": "9b931a6c23e74c830d553a88dcd157d5faec3c61bc2ead4ac0ce50f773c0f986c78ed1ee3cdd1718b41f2960363d98a839761c17f762491de6bc39f3208d6134" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-amqp", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-amqp@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.amqp/spring-rabbit@3.1.8?type=jar", + "description": "Spring RabbitMQ Support", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-amqp" + }, + { + "type": "issue-tracker", + "url": "https://jira.spring.io/browse/AMQP" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-amqp" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235137" + } + ], + "group": "org.springframework.amqp", + "hashes": [ + { + "alg": "MD5", + "content": "b5abf40597d8983b8a54eff0b53d3aab" + }, + { + "alg": "SHA-1", + "content": "fbda28432746add3a50bfe705f93452b86825f48" + }, + { + "alg": "SHA-256", + "content": "e6d26a1d68f0e729d2f4c61e365b143056a0d92b74313af0dbe10fb8c1167491" + }, + { + "alg": "SHA-512", + "content": "0a056179b9d5197a89124cfd4103e78ca9aaf554cc1426f8bcaf6eb1925f1d9fd6c9f9454ad6eb26ad9cb4e85edf1992008356103f3546edd64e1dc0443e9c6f" + }, + { + "alg": "SHA-384", + "content": "ef1b2705f63dc3d766a5f7c0560c719e762a4edd8c0656d26fac50b367f946175f846eb343a76b75181d93c3e8067116" + }, + { + "alg": "SHA3-384", + "content": "3ad2319f7d7f73dda7d0790a473938ac189a875bdeb3ac240d106a6d94d8eb28a04451bfa49ac9308985f178e44e57eb" + }, + { + "alg": "SHA3-256", + "content": "f9905c5e435155a5ac7678a46ca4d1bad93bdf5eeb8eafe6d06ec24d7618bde6" + }, + { + "alg": "SHA3-512", + "content": "50969b3bfa47af0cf0f792bbb4b63961f936f3187deb4b69da283821a52626026711e30c976d9974dd37f7ba57bf6af94360b8e14a40c959f5cac4dbedcc4661" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-rabbit", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework.amqp/spring-rabbit@3.1.8?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.8" + }, + { + "bom-ref": "pkg:maven/org.springframework.amqp/spring-amqp@3.1.8?type=jar", + "description": "Spring AMQP Core", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-amqp" + }, + { + "type": "issue-tracker", + "url": "https://jira.spring.io/browse/AMQP" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-amqp" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235135" + } + ], + "group": "org.springframework.amqp", + "hashes": [ + { + "alg": "MD5", + "content": "fd4f952bb4067c0b946aacc428958cc8" + }, + { + "alg": "SHA-1", + "content": "6338ca84da36d434412aa5fbf32c09725df31f5f" + }, + { + "alg": "SHA-256", + "content": "73a6c265343abc0c59bd1654127ffd0a4e4b6496e61d8ff70d1fa5b613247547" + }, + { + "alg": "SHA-512", + "content": "9e424816d54c9decc339a7e2cddcda17480886aff52344aae1d3e539d8b2304562f94713235f4cdf8d64bc7c4ece1a7309ff3176402679949195294826565a16" + }, + { + "alg": "SHA-384", + "content": "aed778198507c3319b01b8ff8ddacc744ee46c6a672f67997357d8fcbeeb61d2877ff18691eaf7bafb61567c1bfbbc0c" + }, + { + "alg": "SHA3-384", + "content": "fe88db259606dabb2a0637a1b824900b8aa3fccfea860bc959ea42a2fbe0dc01e05b09d14b22ebb2eb056648115f3ab0" + }, + { + "alg": "SHA3-256", + "content": "f7ad39f4c86d907017e1797bc424fa1a2c590d6cceff4dfce4f9c4d763fcabd8" + }, + { + "alg": "SHA3-512", + "content": "7d472ffdf8e67e297329b2bf060c334ce8704f2d0cc17add2f4a39aa9546bf976278224dd01d23058ca8e1d3d2af7d020333fcc87d712c25d1b93bff2edcdc55" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-amqp", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework.amqp/spring-amqp@3.1.8?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.8" + }, + { + "bom-ref": "pkg:maven/org.springframework.retry/spring-retry@2.0.10?type=jar", + "description": "Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based behaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exception, and with a fixed or exponential backoff.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.springsource.org" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-retry" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13101238" + } + ], + "group": "org.springframework.retry", + "hashes": [ + { + "alg": "MD5", + "content": "2dc67b7721a33a7393c89dcaf4f26414" + }, + { + "alg": "SHA-1", + "content": "2990d2957ef0988dd243d06e04d357eace43a522" + }, + { + "alg": "SHA-256", + "content": "a8cc6bec5a717ae0b3a4e6239d75dc6f4f1b1b0252d6f51a320c8b17c3bf0e0e" + }, + { + "alg": "SHA-512", + "content": "1e9ab44ca9562bc611caf69242ba802ba5064eff769e26cbd7a9908170036128a4b00d3c650c7dd9e849aa3b18dfdb4d85ad2065f32d0f74a3105b03d3a36266" + }, + { + "alg": "SHA-384", + "content": "304ddd6f4d9517778650564a172f310e84a386684f9c5ce309f596e0ed50cc5088d62e9860d62f431615a98142edc4d7" + }, + { + "alg": "SHA3-384", + "content": "411edae77346e552ef51c2ea9480e4f9a7b66793e3a0a12ed6be262fe7d11d77ac223d73e35fd5a75c9a476b4b711b6d" + }, + { + "alg": "SHA3-256", + "content": "e7079500c59bedb5ef1ca24c6959cbaf7b97ccb66cc8f98903c81c59f8e15702" + }, + { + "alg": "SHA3-512", + "content": "3710d01fc6f673e66ea759085a0469ccfda03390e60f86504f4884599a58f2bf26817ae4418ca651064a91f39f87d432c58ba76a034a43baf1d3f83a3e7ceefe" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-retry", + "publisher": "SpringSource", + "purl": "pkg:maven/org.springframework.retry/spring-retry@2.0.10?type=jar", + "scope": "required", + "type": "library", + "version": "2.0.10" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-rabbitmq-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-spring-rabbitmq-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-spring-rabbitmq-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234676" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "aa8d70a9ec872ec9051c320ff5c4eb50" + }, + { + "alg": "SHA-1", + "content": "06b10def50c9f04b5fe41a1742e673a7cc8dcbb1" + }, + { + "alg": "SHA-256", + "content": "3ba6777e74d6544aa09b4defc5e5919482bfcbe42777cf882e12c550f6162fd3" + }, + { + "alg": "SHA-512", + "content": "76864641057411057218af38d2c630718e1fbb293bf4d9ed66bb7320252cc8caee99ce1ce44f5ea3c8a66c46702a9cd2eb00d3baf4ccd90398d578359a2f13e0" + }, + { + "alg": "SHA-384", + "content": "b8ddff68771b89ef2bb9687e5566039ccf5e389b7ed8ca5a812aa1dfb51dfa04f304c84250d3adacfc8ed1173a20eed3" + }, + { + "alg": "SHA3-384", + "content": "6bfd0706c58e46e37843150a788bd8d679d5d32bcf87e7e9ef2f6c3383fe58bdacca311609131f4be80a793746549faf" + }, + { + "alg": "SHA3-256", + "content": "4c6f60ffdd05d6ab8e8c4305393d49e1becb45ba0d81f9317ccc46c671e8a8b2" + }, + { + "alg": "SHA3-512", + "content": "5e470c150eecb5101fc0e6f07c18e1f5a81859e434807bc07c56b92a24f9bc4677b63c97669ca01299c26bc4d2a115eff3875b980bd977c420c1823e74184bf2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-rabbitmq-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-rabbitmq-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-spring-rabbitmq@4.8.0.redhat-00017?type=jar", + "description": "Camel RabbitMQ Component using Spring RabbitMQ client", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-spring-rabbitmq/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-spring-rabbitmq" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233605" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "f23a92a8cd6fcff253a9c0edc7c4a8e7" + }, + { + "alg": "SHA-1", + "content": "6a374573350753c5f9a0d0d64aa77722dcd494ed" + }, + { + "alg": "SHA-256", + "content": "b481831b7e1221d03ea879b2f783a5ced8e3bf34a3d991c38b4ae78d2fe809ad" + }, + { + "alg": "SHA-512", + "content": "d9698b30a8c3a42780676cdc1435a4935e1215272975fa86f5096a8a5c04b3a60226d65cc139c68a94104a2a06b3eff3ff20127495ac90f9774f3ccf8b2e63e3" + }, + { + "alg": "SHA-384", + "content": "d01d7d4ea7535b0a596907739d3a4bd4900f5250cfaeb74e2619fbb7409ceccf0e60a9cc5587283934d395ef37e776dd" + }, + { + "alg": "SHA3-384", + "content": "47126d850dcac6a5ae41563839ef5f9b065547242812f1a62e41d3091e3cdf22426301b4b3ddfc220a9a66dd6a6f0378" + }, + { + "alg": "SHA3-256", + "content": "c7e12548cc7d8f5a5227ccc0b9a8ccbf8e0ce8ff02964454dc24da3222976b30" + }, + { + "alg": "SHA3-512", + "content": "7fee811870d98e8b1f4565d6a41d6253222369ab4bde252bca252aa0647c71e2083756473583119891ddf6f02bfb5a19d6c8566056cf43d01070a24f704d6d85" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-rabbitmq", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-spring-rabbitmq@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-reactive-streams@4.8.0.redhat-00001?type=jar", + "description": "An example that shows how Camel can exchange data using reactive streams with Spring Boot reactor", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-reactive-streams" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-reactive-streams" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-reactive-streams", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-reactive-streams@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-reactive-streams-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Reactive Streams Component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-reactive-streams-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-reactive-streams-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895406" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "7d22575fc6910db8ed4c829e935e2119" + }, + { + "alg": "SHA-1", + "content": "d34316b3a9308da6b810418729d0f151bf6022d1" + }, + { + "alg": "SHA-256", + "content": "9f8c0677080ebcacac257de08a5957b3f6236be2b29fad3c0afafa3a9990b478" + }, + { + "alg": "SHA-512", + "content": "1f313a48707f6d766a662c3defc3d811a7c9d14e07bcc3a7636870cac458ae6a155ca8e6b2321614a4f48947a649aca3dc6c71782f02a4e1d83533c99543f684" + }, + { + "alg": "SHA-384", + "content": "fc7e94b2d13a695a096252b0d96f8f2708ceaddf79cd9192b464228ec7380b37be803b5ee4e74ff43b8d15940f9e89f9" + }, + { + "alg": "SHA3-384", + "content": "05b90c656555f3cfb7daa5739befbe1d9ef1851542519e358017c5fc83d7791d777512a1f8584a61d464224af8a237d5" + }, + { + "alg": "SHA3-256", + "content": "526d86e34ceaee69c1ee806d41ab240482007f1954ecc5aecac855cd5c347093" + }, + { + "alg": "SHA3-512", + "content": "fc8f7e6da1f26527c3f3d1c5609545217ddfe9e70bb5f60f6e46c380a9f09ba8dff70c4d066fac4b486c0762f6531c224b43fd26b6ff9456d761ed5b2a1a0eff" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-reactive-streams-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-reactive-streams-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-reactive-streams@4.8.0?type=jar", + "description": "Camel Reactive Streams Component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-reactive-streams/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-reactive-streams" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866100" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "d1bb12f7fe96c1522f3e49a73997669b" + }, + { + "alg": "SHA-1", + "content": "993cda4db7cf3d324d3f38c19e74fe39418cb5a4" + }, + { + "alg": "SHA-256", + "content": "5171acc8daaf3d8f9577f3f22364349d5f04f9db43cc2c7142de5a85bb306eaf" + }, + { + "alg": "SHA-512", + "content": "b3f4dea4409df8ea3841c9edb5ffde8a253150e0a0ba02d78314beb62537eba8f66cecdd90980c861e5abd8f87a1dddb1b31d97d26f29ce369780c47af98cb69" + }, + { + "alg": "SHA-384", + "content": "efbf5effb0312abd79ebb2efc6519007b2648a02311a3b519e9d931a08264d4fc7954232bb6123cb4e553e5a6b11aa3b" + }, + { + "alg": "SHA3-384", + "content": "3e72a493e2975081859140d1590a78efe9dea5e50a11cc8ca05083cf449f344a90d4d4573c8d6826cf095edba60fa8fe" + }, + { + "alg": "SHA3-256", + "content": "4fda9938536eb618c7d9957242d74185a572821c7804ba877fbe428cd845b697" + }, + { + "alg": "SHA3-512", + "content": "55da3143a47534a83d89b952566c3fcb1bf6175a3185e4808d7d122b7e01b9e375dd3db5d6a5342192c6124dd4b34440e7e24c170c8fa6ec67ab53535bfc320c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-reactive-streams", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-reactive-streams@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE-redhat-00001?type=jar", + "description": "Non-Blocking Reactive Foundation for the JVM", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactor/reactor-core" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactor/reactor-core/issues" + }, + { + "type": "vcs", + "url": "https://github.com/reactor/reactor-core" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/7199527" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/APBC23UAUPIAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.8.3-kotlin1.4.32:1.0.6" + } + ], + "group": "io.projectreactor", + "hashes": [ + { + "alg": "MD5", + "content": "df3c03b33876fd1123814795259abbdc" + }, + { + "alg": "SHA-1", + "content": "03850b10a6e3d791bfa27a3193c2ea5230793847" + }, + { + "alg": "SHA-256", + "content": "9ed2972c6f85a8a8309b7e1a20c3708d9dd94a4edb5aa050fa664c05e1198996" + }, + { + "alg": "SHA-512", + "content": "a0fe1acef57bf1cafaac30ec124fce1aaccd009a3025342e4ad75dea679ee9344ffdd1e9beef2a86aa08f00efe6077a0daa8b922fd4dd5a5ef6ae4b364457e24" + }, + { + "alg": "SHA-384", + "content": "8f39f64d20e81eec129a3a228ea6552e7ab255fc9835e50831fae034213d59e9a170d10998d1633e08d26d689c4f2f0d" + }, + { + "alg": "SHA3-384", + "content": "27d61d4aea4822f7723198d98650811d72a87414b8a0304d211d11232025f6e9f82d8c57f89e367710511c803521f740" + }, + { + "alg": "SHA3-256", + "content": "3938841d15e313ed941cdadee7014b187dbdfcab72f058d052dc3130a0f15b98" + }, + { + "alg": "SHA3-512", + "content": "1aef99c1962a7c49b988aa635c20eb87da776597a084b32bd856a5d61801ac9507db4862cfe4f5333a4a6c6a1d6083f9cef0d2f9d930ac5e8082d7232aac0f97" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "reactor-core", + "pedigree": { + "commits": [ + { + "uid": "2fbf3af406abbdd457af6697f255b3f9e86c56c6", + "url": "http://code.engineering.redhat.com/gerrit/reactor/reactor-core.git#3.2.22.RELEASE-redhat-00001-2fbf3af4" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.2.22.RELEASE-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-resilience4j", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-client@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Resilience4j EIP as circuit breaker in Camel routes", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-resilience4j/camel-example-spring-boot-resilience4j-client" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-resilience4j/camel-example-spring-boot-resilience4j-client" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-resilience4j-client", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-client@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-resilience4j-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Circuit Breaker EIP using Resilience4j", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-resilience4j-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-resilience4j-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235044" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "d9e1179af6ece20078e237f77e5e7702" + }, + { + "alg": "SHA-1", + "content": "b15b05388b6f14ae538c617873ec892ee0871bf2" + }, + { + "alg": "SHA-256", + "content": "c4c6b183e6a7a0e6ba49ed3e04fd2a1fbe890ace1e3a4e5f018d74149200a1b9" + }, + { + "alg": "SHA-512", + "content": "e68e8a577a617939ab8e2dfdee17a09b753e81465806c54770f645fa088e63419de1690076449cfaeee81fa2a1552e7c3453a335d475e6592017e1a872f57ebb" + }, + { + "alg": "SHA-384", + "content": "cb89a08b4b98357125c76077c71ba663a4c3be6b2b66ed26d17dd2cd5dda482bfb7d50cfbf517f4aafe0fc902cf41104" + }, + { + "alg": "SHA3-384", + "content": "19877e9096ddf049505eaf1c38c93352c7903d02991c8bfdd26f8700ee2bf4b4f698288c59c995d805ec254a32535b91" + }, + { + "alg": "SHA3-256", + "content": "83c8b6ffa18a1caa079fe237d54c120aa517a4b9f7b7ff5012b209361f5f15aa" + }, + { + "alg": "SHA3-512", + "content": "b940207039773f2ca7e310cbfb1e3da2490036bc1d223ef32d86778c2bfc7f30f27a53d3ebcf52c8f88247eb71978f4014152fad1a010e874fe597a350165efd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-resilience4j-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-resilience4j-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-resilience4j@4.8.0.redhat-00017?type=jar", + "description": "Circuit Breaker EIP using Resilience4j", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-resilience4j/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-resilience4j" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233891" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "494ddb5a7cdba509ee5fb6906efb9d6f" + }, + { + "alg": "SHA-1", + "content": "b078a431fe2527e2fb758c4116754be77c7b7251" + }, + { + "alg": "SHA-256", + "content": "daa458671a9aace626572d53baa45a0586af5a2521d886a1fee315d0c774e09e" + }, + { + "alg": "SHA-512", + "content": "7686168ab62da672493096853f95ff0f1d38fab13fa17cebe724f0ae56e7dbb6015252dca44d0c53287b155730dde463bd5b4196a604db7c864bb18f5ac6cb75" + }, + { + "alg": "SHA-384", + "content": "de939ff4d78add5195aa0c4c69d0250bc492e3d1871b3e159ded83ae4e136aebbc10bbb80407189e2ea768ce846fc79d" + }, + { + "alg": "SHA3-384", + "content": "4fd398ef3fac86b374880b81029a408295cae0c7cf49d4b7d978f15f5dfe34a734533274b683ac4d19d45ade5c4e6f23" + }, + { + "alg": "SHA3-256", + "content": "fb42acea90f6fc8d57121ed45bfed495ce100199293624d65e7844a7a21d5c6d" + }, + { + "alg": "SHA3-512", + "content": "a737f6dd41b2c751ed17700d1ad7dc2bf9e81cdae478be702995ebf2652f70f712dba29506bc63b3981506d66d6ca8b776279699e2d80932a66945a60572ee8c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-resilience4j", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-resilience4j@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.github.resilience4j/resilience4j-circuitbreaker@2.2.0.redhat-00002?type=jar", + "description": "Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming", + "externalReferences": [ + { + "type": "website", + "url": "https://resilience4j.readme.io" + }, + { + "type": "vcs", + "url": "https://github.com/resilience4j/resilience4j.git" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12644930" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBSKMGTADEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3" + } + ], + "group": "io.github.resilience4j", + "hashes": [ + { + "alg": "MD5", + "content": "7e8c030496f7879adaaee036f8a0350f" + }, + { + "alg": "SHA-1", + "content": "d3700b82b6e8a675e83d70b2af66e92a3a7c690b" + }, + { + "alg": "SHA-256", + "content": "04d0921199faa5993512cd7a628680f930f3bf140156f767d4d7050e75da8a9c" + }, + { + "alg": "SHA-512", + "content": "0f3df24b6b206246ebe6aa48dea0d2604544ffb023ee7fa640cb7f301792d70ddea4505ab1e28e66a196ad3870bbea0d51613de08f36512acf03ff03a6f7b0ca" + }, + { + "alg": "SHA-384", + "content": "fca2100d3e04c1c4bd40c9567c76a02cd689a79b7eae6f1d7ce7614d09dc758307830cdc3729c6d0ebede4cd81741f47" + }, + { + "alg": "SHA3-384", + "content": "1a1fb5e6b16c595ff60181c8c25acab837d1d42c7236916219cb8b876c5918bc119652a766ede3d77e4f8449863fd006" + }, + { + "alg": "SHA3-256", + "content": "76cd77f00bca551e60d08eb9b50a4c9a5d962f49a69e6d4a8b70eb6048252f12" + }, + { + "alg": "SHA3-512", + "content": "3bb28e55f862325e7e5191735753d6c213aa78c1def8295d441b8aa29303f49e2b060621d7bc34d263d244b090b2daa7e1466e6d42102a92ad380f69e0725660" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "resilience4j-circuitbreaker", + "pedigree": { + "commits": [ + { + "uid": "7d5dc6cbb651f9bebc6be8c489be2fd379784ab8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/resilience4j/resilience4j.git#2.2.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.github.resilience4j/resilience4j-circuitbreaker@2.2.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.github.resilience4j/resilience4j-core@2.2.0.redhat-00002?type=jar", + "description": "Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming", + "externalReferences": [ + { + "type": "website", + "url": "https://resilience4j.readme.io" + }, + { + "type": "vcs", + "url": "https://github.com/resilience4j/resilience4j.git" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12644933" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBSKMGTADEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3" + } + ], + "group": "io.github.resilience4j", + "hashes": [ + { + "alg": "MD5", + "content": "1b4267b72963d8435ddb8496e3e8ed2f" + }, + { + "alg": "SHA-1", + "content": "35f69bcc3cc3a0d8e9f4ba5afcfb057f3ab3d2fa" + }, + { + "alg": "SHA-256", + "content": "cf2f61d823bd151d48e9af725277b2166a15474cfd101a01a486d364298bbacd" + }, + { + "alg": "SHA-512", + "content": "19616dbccf54428c27d960f748f37d8903f1ddf28c69571b25930e24ef404e14456f1b69eb2b79a7525ece9fbfce2578db4dffcaab2309367d6e16134b3e2c53" + }, + { + "alg": "SHA-384", + "content": "90cdbd3485fc372bec15511cf9bf42cdac27949376e505cc1ab679acc185ad94e6d51c1598d42506feb68c21aa3a81a4" + }, + { + "alg": "SHA3-384", + "content": "b169c6700254ea46bd7bb1415e72f06c81f9a3c724d99305ddd277f0efef626d2a630bc4b69671687b1d159cc39caaab" + }, + { + "alg": "SHA3-256", + "content": "5d2f3a7834089dbfcad7f5a87baab59c1cf60841fdf022feb3073461e4e27651" + }, + { + "alg": "SHA3-512", + "content": "5768e3f8432fe3ee24efb2e852b5060b01b835a75ef8f598d1326de77562899692baf7917f53f4b26a33a1ed31e107ca0799792dc0a65ac3ae9f10b2b2790f10" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "resilience4j-core", + "pedigree": { + "commits": [ + { + "uid": "7d5dc6cbb651f9bebc6be8c489be2fd379784ab8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/resilience4j/resilience4j.git#2.2.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.github.resilience4j/resilience4j-core@2.2.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.github.resilience4j/resilience4j-bulkhead@2.2.0.redhat-00002?type=jar", + "description": "Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming", + "externalReferences": [ + { + "type": "website", + "url": "https://resilience4j.readme.io" + }, + { + "type": "vcs", + "url": "https://github.com/resilience4j/resilience4j.git" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12644919" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBSKMGTADEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3" + } + ], + "group": "io.github.resilience4j", + "hashes": [ + { + "alg": "MD5", + "content": "8a9a21ae70b1745c45d098d0f9c2486c" + }, + { + "alg": "SHA-1", + "content": "78ab2ad5b475e99f8beec251ae826ce5ba4d9759" + }, + { + "alg": "SHA-256", + "content": "e6765f6d2bebe020201c794d706426d5b76e72c3671616a462be0d862f67e2cc" + }, + { + "alg": "SHA-512", + "content": "c681304add44755772ff33b14cde14bc9f21e10708e830b747e72d5b7a4c09ad461058e9c260360d6ce6a33568dbefceabdbea71b73e19c68879c00de0d49c96" + }, + { + "alg": "SHA-384", + "content": "b46d2630c52d7a52f4a2489bb59c79a780d176662e305fa857c4d753d9c5dde69e559ab39f5faf65f9c608feef176648" + }, + { + "alg": "SHA3-384", + "content": "45e1c88a95f5275375b9ac306bf3e3f1a09846e274301a1589c2d8efb9a5d0bcd3116407d174af039ff240d0ddb07956" + }, + { + "alg": "SHA3-256", + "content": "32e7e16dec0903dab833d6ffff7fac465d17970858e283d028c780ac7c3abb97" + }, + { + "alg": "SHA3-512", + "content": "9071100349edfeb92561f1d0e3900a08c889f647c62a416e81bc19a42a3046bbd32b4b3a08e4e87b21ebe2fada2e19c524213df06e2fbccfb73403f2a6f2aaa7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "resilience4j-bulkhead", + "pedigree": { + "commits": [ + { + "uid": "7d5dc6cbb651f9bebc6be8c489be2fd379784ab8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/resilience4j/resilience4j.git#2.2.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.github.resilience4j/resilience4j-bulkhead@2.2.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.github.resilience4j/resilience4j-timelimiter@2.2.0.redhat-00002?type=jar", + "description": "Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming", + "externalReferences": [ + { + "type": "website", + "url": "https://resilience4j.readme.io" + }, + { + "type": "vcs", + "url": "https://github.com/resilience4j/resilience4j.git" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12644889" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BBSKMGTADEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3" + } + ], + "group": "io.github.resilience4j", + "hashes": [ + { + "alg": "MD5", + "content": "84af3a4672f98cefd83836a6fa1d6fd2" + }, + { + "alg": "SHA-1", + "content": "f372311cfd30a4c5cdb6dd97f9cb46d44b0d5ef3" + }, + { + "alg": "SHA-256", + "content": "d494b376ba330182afdbddd86a1eb344e452618644cbc44f3a7e972bbd5ad299" + }, + { + "alg": "SHA-512", + "content": "83f324859be18dd525c4eb74ed14190564e0db0b98d0f2ea9fc30fd082d9489620c1f5b8c6d35e9bd666460258e44c8ac62909965d0da421e929cd3f69120da3" + }, + { + "alg": "SHA-384", + "content": "e9c3d4678976cc967924a5d6478875296b7d7b7c5fb3a3e6873f2ae58af2b5c97816524c0ab4fcfcc55881dde3ddc6e4" + }, + { + "alg": "SHA3-384", + "content": "ceda5a012a7b28eb6ccd3999a4e9012abdae5aa002d1a8e86d19d41580829fa60db107abc790816fdf384bda04e7a55a" + }, + { + "alg": "SHA3-256", + "content": "2eb56931e0f419db1d0442befb183dbe0489174fc6806b3acd3ced9d9422ab13" + }, + { + "alg": "SHA3-512", + "content": "0a3fc13b7a92de1a3e495bb0bdd52ab319880da11452e1bddb4f66fa5c28dbea70d42e84058c45957a286062e2a9c41dcb610cfcb2bc16e0ca01d0522546fa7d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "resilience4j-timelimiter", + "pedigree": { + "commits": [ + { + "uid": "7d5dc6cbb651f9bebc6be8c489be2fd379784ab8", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/resilience4j/resilience4j.git#2.2.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.github.resilience4j/resilience4j-timelimiter@2.2.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.2.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/io.vavr/vavr@0.10.4?type=jar", + "description": "Vavr (formerly called Javaslang) is an object-functional language extension to Java 8+.", + "externalReferences": [ + { + "type": "website", + "url": "http://vavr.io" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10803724" + } + ], + "group": "io.vavr", + "hashes": [ + { + "alg": "MD5", + "content": "969dc757cef8441586b5457f80671a8f" + }, + { + "alg": "SHA-1", + "content": "c120b6912f6e838fdd30638b8fd5ec1c84773319" + }, + { + "alg": "SHA-256", + "content": "12622deeea2618b59b284051a9484f1def8ccbebc847c350358f12d325ba9dd5" + }, + { + "alg": "SHA-512", + "content": "cddc5fa8df7c2ab84b96233e0e61e5305aa342de882be663c9590a20b9af71810bf6f087aa9c9977e988267c0726d31fd723e84dca8349e93058c78237e51453" + }, + { + "alg": "SHA-384", + "content": "d25388e070e3b7002ebc72f3db1f73d5b4dc44daff4a5b36bdeeda753ca9a4aa16d4b896a9365b26aaa603c4ab3a7dfc" + }, + { + "alg": "SHA3-384", + "content": "8a46fe6c0e5ed1c511e48c8096f94d020b59add70c0f84bfa35acab88478fa1da685f60908aa1d7a9aa47d1f69ccb383" + }, + { + "alg": "SHA3-256", + "content": "0616124a1a3da442067eb0f83b243b85c203f5e968e6ce8fa7912fbb277d2322" + }, + { + "alg": "SHA3-512", + "content": "f8cee198e6a579aeb99e8645cb9def38f7ef4b99ba1ca92281a4493cdf7f31c0b583573684d5af743ebe325356fe9ee8d476e117a27ec40c15e22b5dd98cf4da" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "vavr", + "purl": "pkg:maven/io.vavr/vavr@0.10.4?type=jar", + "scope": "required", + "type": "library", + "version": "0.10.4" + }, + { + "bom-ref": "pkg:maven/io.vavr/vavr-match@0.10.4?type=jar", + "description": "Annotation for structural pattern matching.", + "externalReferences": [ + { + "type": "website", + "url": "http://vavr.io" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/10803723" + } + ], + "group": "io.vavr", + "hashes": [ + { + "alg": "MD5", + "content": "11b81a0fa77663cd0f7a4264ba8d6475" + }, + { + "alg": "SHA-1", + "content": "64a1405f5846a77ab1c1ef2e86e08b30e3507321" + }, + { + "alg": "SHA-256", + "content": "d46f96bf59ccd5800261eec5869a6877ee0a37ea781312e6735be55539f50354" + }, + { + "alg": "SHA-512", + "content": "4e2bdbf2b766424f2601d0604c2301d995e98a472296ca5ac26aec65e2b9f13cc8e4fbd12fd02be1d257ff695bdb79d47d1da4227a703c9a53a8e5f5f5b925ff" + }, + { + "alg": "SHA-384", + "content": "41822b4fe635ab49a832a26f823261e7c7541f94567c2564fbe8ca2972f6466a416f5788e3c7348357f714b7e162d708" + }, + { + "alg": "SHA3-384", + "content": "b3103af2b7fff1d707ed610340da416bfc0593e0bb76396f1b1f099725a8b8655d161750051ecb396dcbc3c329da13f0" + }, + { + "alg": "SHA3-256", + "content": "714a089f315bde3372400150cdeb5574277f39a6547f70be344a14382f5b9493" + }, + { + "alg": "SHA3-512", + "content": "e2434408af7951a36ed01a58aab5c55c8d7d8ae7e628c752b9bdc3fb2952cfdcd09fd58530373da932311d9e571e8cd962ab74f51dec037c9fae014419512e2a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "vavr-match", + "purl": "pkg:maven/io.vavr/vavr-match@0.10.4?type=jar", + "scope": "required", + "type": "library", + "version": "0.10.4" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service1@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Resilience4j EIP as circuit breaker in Camel routes", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-resilience4j/camel-example-spring-boot-resilience4j-service1" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-resilience4j/camel-example-spring-boot-resilience4j-service1" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-resilience4j-service1", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service1@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service2@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to use Resilience4j EIP as circuit breaker in Camel routes", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-resilience4j/camel-example-spring-boot-resilience4j-service2" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-resilience4j/camel-example-spring-boot-resilience4j-service2" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-resilience4j-service2", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service2@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-opentelemetry@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-rest-cxf-opentelemetry", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-opentelemetry@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-bean-validator-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-bean-validator-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234822" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "fa17d219a889a2ed3139ca090d90ff19" + }, + { + "alg": "SHA-1", + "content": "8814416f4c074c318f412ca3e58555f15effffd4" + }, + { + "alg": "SHA-256", + "content": "3d9ca58f40b0b6779bc3fa40f2aa3c619e1939ef8426f774b2989c8973373cb7" + }, + { + "alg": "SHA-512", + "content": "ff29edb173bad9f40697c5a5b370f63cea413c0085d9f0133748ff373782115bf924571d012d0093c54c102aaf025cb00109c70766f497e43fa9c5477ad36bae" + }, + { + "alg": "SHA-384", + "content": "b33cb84f9ae65688beac16aa8b93cb554f1d81bd1f68222f464a0aee8e458df3c608efc95a11962e83e29095408458a8" + }, + { + "alg": "SHA3-384", + "content": "9ec2219f947eff50c95ea8730bdb2d5dfcb9543e075d423d96a92961f17258833b89642e409a7be6a4bd4fa53106598f" + }, + { + "alg": "SHA3-256", + "content": "7cf5fa8da09cbdc579bc699d2f30257ed922bed97e017fe6950ed165b7761968" + }, + { + "alg": "SHA3-512", + "content": "2a46a516152bd65a8cc8f1b4cdb8401fe7e9b3d5218fff8e8c328b585a7ada8ac8728347f56bcdf3d07c7f0298d86ef5839fa6ca2e84e00443c2218626f4e609" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-bean-validator-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-bean-validator@4.8.0.redhat-00017?type=jar", + "description": "Camel bean validation support (JSR 303)", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-bean-validator/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-bean-validator" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234236" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "e6f83e9ddbe7f89bd4183955fe2d770a" + }, + { + "alg": "SHA-1", + "content": "2f9a617c69b06be3e5d32cc10127cf2fbb6c6eca" + }, + { + "alg": "SHA-256", + "content": "23ce4633c169974fdeee777fa9a707e2b06282c685dd863eb0da3d6e48760da5" + }, + { + "alg": "SHA-512", + "content": "e387985dbe8626ec03475ec53370970982680152226a5346612238b97bd5d1ea0cee5e2f7bc31948e32f64cac69d6a05f9a64fdc7e78aed150a48621b1aabf88" + }, + { + "alg": "SHA-384", + "content": "316def4192c3d7c24c902413d7c23a3d179e31b36e1907d0550e6d7c0da2ea8fd6b175ce892853cb7662d2d063cfd2c3" + }, + { + "alg": "SHA3-384", + "content": "f32ab3d84a0afa3e85674f374ec0e4317f4b66507dc7d36cd22b910ea996999bb556cb9a35f60e7b2e63f7309a6e67b3" + }, + { + "alg": "SHA3-256", + "content": "163561e6d9cddc496a3a32b47cfad9b13ff8bed7e5dce61644a649246e5e6dd8" + }, + { + "alg": "SHA3-512", + "content": "364e90f1c49809d90e880b3120b4fdbbc695c3ea641bfe1f7b252c5ee2c7d809f8b66be8e03abc4c65231ef8dc4c0ca35a64858cc0582243809dd9357366f17b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-bean-validator", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-bean-validator@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.glassfish.expressly/expressly@5.0.0.redhat-00001?type=jar", + "description": "Jakarta Expression Language Implementation", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.eclipse.org/projects/ee4j.expressly" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/expressly-ri/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/expressly-dev" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/expressly-ri" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9835880" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/AXDKI2636SYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4" + } + ], + "group": "org.glassfish.expressly", + "hashes": [ + { + "alg": "MD5", + "content": "27f4c33a3baa7f081e42afa08b884689" + }, + { + "alg": "SHA-1", + "content": "04f7369bb8cb893823bea4faaf882ea0c5b685bb" + }, + { + "alg": "SHA-256", + "content": "937f3ea2f7f7803729cefecf5216a23c20db588f50e70e1b2ed67719d459de18" + }, + { + "alg": "SHA-512", + "content": "478f764b51c8d6d9499fbefae07eb41d742925f2199f76c02561d6d5f70d1efa1399c72fc9751c93451e7f05fd19b2657d28b47f2f07c8d8136ccbe339d242a9" + }, + { + "alg": "SHA-384", + "content": "977d037ef0ed4a0bb0eb6e05a4052a7a0b802618ec44b9a392fd5d9ba70044966e032be199104c7e6999474888194132" + }, + { + "alg": "SHA3-384", + "content": "dee7f8f80c88d526b1183a7ef4fcd44c909f276d71b8f8a2885994c20a4d9e83cb43dc54123c32e1fe68f33c2dc50148" + }, + { + "alg": "SHA3-256", + "content": "6aac47e1a17a69e1f012ff5393190064e194c1f140e5fc411f4d5d7a495098dc" + }, + { + "alg": "SHA3-512", + "content": "08ccfe92ef0c845a8046414e24af7378b13c8305171043678e18e49957c070fd12a80a880f91979092fbd53d92a7d69269a9c2ed89ead5040837865eabb73535" + } + ], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], + "name": "expressly", + "pedigree": { + "commits": [ + { + "uid": "3a045c99999f057c737edb630610611a1795ee61", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/expressly.git#5.0.0.redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.glassfish.expressly/expressly@5.0.0.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "5.0.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-cxf-rest-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-cxf-rest-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234854" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "6cf00a955701248b0cba0825a8a5a0da" + }, + { + "alg": "SHA-1", + "content": "3e3c1b1be6b8e61795cbaaeb49ec55b0a13932e1" + }, + { + "alg": "SHA-256", + "content": "dcf13f18cb37622917b58430b487a031624215edad6efa1bced297f9d1453bcf" + }, + { + "alg": "SHA-512", + "content": "4cb198c3c59c7e9c9cb20d39d797f1f9d2364d274ce03027abe4d43f6205cf63dfa633825739b3b2c4844bd9cf62e8d195632cf0b651306ce3100e60eec67363" + }, + { + "alg": "SHA-384", + "content": "4d9893aada21b63f3e8b461097e8340f71b9274f7c3d35bf7abbc94fb5d4b7246e55c8ae7d0b06871855e6a90a8319ea" + }, + { + "alg": "SHA3-384", + "content": "8347de29debb86c0e1c29c657562bad3986c81e9cae8fb6c8b2bc81084b189a0f6d7c35786b9ad4e7c44a8ca8f4b1315" + }, + { + "alg": "SHA3-256", + "content": "60c3bdbd1a6c209d7ff146e58f8b7f55bbb01b67309091ddf9ad288c053e7fe1" + }, + { + "alg": "SHA3-512", + "content": "f3d4676f7cd1a9451b3fc90ca626167a0cbabeb96c2ec97208fa9c02cc7ca648e3e027111f197618650fc5022e82efdfbe860249ccc8a00dd0acadae56af9618" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-rest-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-spring-rest@4.8.0.redhat-00017?type=jar", + "description": "Camel CXF REST Spring support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-rest/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-rest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233981" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "230e63f0616fa1e71119e9a9b3394f8b" + }, + { + "alg": "SHA-1", + "content": "0b35f2c1fa167139de26b9f81ad333de6c228e3c" + }, + { + "alg": "SHA-256", + "content": "c1467af5d34d5a0251e47b2d659a0d78a41633d3a4ad17e3d9479aa181eb1cb1" + }, + { + "alg": "SHA-512", + "content": "97e9e25121c1f349479053268998751b253e62efcc652ba88598b9ce5b4ed7915aeab00da5ecefb840e4a31d67481de5281f7c4bda7e156388beb2a7b244ddfd" + }, + { + "alg": "SHA-384", + "content": "b007b08a1ebead33221807a8e0b56be79e787124d81f00a0ca5533ce0601a1031efc224367518eceed4910c81bcede03" + }, + { + "alg": "SHA3-384", + "content": "d92aad2f663c3c1db32714b083600d67a10f4b22f9c0d5ec7465f5413a8af4a159790fb17418cc477d6fe92792dd44e9" + }, + { + "alg": "SHA3-256", + "content": "45f39119ad8390d690d941e1c9271d518567055d078055b8a0a3b5df96b38a46" + }, + { + "alg": "SHA3-512", + "content": "1179087b78cf429c1ad6a4a2810014ded8869daf3e3203527be045036206ad0f6cc3f0e26782704874a6315e9f4bcf37687a846ff0b0a6dc5145016cf6d5ea9e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-spring-rest", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-spring-rest@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-rest@4.8.0.redhat-00017?type=jar", + "description": "Camel CXF REST support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-rest/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-rest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233669" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "991a1415540fca092a3dcc5ef713b6cd" + }, + { + "alg": "SHA-1", + "content": "3bc72c1e5ab97bbc7c0334f5b8e88bbabf73d4d4" + }, + { + "alg": "SHA-256", + "content": "5b1bff2d62d74e8987596f78c5f056d435b117026083082d46faa10a25fd1ef7" + }, + { + "alg": "SHA-512", + "content": "b88b45a838d572cc77f57eda5ba42ade54f40a2caeed216b30d8ebfc0227c7639e0c1cef996fe2936192d24d2270ba9a4244d1b69cf62aaccbee252c55e2a96b" + }, + { + "alg": "SHA-384", + "content": "fb48980988697ca4154c12708c4286c6dcdc005cc4aac8faad7345e2736b527573462226864f0a1cbaec8f2924a2b4ea" + }, + { + "alg": "SHA3-384", + "content": "f236761d2b077174a3770773b896b0ab3bb9aaf52cd9ef0c7071018fcfaf48ad5833a32787553fcc9c35dbd756b822a0" + }, + { + "alg": "SHA3-256", + "content": "121effb0c6580ba387d804cdf9ed6235575c00b82a47795fcbcd68c8683d61fc" + }, + { + "alg": "SHA3-512", + "content": "331002643f5f272bc15d40faeff8db874d5957a852bb1c983094437edffdd2b0b95ad838fda5de365a4cd619c61aefbeace998d287300141c9b3fc5c04d0e656" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-rest", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-rest@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar", + "description": "Camel CXF Common", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-common/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234172" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "cf54a94ee5d6d8d2fa8adf41616ee8c8" + }, + { + "alg": "SHA-1", + "content": "fe987cf1a29d2b1a3a45d4d984ba1037b4fea4c0" + }, + { + "alg": "SHA-256", + "content": "e8a5c790fbe44280a0d14f518c8c7da269259934b6373994b4297e3b838d46cb" + }, + { + "alg": "SHA-512", + "content": "6688701bbcb513ee01fda19b54418dc79815915dab432f11b8f86949e808df843e2e9de34bd8e411d20e6ff435e06aa6c91c818ff37db1d31c9359883305f672" + }, + { + "alg": "SHA-384", + "content": "f19f3a2610da564be7a7b663854da2fcd87d7d9e07d1fc6a0e64171bc58be9fb543bcd80f2efc0656661574e2aa19ae2" + }, + { + "alg": "SHA3-384", + "content": "22c499f73eefb29c56d8d6133998e225aa5875c2b6691f200a636f9f057881b0e8e3e39710935eba1b7177a9e13e84e0" + }, + { + "alg": "SHA3-256", + "content": "57ed19c8e35519b92c29ceeba4087e775a80203a19aa45cb7b718c7a654d8b51" + }, + { + "alg": "SHA3-512", + "content": "a4bb4bbc63e7186c0aad1392df4ccb0c29ffc5fb33daa9a1863c97cd0c7bb2d3c278214d050a1b965226cf6e43ed783f5cd3d26b6b2833cb1b36f3ea9e5973df" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-common", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-features-logging@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Advanced Logging Feature", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org/cxf-rt-features-logging" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-features-logging" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232912" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "ac6007e4c0203a6678f56be0943e5c35" + }, + { + "alg": "SHA-1", + "content": "3dbf86a516988ece3cc6929aab1aead614f120b1" + }, + { + "alg": "SHA-256", + "content": "7b593795db8a81f9e3e0c7be1f57690d1310738899b556d7a45d9b2bd8754342" + }, + { + "alg": "SHA-512", + "content": "7df51db66b23a8da547afea5c7ac4aceaf77d443640df7c1aa0f17490f085bb7f9770734fe5622379e3679efbec92c7b98e8a6d357d04baa8f23748eda90c107" + }, + { + "alg": "SHA-384", + "content": "fddb4de5cab2140b37a293823c2b889fd2fdc6efbace48a56f9068672658d457425cca53c7aaa49f9de90ce9872eba37" + }, + { + "alg": "SHA3-384", + "content": "0440160c9d6fa05a11c70fecdd2d928835afafc6d0795b152436d82cb6015023668cff53965b125abd615ee376e3c020" + }, + { + "alg": "SHA3-256", + "content": "224383d21f8de6a170b93c912f2cd883dcdb29609172cb0c093270f69b80882b" + }, + { + "alg": "SHA3-512", + "content": "c96b8b81fa03eae90a03b42c2db6987366b1c3e66ec06cf71eab1105e396fba7501de21bae3602a510696713e791c1ffdcc09916b25dd450ff9bde89f1ce9ebe" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-features-logging", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-features-logging@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/jakarta.xml.ws/jakarta.xml.ws-api@4.0.2?type=jar", + "description": "Jakarta XML Web Services API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakartaee/jax-ws-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakartaee/jax-ws-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jaxws-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/jakartaee/jax-ws-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12530939" + } + ], + "group": "jakarta.xml.ws", + "hashes": [ + { + "alg": "MD5", + "content": "9a41e8d9a62fb837d2228d47684a57da" + }, + { + "alg": "SHA-1", + "content": "331ecab874ee75b48db661a331319958cb04edec" + }, + { + "alg": "SHA-256", + "content": "ae500d776eeb64471cd3e3bdfcd6a9e7de6d8f866be6d7e9b2f9ca606d68c203" + }, + { + "alg": "SHA-512", + "content": "88337f5b042c92a91913c2e7fa1320bf40641caaaa57cb60343d5df69096df05f03805b409b240436fab161db048f7c46a549c67ec3fcedeef67af60d85e42dd" + }, + { + "alg": "SHA-384", + "content": "33fdddd7675ae56f0e9dc01f5e6ba2a4059286f4caced49d18c3acad2a95b0efb2e84168176b4768f0cb6810226e02a0" + }, + { + "alg": "SHA3-384", + "content": "d71ded49b10eab674d1b1b6ddfc4557d95cfad2ffdba4185c3c229ec81826803ab02d42e47c1c547c6477e7999d73428" + }, + { + "alg": "SHA3-256", + "content": "439ea01b18f242b4062dd72622cb475a81e738caf06766f8aa3cfb5a8e070c2a" + }, + { + "alg": "SHA3-512", + "content": "2e4789035d8eb71e682cbf5687be4afcd52b44c0c611b2a7722e3670decf0032aa42d10b216c408dd7cbb7e86f8612f96b5a849f0043a23d877f82c38f89d77d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.xml.ws-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.xml.ws/jakarta.xml.ws-api@4.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "4.0.2" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-spring-common@4.8.0.redhat-00017?type=jar", + "description": "Camel CXF Spring Common", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-common/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-common" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233613" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "55f91b6120336cad226ddd380f5e4b30" + }, + { + "alg": "SHA-1", + "content": "1c632a546a1528aafc7701236ce9f82578d32aa0" + }, + { + "alg": "SHA-256", + "content": "4c880171df7e9c626b3e600e5ee95dc531bc6ff34f2fddab6f9975eddeacb19b" + }, + { + "alg": "SHA-512", + "content": "6a1187a2afeb751b8d7dd76b134e097d40d1532e82140b7cc9f3ec1b47d61dd1136e239731725622cd05a031039874068016d0cacca0e7dcb8a163ee56d39487" + }, + { + "alg": "SHA-384", + "content": "b27596e5a244a514ff89a8835e57ff5850971d0edaf6715e1b65445ae024e4f13e4b37603689b45311b9371e847a80a8" + }, + { + "alg": "SHA3-384", + "content": "86ef8554b5cc5a4220aa4661f21ee6a0bfc346ea40a9d2aca3bab4a0b71476070f0089ccab527654dc6464e482072810" + }, + { + "alg": "SHA3-256", + "content": "dce7232a281acd626179a7baf3a623e75998bb6e54d3a85facba8134ad7c559b" + }, + { + "alg": "SHA3-512", + "content": "0dd4df727958fcd6b88a647a95b5bb603994427dfb26c72e497a46194a45ec821c4770bc85ebce4501f8a81aaa7735d43bd2cc53af5a8d495b43801851bd1824" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-spring-common", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-spring-common@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Spring Boot Starter JAX-RS", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-spring-boot-starter-jaxrs" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232784" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "e546fea8b96b8127e2356dec34d7c179" + }, + { + "alg": "SHA-1", + "content": "400973b044cf6045dc457c898ef968a2163b1065" + }, + { + "alg": "SHA-256", + "content": "ec0f7264ce71bc3c033f62a5444fefaa1d41513791f72e126645d96acb9c4e74" + }, + { + "alg": "SHA-512", + "content": "8f126efea18ac510270da15495d8955be8e72f9b103fed8b82d7e004c68b69f0be8a7596bba8583d4074cea06d4ad8c2d054bd6130b6b6e738d6d5bc6d3ddcc5" + }, + { + "alg": "SHA-384", + "content": "987ed7c40d9a20d82cda8a5f4a99472b46b42955f5baad25150ddeb9985a6e54a6c93e963e2afd393e753c0e8a0be9a5" + }, + { + "alg": "SHA3-384", + "content": "bbd4642f55a9e382a8c4d01ebd6123aeac478c2af3758204e1e0988a96c687b752f54dce6b5c2f2350a6a9fb28ec4a53" + }, + { + "alg": "SHA3-256", + "content": "4cd95aa019c8ac2011d9af79048025e467ce78b41a25a83624ae684e69b9c963" + }, + { + "alg": "SHA3-512", + "content": "3385c625ef47da6159ed563aa7d031c5f3d19e073ba4058d8379448dd00fdce0bddee859a6f28a1d4ca18877ddb8890c987aaba83e9185dedb8fbcbe56694a8e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-spring-boot-starter-jaxrs", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-spring-boot-autoconfigure@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Spring Boot Autoconfigure", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-spring-boot-autoconfigure" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232726" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "1a72715a41e2c93a46dabbaf51b43ad6" + }, + { + "alg": "SHA-1", + "content": "783013b57b2ac73a19093e258e41844c4865a499" + }, + { + "alg": "SHA-256", + "content": "4e4094849231709c4065dab795d867634fa708df9f5c4cd088cb10549a838287" + }, + { + "alg": "SHA-512", + "content": "c7345e7a020bcee06439f34a024326c821905c3b4bcc18c5a15a110bbd72972958e3a546a4fffe9e95e2a87b77f710d25eb7cf3a56ee0cf36986cef9ebb1ed21" + }, + { + "alg": "SHA-384", + "content": "a4e7cf8435bfae542d050f32c3488f4f6ac0e4cd7f2023f4ce7db561d82dd4366077b37e89515bda694671b56bcea6ae" + }, + { + "alg": "SHA3-384", + "content": "886f7267730d55b6841ec6bf895ced781c3194d2b8625a224a98b654baee4095734b2f97aea5dac0e194fcc14020a7b5" + }, + { + "alg": "SHA3-256", + "content": "068b1f04006d371af084562edccc64b7c3f08c344b3d8cde4a2a285e927a6098" + }, + { + "alg": "SHA3-512", + "content": "4e7a888f13bf0b41653d8c83d3fbc0f59479003003669b30c3f5d1c76f4823d5ccea27cbec980ffabf28e9c1c2cb9a308f731cfedbef1583fb80b2e6a197cae7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-spring-boot-autoconfigure", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-spring-boot-autoconfigure@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime HTTP Transport", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-transports-http" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233170" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "b29116d9eea0c8c0453ec872b47febe2" + }, + { + "alg": "SHA-1", + "content": "6072e9a7af5053e3c57dba644f4e36076343cea0" + }, + { + "alg": "SHA-256", + "content": "dfc5d408039a3b55339343ce95519ff3047964295a26918829c8024ce3aa55be" + }, + { + "alg": "SHA-512", + "content": "e27d00ec477b3022b459e2cd28c3223b1d0212acbb178bd4a633cc0158c71335910d02d0dc9cb31584eaaae95d49918ca41016fadcbefc55d083e399f6be1c09" + }, + { + "alg": "SHA-384", + "content": "60c76be5e835988f8d97c849e493638fed94d0e29f78f95757fd0f4fc4cd3ae9fb1b8b994909d3321b90266cf5218e22" + }, + { + "alg": "SHA3-384", + "content": "9d8ebd81938375ff023bd1aad48933d6e9bc61132d2266c90636057d8c8820b53eded2fdedd13598ad5e60050d2fdeae" + }, + { + "alg": "SHA3-256", + "content": "5a70f334e134aedd89dc8434d0213906e7de8c6e33de808d6a725fb5349115fb" + }, + { + "alg": "SHA3-512", + "content": "e1b7d0c2adcb90374ad974dcd68084ca54601b89a024f2d5fc1caf8d252446e92cbc1a8939567787881ed92e43fb5befbf7ab4656ea737b143b29952bcd0e853" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-transports-http", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-rs-client@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF JAX-RS Client", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-rs-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232881" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "efe766772a17ebb2150b62e58fd9d255" + }, + { + "alg": "SHA-1", + "content": "cd06cf3cc24c5e1959588b4a993af2b5bbe3f86f" + }, + { + "alg": "SHA-256", + "content": "78b3e667263a4abcf286a59cdea3a6a7a705b34b821d484d0f582bf5b4869a13" + }, + { + "alg": "SHA-512", + "content": "3dd89223dc01aacd356ca3cee51fe8b49b0d2f72d201e33283f49c22ce0c62b955be3cc242d302fd7b0cbab50e451f9d1a3553d1bdcddd3a24e7b18c7707b139" + }, + { + "alg": "SHA-384", + "content": "241aff7cf50b8697e7d6205a2f28e96c1cbd9ec2714a2bd20ba1f213bf5fa83014c71e1586e8327651510bfb2df207c2" + }, + { + "alg": "SHA3-384", + "content": "09e54dbd0d745efb76d3a1293fff003568acd3c65fb791aa7241cc8efc54be67a68ce3f18eebd538e32a2f89d7607195" + }, + { + "alg": "SHA3-256", + "content": "833e9073153c19500be78a8278315a41a2e249b7cec078c695b2e53579145789" + }, + { + "alg": "SHA3-512", + "content": "03c5ac2b56b559d9f680230407aa1a17697ae96cd27f9deeb39a6a3cff73a146a49f85c0ff32d6f4f81ca26442048e85713485c374795a3e606a258b9a24f260" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-rs-client", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-rs-client@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?classifier=tests&type=test-jar", + "externalReferences": [ + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234313" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "ssh://git@github.com/jboss-fuse/camel.git" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "cbbca8199908bd13e74670566c676617" + }, + { + "alg": "SHA-1", + "content": "47497ec9f7d3f6ef4d6fc0357699d13b4bd0fa5c" + }, + { + "alg": "SHA-256", + "content": "1837a84290d8019846d292cfe3bec4e5253b03e290660034942116456045e95a" + }, + { + "alg": "SHA-512", + "content": "691322a9d6ae7fc1cce164d91117ec2fd8e477a3dd00c505a4cddca8a7354b526647ec6f22ab6799d2a45ba963d057644135e9e304cb11565c2ba3de325f5f3e" + }, + { + "alg": "SHA-384", + "content": "2dc3318163dc812680825fb4a12d9466a6de4843c8128558999881de1f08ba13e396f252b640945ead6fe08f5beaa9f7" + }, + { + "alg": "SHA3-384", + "content": "0b6540200566a63502cf08b941185c8164f104175cd2fdaedd0d5f9cb5511e6b79610fdf569ee950cfd0e0e0d4a0c4ad" + }, + { + "alg": "SHA3-256", + "content": "b61188f8684d8b7a8aa94d601311a1e5dde59629b90ed0369c809bce756a49c2" + }, + { + "alg": "SHA3-512", + "content": "de4471498c3af3fc8f09aa1c2b0f943cbbd54dc66986c162508c5cbc8826d513a0db66de94e1e20f7a58a93c5f2f65bf5fef2c4c434ac88932fd5f4d44a44a0d" + } + ], + "name": "camel-cxf-common", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?classifier=tests&type=test-jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar", + "description": "Provides the API for creating and building SOAP messages.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakartaee/saaj-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakartaee/saaj-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jaxws-dev" + }, + { + "type": "vcs", + "url": "https://github.com/jakartaee/saaj-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12530937" + } + ], + "group": "jakarta.xml.soap", + "hashes": [ + { + "alg": "MD5", + "content": "b75eb22ffc46058b28d78874902dd2d3" + }, + { + "alg": "SHA-1", + "content": "0445830286faf84fe40a3f47ccd7537d69cd58c4" + }, + { + "alg": "SHA-256", + "content": "62ecd5c3b5c107779e5ffe84922594c381f7a8e397320a05c3ee3957b5b7863f" + }, + { + "alg": "SHA-512", + "content": "fc9964a7a4334a40d4aff7dac22204d436ea784f548047b43a5607d182efbcf41d111eb8032b59442e93ddc70aad45050269acd691c9292f83baa471161f3d21" + }, + { + "alg": "SHA-384", + "content": "dcc510788f42ba3a266d8982f7346e70360ac8c9bb0c9219f5f971d94cab44c8db0c8f17315c6d15f2b6314ba99352c3" + }, + { + "alg": "SHA3-384", + "content": "89428c35360cbfcc9223d1d21d969e53dbf87aa41b7bd900484ba3c8eefb7698a6489bdc24dd0349c64f193fdf6244d7" + }, + { + "alg": "SHA3-256", + "content": "a656dc445db912bb0cdb2bfa20af9e30f4da632169143c01680907dc63c2c053" + }, + { + "alg": "SHA3-512", + "content": "fee4544657c9804945a34936d208553899c49290798ce0d05d0c1912829139427b2769e96a5df759cdacfd6c0a1a8145be7ff2ed5440e441b4428004e0455643" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.xml.soap-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar", + "scope": "required", + "type": "library", + "version": "3.0.2" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Distributed using OpenTelemetry", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-integration-tracing-opentelemetry" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233184" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "bde70e008f9bfa47eb5e38bbfce4b397" + }, + { + "alg": "SHA-1", + "content": "12bab5d933fe4efffbee0acba7e80a7e0271c023" + }, + { + "alg": "SHA-256", + "content": "31f6e3b59019a589c3fb7076c86c63de1e291e04d374095d900aeaa3b8a3f242" + }, + { + "alg": "SHA-512", + "content": "2e9b5d7c24aca19558939614e0f203e9aac4a883b0e88a796799c8129b60851200dc43e23acb1b65e256f45cf7a1d87e8505782429ffe7f617cdc9fab932e687" + }, + { + "alg": "SHA-384", + "content": "8c4622026e2021e0370d4a07fdbf08835ea0ec15b69d088399b9c5e5444fa2d57e601431815e233a6471c85f381b835d" + }, + { + "alg": "SHA3-384", + "content": "88634099f85826da0ef34e3588002700a66d44c5d50042e6533676bf7eceaac750e79660d1017d65227ada3ebb6b1f4b" + }, + { + "alg": "SHA3-256", + "content": "4357864b490d859c34f1d6d72a56cbd3d8d5a094ea238fbd7d7df18177648e16" + }, + { + "alg": "SHA3-512", + "content": "1a656f391dea81612f891a117dc9f83503f356a51dff3828b4420008e8de4fa4b40e664d29b97cccb2540d373e2f08d57306bc66ecdbd77acf33411451d8587b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-integration-tracing-opentelemetry", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Core", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232940" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "52ef532f51fac6d46879573a5090e7ae" + }, + { + "alg": "SHA-1", + "content": "e59b2df25868ffd8519b8b306a80ce4454c42699" + }, + { + "alg": "SHA-256", + "content": "8e3c81b92c46c350071bdcf39d298c32df7f616da6537b265f067ac75bdcd05e" + }, + { + "alg": "SHA-512", + "content": "01f1370f91113c595cdcda0b708d6c6d6183e48316e5d45d078d105be3fe6e654439b4caa22ae8c9a1917fa9d676df4f89774645bc78bf9b301d33d7e25213c0" + }, + { + "alg": "SHA-384", + "content": "c45e79cac9c73c523ad94fa131231c2a75b0f9c827d291e7534e9fc3208ca321f8a81d70b78f76aa14299cb8fd7b63ae" + }, + { + "alg": "SHA3-384", + "content": "e6e4e1ca049f862603210b28e36557bf8b2d6661e7a650cd3d116b138260efdb7655659c28d704d4a0fb2fea37ece25e" + }, + { + "alg": "SHA3-256", + "content": "987f584f203ad7f996180f04aa1d9f6e71d1238d194709e77259bb3dace706f3" + }, + { + "alg": "SHA3-512", + "content": "319fcbb31fd2d666514aa6a05d58f3f44105256c271379c204156f4f855ab941182bbe42509326de6a27ecddbcbfb770e4486571115e2006dc6b6e51364cc97f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-core", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.3.1?type=jar", + "description": "Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate XML schema.", + "externalReferences": [ + { + "type": "website", + "url": "https://ws.apache.org/commons/xmlschema20/xmlschema-core/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/XMLSCHEMA" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/ws-dev/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=ws-xmlschema.git;a=summary/xmlschema-core" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11813948" + } + ], + "group": "org.apache.ws.xmlschema", + "hashes": [ + { + "alg": "MD5", + "content": "76e1deab5e6e1caa5fed31b3482cd266" + }, + { + "alg": "SHA-1", + "content": "5a83fc4e79d128f38c9e32138537060678151759" + }, + { + "alg": "SHA-256", + "content": "648f7f7e5228d89069cbc54c32404209f242581bc1c1e2e74229114f081071aa" + }, + { + "alg": "SHA-512", + "content": "e08630e6f6fbe2b960a7c161ddff46e135566bcb1dd2aaf3707ac01a843fb462ac1c7eeb830aca7fc88cbe3ffadc235adac07ec019e166050860ed73d249c21f" + }, + { + "alg": "SHA-384", + "content": "456b8a1dab0dfbccc13d9b78b195aef80d6989ccbd3a421e3e60305a4d2d48704d2f6b157c593ac2371661a505098c13" + }, + { + "alg": "SHA3-384", + "content": "5bb23dd4714285adb3e64b85d33df68f4368b818a4c94e74e036b416c34ff3dbdffc70651cf7f531323aba0141800dcd" + }, + { + "alg": "SHA3-256", + "content": "c01a671e540963e96245c65b633f0d17da112307c95e75c869884e92cdf7b523" + }, + { + "alg": "SHA3-512", + "content": "be1141504bbc979f485f8fcdb00de037489ab5fb2f7b1401b95d1157b21684c105eb5ce985b6798fe0fc287dd0126843d1c78597fbdb3bf66f0b82c6516df9c7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "xmlschema-core", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.3.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.3.1" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-management@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime Management", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-management" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233097" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "c9334499c387dd7abb5084c8da8af938" + }, + { + "alg": "SHA-1", + "content": "2f1cc735f0021643589145560159cf8e16e13d13" + }, + { + "alg": "SHA-256", + "content": "089afe091d15aea36f63f4b9c2070ca8292f03d8d0dbe382f8f858cf2f0657f0" + }, + { + "alg": "SHA-512", + "content": "bf5eb369777b9f8499d74ca09b2ef7585e490dc788591715674e9d8af8e5af0c049e222e2577f87b7285049d86192d7ea7fac8d708455410c1d2de2baf98c891" + }, + { + "alg": "SHA-384", + "content": "41826846fa945341caaa0f2072e75f5913a51dbd570eee326179cd00ff5cdd24aa42b0cdddc2cfbef9af8a5800b7365b" + }, + { + "alg": "SHA3-384", + "content": "ed7f8ba6338ad44a1d9c2af7d6979e9e0d7803f13ca4bf52f3f4d6afa6601ed4b3f150b98624398b593a3108f1855732" + }, + { + "alg": "SHA3-256", + "content": "88467d44108c7d12b052b05b2bf71e05b1a2953cd2319b16cb34a6b7a8783ced" + }, + { + "alg": "SHA3-512", + "content": "1ed21d7ef331012ffaf83454d30be1f083d286062a43497544f7501880f7ba5b831b40fef630d7b7128d5ea15204a24bed76e01dd981bd9c33ee9f10834b7c22" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-management", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-management@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.26.0.alpha-redhat-00001?type=jar", + "description": "OpenTelemetry Stable Semantic Conventions generated classes for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/semantic-conventions-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12773122" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCKPR2OVLEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.4-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/semantic-conventions-java.git" + } + ], + "group": "io.opentelemetry.semconv", + "hashes": [ + { + "alg": "MD5", + "content": "04b2ae9351a87211286b780e2ef64243" + }, + { + "alg": "SHA-1", + "content": "742ce09424ea2af084ec208af2a9cfcc6fca27fa" + }, + { + "alg": "SHA-256", + "content": "079ea9ddca304c117b7decc82009c5708e977511da66d7bb2bbf1786c1231bd4" + }, + { + "alg": "SHA-512", + "content": "9e535292b222f9a9b283b2d701aae6615051803a6d526677d28419661a448f78d6305d0009521fba07a03349bf8297a8ce34f41268bb6c49e33618dd94b2c276" + }, + { + "alg": "SHA-384", + "content": "41e0399b0ae1bb1567466f7cc87a347a42d612ecac4fc7bf6e1a585b9d462d88d8ec5c32364ca8d59149b9e1e2ed0108" + }, + { + "alg": "SHA3-384", + "content": "a48ac503953217d0a305b69873638df1c3040adb6e8928ad06e28192257c16c84d5d3c87c4ce8cbe6e7ab526ce4742f9" + }, + { + "alg": "SHA3-256", + "content": "0a161af6ea9c003e05d94dc7b2d63ba23c5ffc6ad9911c7885013e4a3efbd7c9" + }, + { + "alg": "SHA3-512", + "content": "9d2e061fb57da483aa4fb21cb9ae553bb717f9b7a33da07fdc6a6ad3c6e990a2753c92367d121b07c59abaa3957282ad8aed58418bf9702f66a4d456b3a71ece" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-semconv", + "pedigree": { + "commits": [ + { + "uid": "f8f762b1779c535eeb265f466081a5e566bff372", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/semantic-conventions-java.git#1.26.0.alpha-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.26.0.alpha-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.26.0.alpha-redhat-00001" + }, + { + "bom-ref": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv-incubating@1.26.0.alpha-redhat-00001?type=jar", + "description": "OpenTelemetry Incubating Semantic Conventions generated classes for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/open-telemetry/semantic-conventions-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12773129" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BCKPR2OVLEYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.4-gettext-jss:1.0.0" + }, + { + "comment": "", + "type": "vcs", + "url": "https://github.com/open-telemetry/semantic-conventions-java.git" + } + ], + "group": "io.opentelemetry.semconv", + "hashes": [ + { + "alg": "MD5", + "content": "9311ad1701d74d368d03dee50036fa74" + }, + { + "alg": "SHA-1", + "content": "75769b540f034adf34201f669da4d9fccd8def46" + }, + { + "alg": "SHA-256", + "content": "39e56daea754d6e42f1ef02d5fc6377d3700a7bbcb5ac98ab60005bd1e0f81d4" + }, + { + "alg": "SHA-512", + "content": "838314308636f95e54ae1bae565377a35378a3d7f56c97e2eaea5ea7fbceec968956ad08bc6f596aadab2fccaaea1f04df70a315014bae0cedafa5d09a193501" + }, + { + "alg": "SHA-384", + "content": "814351c270d980b585092a25f6f8ac91a4c1952eca90ed336f7574bede8b5c24d3159aef72fedb600deb37ebff90bdb7" + }, + { + "alg": "SHA3-384", + "content": "83e36560bf5cb209693fec516f245e3f272c8e04be80ae049e88bb8789870678a229f8463928f6a1a050277d7e87bc33" + }, + { + "alg": "SHA3-256", + "content": "5d24b98ac609d5d5a5cff1b44fe0f9a6d14ef840a1862f18b394297db5e60705" + }, + { + "alg": "SHA3-512", + "content": "b61ac868b020a1d322d5363ec36da088468826f314f87619941d3398975146ad1ee7c688ac6807dda5f839a7f167fb6f2be15fdf29397a128ef1add297de70b0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "opentelemetry-semconv-incubating", + "pedigree": { + "commits": [ + { + "uid": "f8f762b1779c535eeb265f466081a5e566bff372", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/open-telemetry/semantic-conventions-java.git#1.26.0.alpha-redhat-00001" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv-incubating@1.26.0.alpha-redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.26.0.alpha-redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF JAX-RS Service Description", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-rs-service-description" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232995" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "180e88cb8ac8b65cbd339c33319af34c" + }, + { + "alg": "SHA-1", + "content": "873dbd89320a32f4ea48a95a4a449136d70c04ab" + }, + { + "alg": "SHA-256", + "content": "f45ea9da40c651c0aebb9561177fd3a70c7d0ee18fd70670cc624da0e3439173" + }, + { + "alg": "SHA-512", + "content": "6e3e5c736067ba2478b2a4b3db2954ab699f1165704e5ff15ac6db1cc2947086b4e00a35d1441396c46aef0c367d6fd382299cd9768aeedf329449c44d318a70" + }, + { + "alg": "SHA-384", + "content": "181eabcc4244bc24bc076ca53814edbfeafdb54e7c48c509ef4918b932dd75f3a3d55037e432253305eaca75c2ec3891" + }, + { + "alg": "SHA3-384", + "content": "2fccae7c1170066cd133b2d7ca8213e90cb2a92bb9732d714b89ca569d82e12ac27d1aac4f32392c702dc8abf268c9b8" + }, + { + "alg": "SHA3-256", + "content": "8d39d69345d2d0f949fbd69bbd3ec6b999182f7a07ec887b69d5b0f21284f6c9" + }, + { + "alg": "SHA3-512", + "content": "91cc7f9527ede18aed636942096850c1c8ce66a91ad3b464227690114562214641f17b74e027db5ea4865ef44f0744a1bac3985586733d7fe073f7944ec9cde5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-rs-service-description", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime JAX-RS Frontend", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-frontend-jaxrs" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233199" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "159ba5f334816e088c6a66ba0d3d4e56" + }, + { + "alg": "SHA-1", + "content": "9fead19741dcd497f925a1fa1f20cbe1a5569d07" + }, + { + "alg": "SHA-256", + "content": "8fd6fd3d719b54ccda650e2cc59478d895a8ba7633f4e0bdb077caad324000bb" + }, + { + "alg": "SHA-512", + "content": "ea53487ae0669bb5e3adaaa5314338060b847a7fc2e242dc6118d3549321f37a828df728beb63b01febcb2ec56e7b28665842c0d29fd09625e3e1748c8cb04aa" + }, + { + "alg": "SHA-384", + "content": "f283e62aae4025b2c3a5589cca5244981d5ffd400f344d430ce1ac52c79208e855a9da2995b7d47d0f1edfaaf1010e0d" + }, + { + "alg": "SHA3-384", + "content": "ff30fab944464baab6ccb12ba6a844475d0eddcf14dc862c4ad489771e7e08b230b1c9faec874e76931fcb377e6ce8f7" + }, + { + "alg": "SHA3-256", + "content": "4c317443ce3195411f54542bd1e306b9a9ff62c02d9c5efa7c2ab1be28879570" + }, + { + "alg": "SHA3-512", + "content": "aaea148391260b866f112b910eaebcde76d8dbfe7e4f35778c784e1d288c0079fc72a0726c0a832eda99d87350fe73d23f9937d125643dcd831870886b73ab9d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-frontend-jaxrs", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-security@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime Security functionality", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-security" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233026" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "81d1f9b130c715a2c89e351c627d75be" + }, + { + "alg": "SHA-1", + "content": "1930d95826b4f230edd4242ae66f51a127d09e5c" + }, + { + "alg": "SHA-256", + "content": "0b49619f602da3ad01239736ab84fefe47fb3ef552507f3616bce28c61e88c94" + }, + { + "alg": "SHA-512", + "content": "41b34d7b8d29294bab3ff458ecc45171a0d9697a6442e82bc2f1b706d22c6eaa10fdfc6dd775da6b48197b496527776348ebc0c034fa9ce7f23a210c514b6cef" + }, + { + "alg": "SHA-384", + "content": "b8b7060c54cdd9e6f32f6696bc3a1ecf84f488f85c7c06b1c9f0fd56a30bb73ea88bafcdcc0463bed970539414ca695f" + }, + { + "alg": "SHA3-384", + "content": "9b894a976e61d965c46481126b3f47aa81400f2b8a2d78503299235b03daab42e4b7b7f2a3d08cc4117306da27bbb69d" + }, + { + "alg": "SHA3-256", + "content": "cbd535c2d986a0472cc1821784bb91e96d3159cae14dc777c58389acbd03673f" + }, + { + "alg": "SHA3-512", + "content": "08319841601d80b5990ed3d4a45e41ad1a8a30665bf9f9f0669097bbf4a7afc0b583fb4bc39ca51dd7bd8363e88f28d1c03668b622054615ab5abe32c843c351" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-security", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-security@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST using CXF and OpenTelemetry with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-common" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-common" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-cxf-otel-common", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-random@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST using CXF and OpenTelemetry with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-random" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-random" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-cxf-otel-random", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-random@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-minio-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Support for Minio", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-minio-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-minio-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235024" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "a864c21a08b0dd2c2c6627d7ef285ce0" + }, + { + "alg": "SHA-1", + "content": "4f13d9d0a68b4bc5adf207fb2a86ee959b925b7c" + }, + { + "alg": "SHA-256", + "content": "3c49912554f43c2e6ef7761c16572e008f2d6077625f9f491924056f6fdcb718" + }, + { + "alg": "SHA-512", + "content": "697fdc0425d53380bcd192f107619abc6b3e18fafcd44bfa0ff13acb22a269627e7cc41cafa754f93ee3f2240bd0875ad72607c65de3a2a8802d84aec8f561a1" + }, + { + "alg": "SHA-384", + "content": "4f88093d07fbc2accdef6f1c46a9bd4c038da92f71d98849048765766b28d20bcead1b0a0c3d1fa69730a8ebad910889" + }, + { + "alg": "SHA3-384", + "content": "c5b5866de5a3692b89e0ace74eba09cce99f071efafb1b90b33d7e409e33b0fd880d6bcfc0a8afa00865770479f1fcc7" + }, + { + "alg": "SHA3-256", + "content": "a732afde076858e96671442474ba2c2a077f1f5ce737fa3a0c9f2bc72db39c1e" + }, + { + "alg": "SHA3-512", + "content": "2040c77b07f25002592afdb076b8e0527fe4fb59c5545d23c3c4f94c6f748e2be236ba0db24d2384a952718a761f335f62fafc5db63bc905360df207e24172d7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-minio-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-minio-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-minio@4.8.0.redhat-00017?type=jar", + "description": "Store and retrieve objects from Minio Storage Service", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-minio/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-minio" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233775" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "3946218a80938482856ab8b9e06dd7dc" + }, + { + "alg": "SHA-1", + "content": "75adb58fd07c4780881fd8105f5f68e96d22c4a2" + }, + { + "alg": "SHA-256", + "content": "4221aa0cd3b1323ba468994bcc2a62f15fb2859639327d413386fcddd09a004b" + }, + { + "alg": "SHA-512", + "content": "c06399dea5f1055f81df6cd6b21caf2e8d6394b565c3959fdf906c01403e265028a99f223d9faafd7cfd9985f1954c6246615378ff5428a30e0dbeee9e4ba12f" + }, + { + "alg": "SHA-384", + "content": "b39d69d4813d824a1a3778217adcbda3964459c6428b1d68233aed2a9f4b82def126a786efd7937415eab8f642a4eef9" + }, + { + "alg": "SHA3-384", + "content": "c34d448735337871a747493ce8eab4a5b910777b66c6e9a93e5bb47a28accfd5c6b67f501f3b5b4fdb4b2aae78aec0da" + }, + { + "alg": "SHA3-256", + "content": "b073239a66c7d9d12810ba6f2f8fe29bc7cb18b3a07429a2df4d32a9bb0bb64a" + }, + { + "alg": "SHA3-512", + "content": "b8320850cfe0d3591fedf76f16fd50804cc9ac7e8d9e952168a260c748f439d236777329728d473af50d17741db2442d32257670be7372f73fef248f86a0dfcd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-minio", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-minio@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.minio/minio@8.5.12.redhat-00001?type=jar", + "description": "MinIO Java SDK for Amazon S3 Compatible Cloud Storage", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/minio/minio-java" + }, + { + "type": "vcs", + "url": "http://github.com/minio/minio-java" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12999768" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDCYAWEX6PYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.1.1-gettext-jss:1.0.0" + } + ], + "group": "io.minio", + "hashes": [ + { + "alg": "MD5", + "content": "4d46191b31b0209ce719e889f3fb44af" + }, + { + "alg": "SHA-1", + "content": "4257b98e488b3ff937866e3f70c8b1b57e956e6a" + }, + { + "alg": "SHA-256", + "content": "bb3681bbe933cf9a55b7cea6c41d2f49f4cf1e3dc7805dd8f0c2444751631af4" + }, + { + "alg": "SHA-512", + "content": "eaf77bf5688ab86df2fa1ee82859b4640950e96738d04fdbfe149db063d92f447eba6c71c6c3cba183d54fa407efbdf082c9b2e66b82f8a89272e137fc692878" + }, + { + "alg": "SHA-384", + "content": "fd8818a6da1b200863460c814e3dd2a04eaaa63ede5614d58dd5447b5bb4aaf93898e7978b91e7286f3a90bdf715b1e1" + }, + { + "alg": "SHA3-384", + "content": "ba4366977147917ebaba643b7786e4a3c7a0187e1fc2bb1149a0c5c1bc7fba3141ee56e2828ef223a2a8423e8b8fa3ab" + }, + { + "alg": "SHA3-256", + "content": "4d82061fed3007b21eacabfd8a31074cf4cd5ff842ace564fafe962913a3a827" + }, + { + "alg": "SHA3-512", + "content": "9fb1a11fbb404ab4dd7685aac98aa0f98e6d900e83b9fe488cc8c211aa094eabcf67af2b208fcede4fc067e85de5182a601848d5c11628fe0e5ae815d079dd4a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "minio", + "pedigree": { + "commits": [ + { + "uid": "882d508d1a568fa7afd0e66d524f0f13e39a2ec9", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/minio/minio-java.git#8.5.12.redhat-00001" + }, + { + "uid": "309d4296248e4adf8e0b881895a6f9ea05b9c1aa", + "url": "https://github.com/minio/minio-java#8.5.12" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/io.minio/minio@8.5.12.redhat-00001?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "8.5.12.redhat-00001" + }, + { + "bom-ref": "pkg:maven/com.carrotsearch.thirdparty/simple-xml-safe@2.7.1?type=jar", + "description": "A fork of Niall Gallagher's simple-xml library with web-safe defaults", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dweiss/simplexml" + }, + { + "type": "vcs", + "url": "https://github.com/dweiss/simplexml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/4772789" + } + ], + "group": "com.carrotsearch.thirdparty", + "hashes": [ + { + "alg": "MD5", + "content": "150936ed745f2c207db42931d7d5839b" + }, + { + "alg": "SHA-1", + "content": "045fda5ac6087bc82a209d8cdb73f8d0dbdcfc7b" + }, + { + "alg": "SHA-256", + "content": "4506e4bb57d41481936f0ac684468ca4b2cc9e002ca8466ee19e23228d455957" + }, + { + "alg": "SHA-512", + "content": "d13c25a9c4b7ce07e6b096e37591b37e415332d3e1adcb65c753238f1c3d968a98293223a720101b0af0d76c4bd9f8a0d487de9b0122172187b59e923877592a" + }, + { + "alg": "SHA-384", + "content": "a96086b4fe29a470978638f14d5508daa1f1f2a629de4cc424964e8c05a7d0d6960650b5536aee098fda03c6b5a8acae" + }, + { + "alg": "SHA3-384", + "content": "3975d435b3f32c32dfdebc88625c7226d5052275269f4b0533f0d2cca05fd7d91c9a7ca58eb9559a6f4855166d3fd4bc" + }, + { + "alg": "SHA3-256", + "content": "ed6f680d21c9fc1cd9606dc0dfcbbbed7baa71d41c51654b32159fef896d8806" + }, + { + "alg": "SHA3-512", + "content": "d35d823731ce1d4bd9dbfca093f59ab91346b2b7f901c43c5aabe36fdc6ad5e1af130129da75dc9d731c3d9597e53afe888efefd752891b4f09f3eb2a8a6a5f5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "simple-xml-safe", + "publisher": "Carrot Search s.c.", + "purl": "pkg:maven/com.carrotsearch.thirdparty/simple-xml-safe@2.7.1?type=jar", + "scope": "required", + "type": "library", + "version": "2.7.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-even@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST using CXF and OpenTelemetry with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-even" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-even" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-cxf-otel-even", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-even@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-odd@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST using CXF and OpenTelemetry with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-odd" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-cxf-opentelemetry/camel-example-spring-boot-rest-cxf-otel-odd" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-cxf-otel-odd", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-odd@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST DSL and OpenApi with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-openapi" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-openapi" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-openapi", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-openapi-java-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Rest-dsl support for using openapi doc", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-openapi-java-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-openapi-java-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234508" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "d40bbe8fff8a0c7bf2bc5e5480a470e1" + }, + { + "alg": "SHA-1", + "content": "adebbcc10c427aae71245ac0f670a41ae152f913" + }, + { + "alg": "SHA-256", + "content": "baa3f7ee1187d90b42cf4f90d3e5307c51877c8f2cbded067e028f3ac10c6db0" + }, + { + "alg": "SHA-512", + "content": "daac9dcc11d67b3c8994b94b19fb4e7369a3a4773ab73f3d1aa765a00b076a3ea0a39d071a3ecdde3dc6492bb8898be566d3783b937ea1cf55f9fa995bb0e6bb" + }, + { + "alg": "SHA-384", + "content": "0d398c133087df19205ba6531ec8d30553b910229ece7130ad25c7483a8325fe99f4cb7b0f05996b82c812d76a4ff3b2" + }, + { + "alg": "SHA3-384", + "content": "8fc59c86e5e84c052cd85a814dde2a4dfa134a599c057a6123f113b7d142dddc2ae3a4e6f7bc19e1203bb6db76056bf1" + }, + { + "alg": "SHA3-256", + "content": "4ebe13412396bf94b1133805d50e8f99fe6e0f3ec7be536a1bf14050929514a8" + }, + { + "alg": "SHA3-512", + "content": "dcf8dd38f90d29df31f5fc78436f401439d9e12d377c2da3b1406fe4a63d1242c12282d9f26dc5b5945165dae86a0729a34c7400eeef90859564b166aef410b1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-openapi-java-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-openapi-java-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0.redhat-00017?type=jar", + "description": "Rest-dsl support for using openapi doc", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-openapi-java/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-openapi-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233477" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "b012365612bf65f464bb1a6bed326efa" + }, + { + "alg": "SHA-1", + "content": "1283a9aa78f80f36dd57b8aa8fb363f4aa5f6980" + }, + { + "alg": "SHA-256", + "content": "e567c51f6f0ad3522af382d0761ebe2f859261f9dc43a2b5cfee333af50918ae" + }, + { + "alg": "SHA-512", + "content": "e420c9d1415a7faddf8b01d1dd06fdba357f8d4cd3fabc000b63bdfaaf4f7f0d34e34f956b9cd922509718a59c0af897ebc930436437eade8d8281a23f3cae9f" + }, + { + "alg": "SHA-384", + "content": "e5a248624217ef13a8a742d40f980c1d48b97693370b643af95bd4320359db90adef7e7f2cc6aa4ee31f04f66f7dd743" + }, + { + "alg": "SHA3-384", + "content": "81e07c43f30401907c4602936abd00d90fc03b3eb87b547216e43b0564bd5a9e61e047d5b76b1199a5f1f7423a189523" + }, + { + "alg": "SHA3-256", + "content": "ad01e20674219f3e4503505b4a52dbfbc20caa34646441d2b3e9968baa268dce" + }, + { + "alg": "SHA3-512", + "content": "6d6249d6668edd2c1bf4df22f7c402919d76f2339d18991794423709dde83156a155b16357cf284aac509d4835eca0169f27ac600d39ab9118c11b2e7b0c9232" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-openapi-java", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0.redhat-00017?type=jar", + "description": "Tooling utilities", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/tooling/camel-tooling-util/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/tooling/camel-tooling-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234196" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "5750e836c0660d0875eb40ebaa2c228b" + }, + { + "alg": "SHA-1", + "content": "d58af09af5e0f04a5288381ba7a6f0bf5d1057f2" + }, + { + "alg": "SHA-256", + "content": "470db6e72a30e48156687db4e7511171330949cb62abce968512c22e5128d2ef" + }, + { + "alg": "SHA-512", + "content": "ecb0fd9d324a957e77caad91801db96667c4b365bb4dfd1d144687441d7b10c158f3fe093a48af208888d9e4a2bdae80ae958b90fb4bab9b20606e26966f0502" + }, + { + "alg": "SHA-384", + "content": "26b7773c44618f6af542047294e8af57a8e05250a884545988c748287d3aae2684789d8b20b5c75baaff1af5a4c5983d" + }, + { + "alg": "SHA3-384", + "content": "a913ea9f9daf75d87628dbce3ad2438a0302018bbed4688ba1c46afaebd680863f57715840becf0498f596b9de2d2b72" + }, + { + "alg": "SHA3-256", + "content": "8e49c5a6fba621e111f6f9f793fb9f1818b96c15003af101c71ec30fb6612f6f" + }, + { + "alg": "SHA3-512", + "content": "d495f3b8b17abf82c7fa43111cd5a3f1998577e24346d0ae330246c6f414448df3b1509537528ac071e3330c49f52b29aa3a44ffb9de1c4cada42782b44e5d3b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-tooling-util", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/io.swagger.parser.v3/swagger-parser@2.1.22?type=jar", + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "type": "website", + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/swagger-parser-project/modules/swagger-parser" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swagger-api/swagger-parser/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/#!forum/swagger-swaggersocket" + }, + { + "type": "vcs", + "url": "https://github.com/swagger-api/swagger-parser/modules/swagger-parser" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12499085" + } + ], + "group": "io.swagger.parser.v3", + "hashes": [ + { + "alg": "MD5", + "content": "f2b9398ba73521d5f0ca0c6c559f97d1" + }, + { + "alg": "SHA-1", + "content": "fe267aca1d6f7af1e0fd7896abede6ddb3948a28" + }, + { + "alg": "SHA-256", + "content": "176c9e4ae8655c7cb6b0e8a56c0fa404b15ab0aeb0cb72e4a294eead084aeb23" + }, + { + "alg": "SHA-512", + "content": "eedbb8d2c619ebae8e074095b18e4d165f9316879f3be232dddcd77fe6bed0b9b8b46f22296e9d598976e42a4f3555b75cff3c0d569210b20114f1d774a62158" + }, + { + "alg": "SHA-384", + "content": "23b2b73a4016118ffb94143484408ac4bf1dbb1e5619c0747e990db98671d469e31de3dd22ab006ab35149d818aa1cee" + }, + { + "alg": "SHA3-384", + "content": "b42ed7a80c56f7f66caf8607a494b55f5f6febd9940b3902564c0807983213a12776f71edf6e3fca9526e4abf910a917" + }, + { + "alg": "SHA3-256", + "content": "c694dc0d6361e37f277552eae12aa44e3d4c61595fbd6888bfb429e6121f199a" + }, + { + "alg": "SHA3-512", + "content": "64bfca9f77207daaa4db3cfceeee25c33516caf6ce3e95ff0686bd99036884ba5493ba775db3c439aed455b8a08a88befabe90111a6bb2e9343e51b45195bfa8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "swagger-parser", + "purl": "pkg:maven/io.swagger.parser.v3/swagger-parser@2.1.22?type=jar", + "scope": "required", + "type": "library", + "version": "2.1.22" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-joda@2.17.2.redhat-00004?type=jar", + "description": "Add-on module for Jackson (https://github.com/FasterXML/jackson) to support Joda (https://www.joda.org/joda-time/) data types.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-datatype-joda" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-datatype-joda/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-datatype-joda" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115768" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYAK" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.datatype", + "hashes": [ + { + "alg": "MD5", + "content": "88f79b2dee6f21f85bc76eb499ffe870" + }, + { + "alg": "SHA-1", + "content": "47c384ec9cd53ec34b3ca79c91410a4868e1be53" + }, + { + "alg": "SHA-256", + "content": "05f6831f0ef08f284a2ac8cb21bbd2ed2a4ccea77dee09442942370cea79fe9b" + }, + { + "alg": "SHA-512", + "content": "5a427eb6a478eedd6db2b8adb7ea4a8378f0f81c964d72ee6488dd3d089c28b78f303871558a085ee19a2b0608fc962edbecd9ce4807a080e6aa5a493b839d06" + }, + { + "alg": "SHA-384", + "content": "a056af2ff39e9f9b2a47b89945093446fed2a386f9e09e89b82a10f66c36db8483e49ca6e08f4b1a03c1a50613662842" + }, + { + "alg": "SHA3-384", + "content": "c2da80d2684dd419725d40b16c396a9bd23d477f5f793f5891161ea9e9cbd796e6f77b631697a5b3821448e072933737" + }, + { + "alg": "SHA3-256", + "content": "f59cc8924044a444311d4619f456c3a9e58628a52ae04abd247bfef61cda74e3" + }, + { + "alg": "SHA3-512", + "content": "7a6b94ac6574bc60793cf634de97c89e2fa9b0ef260b9ce2d82246b054df1c148336471fa8348c3169facedbfd816913b7e3dcb4f1d6888d03bf307f3f620fc9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-datatype-joda", + "pedigree": { + "commits": [ + { + "uid": "54811f8c5efb2bbbfff78e8f6b95c610de2db3c5", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-datatype-joda.git#2.17.2.redhat-00004" + }, + { + "uid": "0ad81d0f1d9d7278d8b1c378e8dc69b58198c097", + "url": "https://github.com/FasterXML/jackson-datatype-joda.git#jackson-datatype-joda-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-joda@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-simple@4.8.0.redhat-00001?type=jar", + "description": "This example shows how to call a Rest service defined using OpenApi specification", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-openapi-simple" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-openapi-simple" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-openapi-simple", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-simple@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-rest@4.8.0?type=jar", + "description": "Camel REST component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-rest/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-rest" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895442" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "439796bddbca1f2bd4bdf14c48e69ab4" + }, + { + "alg": "SHA-1", + "content": "d9ad8b409b4a31f187039c0fda0d7f3d6905b9db" + }, + { + "alg": "SHA-256", + "content": "fe726ba6a19f07c4419952532df22318e9bff611dc5b892ca37226c65a99c88d" + }, + { + "alg": "SHA-512", + "content": "585c146062671889829606725ac09796ff02e811bfa8d91815d6f3ca2bd74fd0d1835286019504db13d66c702f7241259de1f0c525891617d99672db8bcad7c5" + }, + { + "alg": "SHA-384", + "content": "d25c813e62a5719e2c7cd9e96723bde404a5f8dcbf165455c8db32dec6b4ed5ca4b9a92667807c6b1fa1f6069ab80e51" + }, + { + "alg": "SHA3-384", + "content": "5e25deb1a5285a038641418ee57fce21bfd26d57a82455f9c9eb713b0fb7cd95838fbaef67b0d7c4e3ebb8ebc347bf7d" + }, + { + "alg": "SHA3-256", + "content": "d160e30abd7812ce6485a0956a92d1d9faa7d3699b69df7b096cd19e66fb131d" + }, + { + "alg": "SHA3-512", + "content": "fc0ce3d43ba8914aff78ce92907cf1633b9b99dc380dd8b9313bd3a228ddb609bcba29b74cf022fb58a0cd9f7cc691ea7d91a7418ca115b10884c76825438cd5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-rest", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-rest@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0?type=jar", + "description": "Tooling Model", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/tooling/camel-tooling-model/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/tooling/camel-tooling-model" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866229" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "cd41b27f91edea250ac04e8675609c1d" + }, + { + "alg": "SHA-1", + "content": "8fc2b5b1362736df4574174b9eefc02cd4b999d5" + }, + { + "alg": "SHA-256", + "content": "53d1468880c79c221ea056c1dec6821cea0d67d1a3796630fc2d09d85f9f06fa" + }, + { + "alg": "SHA-512", + "content": "918b68e5dc5b422e82e0bab6577f0455119785dbf8b5084617c6f2c736f2554b7e49213b056272fc843dfeb6b649cabbdeb0ed03c9b2b02b18610c948eab15e3" + }, + { + "alg": "SHA-384", + "content": "ff4a2306cc4d4f72e474b1dc43e4346b79ba0e1b867a4440f2f861e143480fa2dc21b4d621b81a16cf9520f57c5efd25" + }, + { + "alg": "SHA3-384", + "content": "814264a0e8536f96e4b042784352507237c2fbcf169a1e0a3248e89f53c32f0f867b533155693157b5c1184d8bcff8f7" + }, + { + "alg": "SHA3-256", + "content": "20c9861e189894a2742475551149ed7bc75b397aeeb2e700938c801b412409c2" + }, + { + "alg": "SHA3-512", + "content": "0074f75bfe2c0b581f2777cb6e5be22338b8fb604e8a3c4cca99c86950a0b7b4cac4f3274b4af965fa6dab75b328d3aca38719654a056b626a26518446125d09" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-tooling-model", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-platform-http@4.8.0?type=jar", + "description": "HTTP service leveraging existing runtime platform HTTP server", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-platform-http/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-platform-http" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895436" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "807587f677bb7d555bba89aaa78d3356" + }, + { + "alg": "SHA-1", + "content": "308c736af0a29944ed412e2d145d4d0f6860ddf8" + }, + { + "alg": "SHA-256", + "content": "89c7c93ba6edf84555223a679187d70d72213b59ef9dc801e7652ebce7bbc663" + }, + { + "alg": "SHA-512", + "content": "9adb778be8c28eab4fba697834cc9575eb3e74544a1435b4d76a7b1d0250aa4ee56080538301ce5425ae1f9828a2194ed69989c3ffb46a9e754d9fc87c75b4a2" + }, + { + "alg": "SHA-384", + "content": "51d43bfbf77f2d70ec591604dda7753a12e31aea084df055ee9a4401dab8ddf20bcf6d7b3d0d9ff3651a5ff50d080636" + }, + { + "alg": "SHA3-384", + "content": "1a280961156f7c2cfc7b8cf75d94ab27a25df5bbc34eeff15fbb094ef7dd4c3df7a574d129b4e95abece9706e471aa1c" + }, + { + "alg": "SHA3-256", + "content": "e060bc62c5ba6e5f641c09e1e26bb19758747465d94f54ef801357b0a1f5f8d3" + }, + { + "alg": "SHA3-512", + "content": "5a474589f0b99b678b89e3826f133d41b6b8555af270a09c41ed60bf595f31e5b36b1e707231e7b977f1d35e32b1dc72c12aa659789d00f3fd784775cd8c530c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-platform-http", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-platform-http@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-springdoc@4.8.0.redhat-00001?type=jar", + "description": "An example showing Camel REST DSL and OpenApi with a Springdoc UI in a Spring Boot application", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-rest-openapi-springdoc" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-rest-openapi-springdoc" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-rest-openapi-springdoc", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-springdoc@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-springdoc-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Rest-dsl support when using openapi doc and the Springdoc Swagger UI", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-springdoc-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-springdoc-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895410" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "694428aa84d5f060f619ec0839d1d162" + }, + { + "alg": "SHA-1", + "content": "d653283064cdb82fde537a3a7eed28cdb0314121" + }, + { + "alg": "SHA-256", + "content": "4acd72364b1f6aaf374e15c730e892e8a9454c51eb154ca6e02919b9b83b1d42" + }, + { + "alg": "SHA-512", + "content": "c68a80e27f73721c564c043ec76f613dcea141fd4f75decde92b0dadedafbd469ecdec1ffb91a2de30846bda7d735b15b4fd891e443ff1524c227eacf9457c32" + }, + { + "alg": "SHA-384", + "content": "3434e43930901cd58eba0a70f0b25744599528f4230ee405b026a564802eac8f723adeea9e21bd9aa7dc6d1835144921" + }, + { + "alg": "SHA3-384", + "content": "de6bf53ed8c67d8f5a96781c026191180c2495e30737d914900fe5e274d933c8904a96495959dacfb999e95e9400a220" + }, + { + "alg": "SHA3-256", + "content": "18d0ef5a7c9635a677177428fc927d0e2a61fb35464eadef439590f02f2d69d4" + }, + { + "alg": "SHA3-512", + "content": "9b9f1d68e5e4785b1c3a535221ed4ea6a646a1cf5968786280aa91628dda0c2dc1ab86dea18a9f1ea8a2bf9dcf2e1f47294ade47c27458c631e6d8eaf8025edd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-springdoc-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-springdoc-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0?type=jar", + "description": "Rest-dsl support for using openapi doc", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-openapi-java/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-openapi-java" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895434" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "cc48033476db3939382e32cd180fc31f" + }, + { + "alg": "SHA-1", + "content": "bbca2e7cc50ae7dd4876b5f14527e169eacf2c98" + }, + { + "alg": "SHA-256", + "content": "b440484119f83737280cfa7afa6caef600af81e9c037e474c73405127e0182ee" + }, + { + "alg": "SHA-512", + "content": "04bb726bc5f4985e50eb5ccc4cb41f49ba46da7c647e2ab73db90f1892ec14ab5561b1006cd7a0a1bd0be0365af0b1636222a53a6edc4f64ce6d5865f472f296" + }, + { + "alg": "SHA-384", + "content": "bb9f2bf9e12015dfbe8081190bde2dba4cbaed12e04c714d51599c6fd31e83f8ac398d37e6391d1467efad6c366c35cb" + }, + { + "alg": "SHA3-384", + "content": "9c111d33ec56defa589546891579512f9377abe95d643f94e6136bb74c4258129c278fdd20d72d5e9f76e6518dfd21ac" + }, + { + "alg": "SHA3-256", + "content": "c1d6d37b0c9b2924ff95dca0b28d1f43262d2e42640c7148f02855c427ec0145" + }, + { + "alg": "SHA3-512", + "content": "db81dffaf0f3c1dc5c40f3de1f53e8e125c905e3fc4956417967f70ae667579ef065ca570869226cccebbc05e24a0aea8979cc38d28b94bddfaafac2fd167215" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-openapi-java", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0?type=jar", + "description": "Tooling utilities", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/tooling/camel-tooling-util/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/tooling/camel-tooling-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866231" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "cab633de37451cd475121453e9e22144" + }, + { + "alg": "SHA-1", + "content": "d0997ece0cd18374151adf63e42b272323958349" + }, + { + "alg": "SHA-256", + "content": "8a4c91e1c2094b27ceac9c267de31430f467861311a331a6e86fd7b3ec438330" + }, + { + "alg": "SHA-512", + "content": "5664b94fc1cfc342563bd2587098ed86768669ed4d44f7ab2a89b571298b49e1010a6aa42965e1c9196d38e3d2d26898ed15753505eb3aea6a850f4c340c38bd" + }, + { + "alg": "SHA-384", + "content": "b8041281463b484971b4dc48ce1bdb13a04d113ae021baa517c656f9f9e2686564c5f9e29ad66dd903588db8ab13c614" + }, + { + "alg": "SHA3-384", + "content": "e3f388b851d6b33c32550b86c24164ee13638ba63df1c0f188dd1933e812eab398bc1a6b3cae385483dd97be759ea7a0" + }, + { + "alg": "SHA3-256", + "content": "43bd08aec655266fc620dee69a1f49ea28272d826dc15993077d3a2a12344aef" + }, + { + "alg": "SHA3-512", + "content": "ad64c288511d11c0f15afd6d3bb1162dafe368daa8faf6cd252aae25206d8819065f3e057e1b8560fa5e24aca0e0d8f54d0f293bf9984619fdca8dd0531b68a5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-tooling-util", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-ui@2.2.0?type=jar", + "description": "Spring openapi documentation", + "externalReferences": [ + { + "type": "website", + "url": "https://springdoc.org/springdoc-openapi-starter-webmvc-ui/" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11956114" + } + ], + "group": "org.springdoc", + "hashes": [ + { + "alg": "MD5", + "content": "247e5472334ae88cc064cdd80b4a340a" + }, + { + "alg": "SHA-1", + "content": "178d8ed6714d78b8b475c45bc60642a9232fcb70" + }, + { + "alg": "SHA-256", + "content": "dbe964429c479ffbc92b29eb7cb3bc71136e1b34a189f9ce934a715f65237bd8" + }, + { + "alg": "SHA-512", + "content": "4916f1c8f6b014e536333e534c5c70b9c841181e2f331b458d4a8bc36cb41a69dfc798dca6576a7d5e9f4c9fadf9b306e14db97790196e6ae764bb24cba4b377" + }, + { + "alg": "SHA-384", + "content": "92267dbb62e45175f672887554d3dbdb9b14a525a06c385cdb6fbde9a2ef63a335ce5cd8fa951cde447f9c8fa7664fa7" + }, + { + "alg": "SHA3-384", + "content": "1ba07315e325f30f8a5a29c1407f9a40eac49595b01859b65cb6b19b44bbe602e1c3b11295e9cdcb0b5b8d4387b4e5de" + }, + { + "alg": "SHA3-256", + "content": "f80737aa3159e79e18723713af235789cec63140aa228a417045c5ca7fada3ef" + }, + { + "alg": "SHA3-512", + "content": "bad07cc60c2c608695090f6c87a301cec21c5483b97edd9c6bb768cba41188179214dafded9cd5bfd5c3d47d757d35cc9041c90a7db5a563db47a395be2f5ed0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "springdoc-openapi-starter-webmvc-ui", + "purl": "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-ui@2.2.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.2.0" + }, + { + "bom-ref": "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-api@2.2.0?type=jar", + "description": "Spring openapi documentation", + "externalReferences": [ + { + "type": "website", + "url": "https://springdoc.org/springdoc-openapi-starter-webmvc-api/" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11956112" + } + ], + "group": "org.springdoc", + "hashes": [ + { + "alg": "MD5", + "content": "9857449479c04731cfca11aed2bfa8a9" + }, + { + "alg": "SHA-1", + "content": "03a7a3a7ecd2537203961d83cabc6d642f294ddb" + }, + { + "alg": "SHA-256", + "content": "d0b2a5c98a34ecad9fd0cc28da6cf9b07dfbc8778e265319005d2c4af236fa32" + }, + { + "alg": "SHA-512", + "content": "8aafcf2d7c43608f0060a3db6b1347f4a27ce1adfcf07878dd006d417888888434ab3c26c2fb4383646cb3a25cf7fba2217e10c70e9a19c1f3696e2571813dd5" + }, + { + "alg": "SHA-384", + "content": "632f14eac1bd279fed75f9b29233a946b03aa1cbcfa680c0b44b2af126cbdb36b259d16078375dbbbf7a6578882bbbd5" + }, + { + "alg": "SHA3-384", + "content": "1934d0af80ee9e2b035dbf283cd25944a905f022631e52b34b1e952418414ea935624322ec8fc5372a29577cc59ca971" + }, + { + "alg": "SHA3-256", + "content": "e2dc05e5da3b4c5ff29d20e63f8badd7081fc3b4b9a7baf5cc50f90dd5ab3a04" + }, + { + "alg": "SHA3-512", + "content": "6a119926052e042449931d915629ab8fbae27fb974f722970e903f2ce97c7798edc7a00081e606fbecd3634d5aced3b0e8d7933bb1b835b12969ebfc84bc1d40" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "springdoc-openapi-starter-webmvc-api", + "purl": "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-api@2.2.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.2.0" + }, + { + "bom-ref": "pkg:maven/org.springdoc/springdoc-openapi-starter-common@2.2.0?type=jar", + "description": "Spring openapi documentation", + "externalReferences": [ + { + "type": "website", + "url": "https://springdoc.org/springdoc-openapi-starter-common/" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11956110" + } + ], + "group": "org.springdoc", + "hashes": [ + { + "alg": "MD5", + "content": "abe91725fa0ff32e623fd44834bcc021" + }, + { + "alg": "SHA-1", + "content": "352343daae911b5d95c718c4a3c461cf94b4707b" + }, + { + "alg": "SHA-256", + "content": "cc4afc408717cf03fab6f545ad9675783cbaf83d7c874e0bae72cb58f876386f" + }, + { + "alg": "SHA-512", + "content": "c364901bb104ad666fa4ccb26d08cb3dea118d5651d2589724c1f37347ac1e4898c5b6e5ebe461098ad489af6d2219ed8aaa53bd9b29bd90b9dd7c007d098ac0" + }, + { + "alg": "SHA-384", + "content": "ad23fd1f783b11f0a1688dbcb6200dcd45a5001fbab154e0e7afcac04e5481e65cf20619ae5f169d563263d10fda14aa" + }, + { + "alg": "SHA3-384", + "content": "5b8bd126757e09fbfd5e714c57fb10430183a9d12f590dd333d862cd66ebc923ba50ca6c78d4d231c44f079964c2a60f" + }, + { + "alg": "SHA3-256", + "content": "b4bc68a8dc31882de3eea82a5835fcc5d6cfbd12414465ffce4d52b8fa28b79c" + }, + { + "alg": "SHA3-512", + "content": "c5437473e23798b9dcc0b44f8dd47f56f59173354254a0fef3c369551e79f414e117ca0ea283ab3b062cc1258fd91e355b9dc625ecfa486e87bd86eae6cc66c9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "springdoc-openapi-starter-common", + "purl": "pkg:maven/org.springdoc/springdoc-openapi-starter-common@2.2.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.2.0" + }, + { + "bom-ref": "pkg:maven/org.webjars/swagger-ui@5.2.0?type=jar", + "description": "WebJar for Swagger UI", + "externalReferences": [ + { + "type": "website", + "url": "http://webjars.org" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "http://github.com/webjars/swagger-ui" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11956128" + } + ], + "group": "org.webjars", + "hashes": [ + { + "alg": "MD5", + "content": "a4d4a4521f805db8ecbb39565867d321" + }, + { + "alg": "SHA-1", + "content": "c48d665a3f3a5d73afa34982953d3c31acc1d1dd" + }, + { + "alg": "SHA-256", + "content": "c7b8593b85bec88ba3aa8190b9db24d9aedaf02c959aa38c32edd6a643bc93d4" + }, + { + "alg": "SHA-512", + "content": "83276ccfbb328209567d14f36bfec71c7c293c68bd7d44e8d3e2aba5353256e34ff9fa0b838149d35109061d2cebb7d2709cf3abca287a244e40e4116d1a308f" + }, + { + "alg": "SHA-384", + "content": "7f1080ee9c79e0295d3054d47176bec7f18ff4b327d6ec44ca857c7261bba1026cac43464eb12de92bd0ee9e5ecd265f" + }, + { + "alg": "SHA3-384", + "content": "eca124de9b6287796210b74ffaf372d4596d836a9178f19a02e30e8c689b8348e154fa972b5bd3e8443c3aafb4cfcd5e" + }, + { + "alg": "SHA3-256", + "content": "e5fc29ed5b6c7942641dcc7c3772e1176ede20714e85eeb3aa9fc164da25f709" + }, + { + "alg": "SHA3-512", + "content": "887ed611c50b0ce0fbbe7e3fc930559a85a27621450bd4f88c539adc1aa880f5035d07bf29eb871bb3c15bfa47612b38ed6844c4b9247847b603fe0ce559ad44" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "swagger-ui", + "purl": "pkg:maven/org.webjars/swagger-ui@5.2.0?type=jar", + "scope": "required", + "type": "library", + "version": "5.2.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-route-reload@4.8.0.redhat-00001?type=jar", + "description": "Live reload of routes if file is updated and saved", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-route-reload" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-route-reload" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-route-reload", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-route-reload@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel :: Spring Boot XML", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/core-starter/camel-spring-boot-xml-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/core-starter/camel-spring-boot-xml-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234865" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "d169b3dc68c2310ab8fd0c605b9f6eda" + }, + { + "alg": "SHA-1", + "content": "eb79109cb8fe9ad95905112d1b5fa17aa564721b" + }, + { + "alg": "SHA-256", + "content": "66c65aab59fdf26a31055233beae63a292f443a7a93608ee4f26c3e0a43b050f" + }, + { + "alg": "SHA-512", + "content": "fe8874235a782c3eedd14ac0863ee5a0be87ebc385512e5eb74bedaa2c6d65f7a86e8c1a761b3b99bb28139d56352956bd2e2e4f3b2a35fbaae456ebf3aec1e5" + }, + { + "alg": "SHA-384", + "content": "1c0aa4c54932cbc2af9e91b6d1d410c4c365299ed707ae40fad0e65a1a3a27677a0ff27c5231e5bb67675b91b2889d42" + }, + { + "alg": "SHA3-384", + "content": "a854c90310c8cc721e1dd0b91ba13fc2621fa7c4e17876a15722611c86ace9106667d4fa1a4787abded9686d427f3d4b" + }, + { + "alg": "SHA3-256", + "content": "7525d8201c90c736bd0d22a375c041673e0e58fd474fd5d1f8a48314e901409e" + }, + { + "alg": "SHA3-512", + "content": "375d24336907deacb011f9ec03c90239d4ccb825211fb8a61557addb47635acb4bded285fac09cc51522ddbe4c0f8bdf204b8c1aa1fcf73f669c12e0e9a8ba06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-boot-xml-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml@4.8.0.redhat-00022?type=jar", + "description": "Using Camel XML with Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/core-modules/camel-spring-boot-xml" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/core-modules/camel-spring-boot-xml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234525" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "c57b05e18cc44bc8a8480c0aef12f5ff" + }, + { + "alg": "SHA-1", + "content": "ed4ed1adf53b0e9c226864190cf40b77637fafa0" + }, + { + "alg": "SHA-256", + "content": "34155eb10df6e1299c02cb8ad30d3b9a10c11ce17277349e8edfbb010db21137" + }, + { + "alg": "SHA-512", + "content": "97d06ba7cba8b9f5347916235f22e56dfaef4c925245568c92880b693aff3e721d473852052da79eae4d7f2fb6a323a95b951d9c12f1d150ab7ef4ff19034545" + }, + { + "alg": "SHA-384", + "content": "682c1c4677328c9874ad9d78b77c5021c0625cb832c9837726050bc2da45ceafc76a1ee4f011ab06178643616def9beb" + }, + { + "alg": "SHA3-384", + "content": "c01e92c03ff9b2df36d7098a48577a769aa79421ba441757b57811d79ab45a31b5b09892b3fb8ee705d2a30ea068ca42" + }, + { + "alg": "SHA3-256", + "content": "e023633fcfd55accb673ab6e8c8f580c95ec2d5dc9fa96995611585270ef62e4" + }, + { + "alg": "SHA3-512", + "content": "a8461a6dcda146e808e2c67d7a607017b68b8ec299e76476f277119aab2109843ce66e6b3d8d39f9b8a0ad7b5735c51761779b54e7cf29dd65041143b13daa36" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-boot-xml", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-xml-jaxb-dsl@4.8.0?type=jar", + "description": "Camel XML DSL with camel-xml-jaxb", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-xml-jaxb-dsl/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/dsl/camel-xml-jaxb-dsl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12873309" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "6677a88d698106b5fbccbb4ceb17d71d" + }, + { + "alg": "SHA-1", + "content": "2e2fd4ebd70030488d388f94876e14fa40dd2c49" + }, + { + "alg": "SHA-256", + "content": "4bc136627d429f22cd459c3ef4bc8d7ee3c967a4909dcbfdf7b0a61fedf812c7" + }, + { + "alg": "SHA-512", + "content": "468e525e1a2c438b4338185c29e02e950d986685d076f2194d02fe6f784e4cfce6b2202fd7a911f59774777fbd2060752f123d1ce25c1c5ea8523b6cdca5c27c" + }, + { + "alg": "SHA-384", + "content": "17eca941e7b38f703cf6a9af52eafa878913c98141abddaf8221d317cb2f12cb3104162f822b0389f038011eae444205" + }, + { + "alg": "SHA3-384", + "content": "c976132f2528d7ba942d59ec5f03daa72a2f6e22e20cdb115440f8870d3afe8d26be8825ff5b77629b9d828a9f9579a5" + }, + { + "alg": "SHA3-256", + "content": "7bd5994c0d95da00792fe93348f86d147cdbfe11cf963c132ba57c69101da40a" + }, + { + "alg": "SHA3-512", + "content": "0a022169cd8aa77d08d5d19e6568a07a5397eb63ce74ede256c74b7e2308ca52427a1c59865ad7d1cef97deae4cfa7944dd2a4a114c1cab0a65677c9be90a13c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-xml-jaxb-dsl", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-xml-jaxb-dsl@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routes-configuration@4.8.0.redhat-00001?type=jar", + "description": "Example with global routes configuration for error handling", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-routes-configuration" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-routes-configuration" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-routes-configuration", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routes-configuration@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-engine-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Engine :: Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/core-starter/camel-spring-boot-engine-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/core-starter/camel-spring-boot-engine-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234849" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "fb7d167ce987837d599d9555d1305cc6" + }, + { + "alg": "SHA-1", + "content": "0760630fe337313317e3bf83994890111c8f87b4" + }, + { + "alg": "SHA-256", + "content": "999597a7108f75445f97a9cdfa950299ea38e8140060693a00ee187ccb247482" + }, + { + "alg": "SHA-512", + "content": "ce6c1ceb2faeba37be4be322bd90c0baeefd31b2d41022816750981eb1b0d4ab23c0816bec4cf44b6bbfc4384879128337ddc5ac9bcfd1df1d449f66091832f0" + }, + { + "alg": "SHA-384", + "content": "94f6066bf56de9428dd166c2e0a1210d8fe34a9279092ccbee87b00141efb76f122467878eaad129836f67f2bdb6eb2c" + }, + { + "alg": "SHA3-384", + "content": "50d7ed13a34f5f98d94dcfa56b599b40b1e8e8d61761fe5c870d0dbf7611ebf859415d9510d0e29d4ea830cf4562bb5b" + }, + { + "alg": "SHA3-256", + "content": "516bb2c5c4281b99345262e7b2be823a504e310e497a0053f40170847a2160bc" + }, + { + "alg": "SHA3-512", + "content": "be82f044a7aa395a0bf3269699540c5f18f80acf2d7789bdeeaea638d77f1733148f4bd45d91bd7acbd5be1e304d4c4892e9a5ebda7f71d1b3fd6ceec4dc7c28" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-spring-boot-engine-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-engine-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-debug-starter@4.8.0?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-debug-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-debug-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895400" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "136d03781df0818be361aa72fa858c92" + }, + { + "alg": "SHA-1", + "content": "1d1a33d461a99fe80431406c88f1f895a968e1cb" + }, + { + "alg": "SHA-256", + "content": "483e71445d0b28527f9b047287f3fa32c56aa07bf24648e38afe99b4b10ee0b0" + }, + { + "alg": "SHA-512", + "content": "4fa06b2f528475f601de1a33bafcd3e4acfbe3c9ea1907cfe56d10f9164bdfe66f93afb1caffa324da84e792f7e7cef42881d9eca10cf8ed2922e5333e6e357e" + }, + { + "alg": "SHA-384", + "content": "0f8767671438fac4f37b4579b30aef161583bc42a7136c469034abf74f01e16dd154e41fe6263da7a2ac8cc199c6d31c" + }, + { + "alg": "SHA3-384", + "content": "f75d98d911a66bdb6b31acd2ff719aa22cd167b6082c7fe0173c7b30ece882bf158b38a07bb80e2f102b0500b59c6ef7" + }, + { + "alg": "SHA3-256", + "content": "a2b50d40cb5a0ab4e14d2d95324989c979b25471c55b1d7ec29940e53d25dce6" + }, + { + "alg": "SHA3-512", + "content": "9a18af09f6b2116a5515c9749eaf8e672ca954474fbb6c00f32a23b716d55bfe02a9b3a0f5074a23a9f85b7109a20b2e322ca9606da279f65b0b28e451bd1c38" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-debug-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-debug-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-debug@4.8.0?type=jar", + "description": "Enables Camel Route Debugging", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-debug/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-debug" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865852" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "a750ac077e30ee2a7fc2056e56a645f2" + }, + { + "alg": "SHA-1", + "content": "16da3b4f62d0e38a8c1ebf0474735fce5d7764f4" + }, + { + "alg": "SHA-256", + "content": "b1aed4d7734c859a2ca5b6084160de2a8b0a54b16c10d763ef0d4de07aaf31fe" + }, + { + "alg": "SHA-512", + "content": "9d27110e6c8786a8de6db1c3b3fb240abff82f2028e4ef98aeec96ade9b10c25146c85072666acd30713812d63423aa2b74ed37d6075446b11f0a33c45caab96" + }, + { + "alg": "SHA-384", + "content": "92ee1d0a17a8e5e2fc11f6edde189c54d295a6ebee281b0ef4af54330e7dd5af80ae6968c8f2c3457ea1e47d5f4078f1" + }, + { + "alg": "SHA3-384", + "content": "0b1679557d97c9edf65931029829a2f80b6489ef3e1e54e68802d54db767c97ba1f8b0ba1381008930dcb4b69ec9f5b4" + }, + { + "alg": "SHA3-256", + "content": "a960a48168ccd3c2b2ed2465bdd29e195f5898fb1701e16873f6ea31af609c2f" + }, + { + "alg": "SHA3-512", + "content": "e96f49db787e7eea33f4b56a17520d82b657cfac7b7867b1af30924779d4bf5566a11c87f4748cf5654e7f78d5421aa1826838052372e50d491f586260c98ba2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-debug", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-debug@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate@4.8.0.redhat-00001?type=jar", + "description": "How to use route templates (parameterized routes)", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-routetemplate" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-routetemplate" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-routetemplate", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate-xml@4.8.0.redhat-00001?type=jar", + "description": "How to use route templates (parameterized routes) in XML", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-routetemplate-xml" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-routetemplate-xml" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-routetemplate-xml", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate-xml@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-saga", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-management-api@4.8.0?type=jar", + "description": "The Camel Management API", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-management-api/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-management-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866026" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "e9722f64e44279168c22370cb9a99619" + }, + { + "alg": "SHA-1", + "content": "3a9ba6cbe7230f74053b8df1f8c41cc5715aa4bd" + }, + { + "alg": "SHA-256", + "content": "ad1f8c45874960e5fbd1502a3246940c7458ff6a981d84ea1c33c8b1765f274c" + }, + { + "alg": "SHA-512", + "content": "52a01624e0de1a023ee909beb8ede9eb653e447ef80ecfcfcf40db4edd21bfead9cb8339c4bea6a617df1b0b3766f85b6a0fcef141ce5ccf8c568620a2803b0b" + }, + { + "alg": "SHA-384", + "content": "82831f7650387d282851bede8c513fa7190d9cb5e65fec0393c9298d7c5789da1e64b6c199bf1c487464004dd2cc75b8" + }, + { + "alg": "SHA3-384", + "content": "92f50b23cd9f616db03a61de03854bbece3796145ed9bc76ae6eb966b068f6dca90c9fd71544f930e70762a3fb0afca9" + }, + { + "alg": "SHA3-256", + "content": "6c970d10ea2bb57eb45ac011075a06ba06cee7c97b8d3d74ba0f940290efdf3d" + }, + { + "alg": "SHA3-512", + "content": "448e843e5b138e30fd413ca5449470f6825369dfc8fbb9cff322b192db6ffa6e06a88ace885e20071989df4c40ce32816c235718eb5ef60f0467f8c87f0796b7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-management-api", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-management-api@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-util@4.8.0?type=jar", + "description": "The Camel Utilities", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-util/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-util" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866241" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "06f916d1d5f934264271979f06e108a7" + }, + { + "alg": "SHA-1", + "content": "ae5687c8e4f8495ff0b49c28af3a7392e4f86530" + }, + { + "alg": "SHA-256", + "content": "42ac3901799bcc4e49961999c5706c8b4ea768edfad38be9bfab16222f5e4002" + }, + { + "alg": "SHA-512", + "content": "bec05ff6f23ea44e94b36f0c87ce801441ddd6293e90d852e3a9a2aeed22f3d52d5df4bdcb9a49ba639d929db0144a7166b5065cdfe47e257d56b800e97b9769" + }, + { + "alg": "SHA-384", + "content": "42d567a80189fc375e8521e641aa8335b7e18bd036419f451bfe580b8187807001a32dc0e72116d49c3c206041fbfe9b" + }, + { + "alg": "SHA3-384", + "content": "704df13d1496936a1f826bd0b481bb522c8316ad81a8a22f166aad43c69d4b7f246e8ac186954140111dec659f5e19c0" + }, + { + "alg": "SHA3-256", + "content": "5c8ae7e82f8fd555366f3c16e025e2e4fe0276bcb3603474a30b9e6accd218c3" + }, + { + "alg": "SHA3-512", + "content": "97f91b61294c364e2dd7973868229a1cacfbeb1be4605f80e740161c1d0753919fe5fb0e5ebe5bcd65289cff6cfdfcc77534fbf3e4b24c8549e9bd927f53e4bc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-util", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-util@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cloud@4.8.0?type=jar", + "description": "Camel Cloud support (deprecated since 4.7)", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-cloud/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-cloud" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895418" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "8b7e2e2f64cdf4d7ed12a2a660099d00" + }, + { + "alg": "SHA-1", + "content": "6891e73b622e935717acc4843b5250dbfdf44adc" + }, + { + "alg": "SHA-256", + "content": "516823bd281f5ce16306c4767a28cd62ba68aa86e49b52d196c4932fba409ca3" + }, + { + "alg": "SHA-512", + "content": "b9878437bf7c0a07f15818ce461e576296111398075835b07fec1bd20d50a39741b87278ff6e156b453faed8d39fc71c3ea303e8eebd612de3925cb624838e50" + }, + { + "alg": "SHA-384", + "content": "e3edb0800146cd39cd3df56ec00995602ddbd565073cd7b823d70683551aa892ec5ef30a87fc4f15258e6d2eba92fa18" + }, + { + "alg": "SHA3-384", + "content": "1d31c7dc35310d71539527dc1e6f41b446cde47b92f66ca79dad09af466a3465a981fed81feaa7261d1616a030875813" + }, + { + "alg": "SHA3-256", + "content": "3506ecc5d109aec6603eefdabb784bfe015df01396df04a9d98b89f631c7a7f7" + }, + { + "alg": "SHA3-512", + "content": "a50b5763601fe68d627aad675e3e6e184284f6ced092138d334ad66e01f02efafa8d2898432af196ebe744a1ea5bd839f725d83352b2b79dc2f4db0df20f34f7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cloud", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-cloud@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-model@4.8.0?type=jar", + "description": "Camel model", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-model/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-core-model" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865818" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "47902aab94ac5fc0e7fef23d4e49f10c" + }, + { + "alg": "SHA-1", + "content": "f6b48d5d00691d1a396d7f597537c18b30761af0" + }, + { + "alg": "SHA-256", + "content": "c53961a72479fcf547d6ee9c42cc38d47443e6ffe7bd4848702ef26b87c10302" + }, + { + "alg": "SHA-512", + "content": "a1025d27ce48b9d198292f117a546eb5b2430c41b4e9f4f679783b6e4706bad3f6c5154ec07a1ff72d2958675f913e64fa9234ff3ec91c1fd049eb364c5bbde6" + }, + { + "alg": "SHA-384", + "content": "d54a196ae9094cd705a3bfc48c3fe8640cca82b1c7630bdf12d2cd8f51d0dce84a0b981845b66028f17b66c1b3c32219" + }, + { + "alg": "SHA3-384", + "content": "6adb34d0b4c011658066d1fe04e35e6c6ca5eb6c6deb9ec874f9c72afbed286a07ea24b6c5607f97597de318c08d6cb9" + }, + { + "alg": "SHA3-256", + "content": "17da184c9a7f49ef0fdd17124997a8de7867ee39735f1c7b0bd73af7200edd53" + }, + { + "alg": "SHA3-512", + "content": "377a00a4a30f89ee12eff39b138c2bf827c5caa48b72b0c363d3a12c41d78ede7e0e708026e3007e5158b267faf4d07c011949d1f61b97075d730363a8b76cd0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-model", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-core-model@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-core-processor@4.8.0?type=jar", + "description": "Camel core processors", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/core/camel-core-processor/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/core/camel-core-processor" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865820" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c46cef6f0f6a8aa2e4eb1677bd04a37f" + }, + { + "alg": "SHA-1", + "content": "9e8c9c172d365e21738bca8296a32f66673f2f0a" + }, + { + "alg": "SHA-256", + "content": "65c937203a334cfe1be9adf80d0adc7225363ab5541295973caf4f8ee5d8b25e" + }, + { + "alg": "SHA-512", + "content": "fd6afae92ae5e9baa25fe92b9ece83e85aa25ff01a053f830adf6710accd120aed24dc04ab78904c06effb4e14a1506ef933def3d9bf7d71ecb5959d5895ab7f" + }, + { + "alg": "SHA-384", + "content": "6deafd9dd89c60118f035bb8056ca01fcdbbaa8c541543f6e9ac58e8daa08dda36f2742501abbe9f3eb3df99810f94f9" + }, + { + "alg": "SHA3-384", + "content": "f0d22ad19f9b87bdff6a334d187d83ecdf3ef47734705754fc56666f321cc4f1196a5a839421a6c329bbe35e9c00a75c" + }, + { + "alg": "SHA3-256", + "content": "f8087245003b0e9bf21ae198555d7a254fe3367c684bc03a4062d13433a1a4cf" + }, + { + "alg": "SHA3-512", + "content": "567ebecdda76e516b53ac9beea43d2f4b2327fea9b5883918763bd34429e73802a252f7ecc62c67b31fbcd9a0ba91e85f311a8ebe0d1df5ab34bbfadc1fbca67" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-core-processor", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-core-processor@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel saga binding for Long-Running-Action framework", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-lra-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-lra-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234775" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "b5c682e8099c4dfb5e6598f6742e1726" + }, + { + "alg": "SHA-1", + "content": "08654bcf25f1b9b2e99807c66e857eecde417b13" + }, + { + "alg": "SHA-256", + "content": "cb5bb46cbd7e4526471f292addf1751a7e5340320bf4d56e31476c5b8ae470d8" + }, + { + "alg": "SHA-512", + "content": "192a55bac7c180b4ab601633126b08dc82c8eaac7975e075403d3faf547676a6379d0d890f593136d02295b921d8ec749b7965b6e6971739128ee5f2ae1bd440" + }, + { + "alg": "SHA-384", + "content": "3df93b2de1edf260c6e0ba9d3604c85bae0468ca49dc4087f5e730a3c14b7a60434ce77c977d62546ad867e9c0f34fc1" + }, + { + "alg": "SHA3-384", + "content": "17d2e28b7ae9c2cf77c14563792a5758d78b5bdafe8cfdf88b9bfe0e0a6f0e72d32d573e9cbb77541d739a3fe992127b" + }, + { + "alg": "SHA3-256", + "content": "9d575b2fe0500ce76014776f8c9bb250389d25f325f90261c48f9381ba7d41f8" + }, + { + "alg": "SHA3-512", + "content": "04754ee313bc396451cd631b7e735e204bc0411c0bf3a7d6fc3683b2b2eb6316809e5b9b20fdc057a83d33e4287ab08df0c062bbe3d64cac6720087ba05651dd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-lra-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-lra@4.8.0.redhat-00017?type=jar", + "description": "Camel saga binding for Long-Running-Action framework", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-lra/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-lra" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234085" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "b2626bf90dea5eda0dfdba759170a18a" + }, + { + "alg": "SHA-1", + "content": "9696f1eeb27ca0fa20bc85e56ae70f5bdd012aab" + }, + { + "alg": "SHA-256", + "content": "64316f77db15441b9574238b87071cf491f436852ddd8c65d8198eecfa32c797" + }, + { + "alg": "SHA-512", + "content": "f2ad1c7c70bb320f69aaf6a437fe5a9142372c4fc69cecaa5bf346f409ca7569eaf2b4ea423e0eeec673b37e76566795d381b2f1f2b967223d83de04149515cb" + }, + { + "alg": "SHA-384", + "content": "2144433c4e46f08baebb1dc3754c7621a17fe6be5113d28b60f713aaeaf8c01b551253d196f961bd69e19b600c5e3c8f" + }, + { + "alg": "SHA3-384", + "content": "3ca2cd34fd5e94fcfe2eb628f9f8accf83339d45b48cd687b98e58e175702b7c6d0ef05053a7ac4ef9038837f65359e6" + }, + { + "alg": "SHA3-256", + "content": "e484d6a82e60dbea06eb9b08f8ab3da5446b043c5a69609573f303cf4ce10232" + }, + { + "alg": "SHA3-512", + "content": "cf25f7b4773b978361c8fb1008ffb3c92843ff35a827152d616fd3b24159ad7ca5499f59f39a1f8f1bea82c68f12bac006f3f78a8d2b4c53831b998f046b3e68" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-lra", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-lra@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-app@4.8.0.redhat-00001?type=jar", + "description": "Main application starting SAGA", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-app" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-app" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-saga-app", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-app@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-flight@4.8.0.redhat-00001?type=jar", + "description": "Flight Service", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-flight" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-flight" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-saga-flight", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-flight@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-payment@4.8.0.redhat-00001?type=jar", + "description": "Payment Service", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-payment" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-payment" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-saga-payment", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-payment@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-train@4.8.0.redhat-00001?type=jar", + "description": "Train Service", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-train" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-saga/camel-example-spring-boot-saga-train" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-saga-train", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-train@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall@4.8.0.redhat-00001?type=pom", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-spring-boot-servicecall", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-consumer@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel ServiceCall EIP and Spring Boot (Consumer)", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-servicecall/camel-example-spring-boot-servicecall-consumer" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-servicecall/camel-example-spring-boot-servicecall-consumer" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-servicecall-consumer", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-consumer@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-consul-starter@4.8.0?type=jar", + "description": "Spring-Boot Starter for Camel Consul support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-consul-starter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-consul-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13218406" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "b503094273eb0908aa5f0f6742daf52d" + }, + { + "alg": "SHA-1", + "content": "43fd355f3b1eaa2ba1da3b12e15afc86585b2266" + }, + { + "alg": "SHA-256", + "content": "77637ff93714a6894cf4cbe9b10f3652ddb3d3ca907ce7ea71b7005e6cac5643" + }, + { + "alg": "SHA-512", + "content": "a32a70dc2bc4f3b794f2a82de2973cfde0670d61cc3f59af26605dcabd4f75d56158d1bd97dbfe3a32456afe5cace8d0197f8ee4cd9f8a2632b6fe24c6c41f7e" + }, + { + "alg": "SHA-384", + "content": "53065c84ac3399e705a3f4c7dd701c5f86493bfb3151d93b55dabca3e447509754dd351e1c5decd51bdd1af741a9553d" + }, + { + "alg": "SHA3-384", + "content": "6adac1ad6adc702a13aa57aa346118d138b3be2ac815d62a435d56e7b4e1e226e3f55a3feac266ca6e12cd9ab1fcbd73" + }, + { + "alg": "SHA3-256", + "content": "389900483459b4cd04df7812c5b7b81a32e3a8ac35950c8bb957fd285d5c2641" + }, + { + "alg": "SHA3-512", + "content": "94a495ff0f34cfc049cdda6074c122d8102b5ecd87820375c5fa0497a532122bebe94c9d558cd922ebc61005d82d4fe425a753ed76f144f9719f3feadd1b1304" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-consul-starter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot/camel-consul-starter@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-consul@4.8.0?type=jar", + "description": "Camel Consul support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-consul/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/components/camel-consul" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865813" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "3fd32ee78d76091ea72eae7e9c7548cc" + }, + { + "alg": "SHA-1", + "content": "a7c6d9a8eaaee69e98e84afe5e1b6244ac57d702" + }, + { + "alg": "SHA-256", + "content": "fedba0be0855c5ddfa6b1d8d9d5d7590ffacf25bb90cc42fbc9f84b7ae4ba799" + }, + { + "alg": "SHA-512", + "content": "e7287266d3ef2129ae63efb4fc72e3f089ae99e300d83ac134f29697dfc837bec471f7ceece633cb300b7fa06dc393e1f3cef3a8809414e55936e87f7d0cba42" + }, + { + "alg": "SHA-384", + "content": "4ba5d4a5bd445678c5fa5e7aec70d0c25a10544a0ba0e190b1ff6424b1b17120baa01c351a3f31bea3de822179eaf095" + }, + { + "alg": "SHA3-384", + "content": "a9bbdc2991e0c058be3ca060198dc156482a366d7b9427781fd3e177e24f5a64d794141c8b637edb4292a6491b1e59ef" + }, + { + "alg": "SHA3-256", + "content": "be5ff94f506ae834be4fc799fac9275d1ca569f5851880867355283c4b8b06ba" + }, + { + "alg": "SHA3-512", + "content": "54861d13406a4ffa057ca663b30b3ab900b7e818a363a705a1bfbc9664b9d582d9aa07554c3bf4bb85a02f77167190351dad59d59bfd5f9fdfea41dfa0d7b46e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-consul", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-consul@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + }, + { + "bom-ref": "pkg:maven/org.kiwiproject/consul-client@1.4.1?type=jar", + "description": "Consul Client for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kiwiproject/consul-client" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/kiwiproject/consul-client" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12866843" + } + ], + "group": "org.kiwiproject", + "hashes": [ + { + "alg": "MD5", + "content": "838a7df39b7a55c3bc57c2c5c2887607" + }, + { + "alg": "SHA-1", + "content": "f51a4f37bce7da7b411af8e6040745ab4f88c4fc" + }, + { + "alg": "SHA-256", + "content": "017d6c8b42221783b1667e260157be5676bcfbe950cf3c1ab729dadcb64d9449" + }, + { + "alg": "SHA-512", + "content": "2774ebcdc6a0acac70f0ad9dca8eda3cfe76544a3e0eade770c4c8b2cddb748c0bbd08241a897bb2fabd42eb19cb5a5465a64e1e2ce4df64ae73412c71f76666" + }, + { + "alg": "SHA-384", + "content": "c53f2d2c99cc49dd19240de0a6d66092d720249b1cbc39fff72c01db5c2c26a15da163f021eac5058bc17a2779ce1b65" + }, + { + "alg": "SHA3-384", + "content": "815ffc0fa26ba3b49630ccab7de4d830c6a778848837da99f34376020c2063988b252512e0cf773ca0463abb4a5d219f" + }, + { + "alg": "SHA3-256", + "content": "abe024ccade13e3f67e5357cfaf63b321cb50a3292cc2da5bfc781e00ef9a349" + }, + { + "alg": "SHA3-512", + "content": "27b622218272390917abb587e4d6abac2ce34c8c07410be385e6473039097e435c13bbe3d576c1488dc6438836d75256a1cce6a197f4bbed761bd2f1b5b5f2ca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "consul-client", + "publisher": "Kiwi Project", + "purl": "pkg:maven/org.kiwiproject/consul-client@1.4.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.4.1" + }, + { + "bom-ref": "pkg:maven/org.checkerframework/checker-qual@3.46.0?type=jar", + "description": "checker-qual contains annotations (type qualifiers) that a programmerwrites to specify Java code for type-checking by the Checker Framework.", + "externalReferences": [ + { + "type": "website", + "url": "https://checkerframework.org/" + }, + { + "type": "vcs", + "url": "https://github.com/typetools/checker-framework.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12727051" + } + ], + "group": "org.checkerframework", + "hashes": [ + { + "alg": "MD5", + "content": "5436ae3f8b4e1dfece73580a232ba98d" + }, + { + "alg": "SHA-1", + "content": "829954afc56f1737a1df3ab5aa889de574b97cc4" + }, + { + "alg": "SHA-256", + "content": "4bc77a172279304c3f35045d6b9c8492780f047e5ad9919d77431caf29e44401" + }, + { + "alg": "SHA-512", + "content": "fc932a2997a3b4392c001490014f7b0f6a2a9148f15b65d4b3de602b18173fd643211f28620e74246aea815ca6d242e9c5be405cac02699151c43e12d1d2f968" + }, + { + "alg": "SHA-384", + "content": "d01808ec3a52a3299d8029fff0b8b950ef5866b2a6304d5911549504841d6d4c79709db7322aa17df9f3f91c881b821b" + }, + { + "alg": "SHA3-384", + "content": "b222b5f40971dc288b0d2dfe3baa5cf0f4f0110bf1c17035329f6c706e61a299a232bf9585ad6558be28741b0cd1cf11" + }, + { + "alg": "SHA3-256", + "content": "d5dd576e144210010adada84644a97f637a70b74452838bb60059e330e499569" + }, + { + "alg": "SHA3-512", + "content": "21c99845a23f31fec5ba6a8f6ab98fafa68b25f8b2cd572ae1943d47de7dc1ef0176a17ebb772636eddec8f27ef34c47803e79219d5ed4a5a45da4ebf7564c7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "name": "checker-qual", + "purl": "pkg:maven/org.checkerframework/checker-qual@3.46.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.46.0" + }, + { + "bom-ref": "pkg:maven/com.squareup.retrofit2/converter-jackson@2.11.0?type=jar", + "description": "A Retrofit Converter which uses Jackson for serialization.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/square/retrofit" + }, + { + "type": "vcs", + "url": "https://github.com/square/retrofit/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865441" + } + ], + "group": "com.squareup.retrofit2", + "hashes": [ + { + "alg": "MD5", + "content": "f87de04fff9a2e730310758a4ecb5eb8" + }, + { + "alg": "SHA-1", + "content": "2f497268272166210e35864fccccf69f7ada1439" + }, + { + "alg": "SHA-256", + "content": "93b5db2d2ae673f3ef53456e6d7dfaad9e97bd7c49c2d05646d2bee9e1bb830e" + }, + { + "alg": "SHA-512", + "content": "c8890936b1003953ebc5899f15b0d755aa2145b160c37f7da554f0b6a6bea99587f8a4472e4d81b6d7226938436223e3811ab7cdff8fc2f29cee60887d311167" + }, + { + "alg": "SHA-384", + "content": "b34a290931d77f209cb4cee04431fbd2837e993569fced36810f1017bb95bed3df3b33f1f8b74ca00e4593da25918c54" + }, + { + "alg": "SHA3-384", + "content": "9c40320778833ccd1d7c373e932605fb0abe27cdd673349d971cb89e0cc49326a67fbb078c81ffc6d745a42ca68b8596" + }, + { + "alg": "SHA3-256", + "content": "433ff88cda1d5f02556f1b5f5bcd62e7451899abb4c5e2ebd1e8cf43dea00834" + }, + { + "alg": "SHA3-512", + "content": "cb316a781c6fcc7ee67f43d5ccb7233f135ecb918af9404e07f3684f0e639bf3e33f6e111c39f2e7f2ef121c8fb3c7086a2afe6291977a0760893f30c95975ac" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "converter-jackson", + "purl": "pkg:maven/com.squareup.retrofit2/converter-jackson@2.11.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.11.0" + }, + { + "bom-ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-guava@2.17.2.redhat-00004?type=jar", + "description": "Add-on datatype-support module for Jackson (https://github.com/FasterXML/jackson) that handles Guava (https://github.com/google/guava) types (currently mostly just collection ones)", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FasterXML/jackson-datatypes-collections" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FasterXML/jackson-datatype-guava/issues" + }, + { + "type": "vcs", + "url": "https://github.com/FasterXML/jackson-datatypes-collections/jackson-datatype-guava" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13115660" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BDQY4C7GBYYA2" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7" + } + ], + "group": "com.fasterxml.jackson.datatype", + "hashes": [ + { + "alg": "MD5", + "content": "7dea2af979b156fe7f11efbd0e75b0ab" + }, + { + "alg": "SHA-1", + "content": "b7e293360b1e7bbfa77a2faf0a3d81da62e0531a" + }, + { + "alg": "SHA-256", + "content": "faed7a29545fbaf5d29f9ad04a8faaf3b17de657a637963ea15abf0d1f878fe9" + }, + { + "alg": "SHA-512", + "content": "d068467399033ca0afc50b278d647e5ff6815e3ad66c0185b10f7adf96d2acbf45ff121f1479b1a0accdd7d694f925b38e5531f2fbec46ff764a729bc840b9e0" + }, + { + "alg": "SHA-384", + "content": "8001b729b7359fe3083fa629e7fd6b66a18b525b761a2911a4b5b4083a42838a1076d2e3fcb92dab43c4bca586f783e4" + }, + { + "alg": "SHA3-384", + "content": "3ae02cc6bcd09688da7f957804289a2024ffcf63491a68c268a34d859b38f661e1c372784280c42073ac465079844d21" + }, + { + "alg": "SHA3-256", + "content": "a56938a684cbee1757295be5d4201a61606e0894c9c733a259c66a805f736b6c" + }, + { + "alg": "SHA3-512", + "content": "65763cc64c2367417083d970bc8db0d356303b9962fbcc8856cee1be477a9b9124e5b4f5e3e02d7312c7bb614318d6802a810a0c641e0a25e4b7ca6cf18369bc" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jackson-datatype-guava", + "pedigree": { + "commits": [ + { + "uid": "651d85f9995cec5bee8a2c2efe4e73ff837f48bf", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/FasterXML/jackson-datatypes-collections.git#2.17.2.redhat-00004" + }, + { + "uid": "1060f839a421e078403e0dcac486fbb7b97c9de2", + "url": "https://github.com/FasterXML/jackson-datatypes-collections.git#jackson-datatypes-collections-2.17.2" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-guava@2.17.2.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "2.17.2.redhat-00004" + }, + { + "bom-ref": "pkg:maven/com.squareup.retrofit2/retrofit@2.11.0?type=jar", + "description": "A type-safe HTTP client for Android and Java.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/square/retrofit" + }, + { + "type": "vcs", + "url": "https://github.com/square/retrofit/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12865445" + } + ], + "group": "com.squareup.retrofit2", + "hashes": [ + { + "alg": "MD5", + "content": "bb518c7b3078881a452b5e82e14f571e" + }, + { + "alg": "SHA-1", + "content": "6ca8c6caf842271f3232e075519fe04081ef7069" + }, + { + "alg": "SHA-256", + "content": "9f4fbbce70728584fbeed38d4061f36d4477e89bca74b4e2ac8aeb6819b0fe43" + }, + { + "alg": "SHA-512", + "content": "24ceb5ac93c85fbc719a9fa1505efaff607b01c1127305737668565bb7aeac1a07b354aa10539f81e7397a422d65a80c69a20e3a4e57a87708b742c3d1c1688a" + }, + { + "alg": "SHA-384", + "content": "fd461ff794c4ccbf5dedd91005102e984051508475458d30b42da1f31755337e412a673c837e2e1d6895f8028e18fe7d" + }, + { + "alg": "SHA3-384", + "content": "fd7e8d96fc78ea5bc4fc0d312327ac61c07e2f1aa2b7e4a6b549817e57ff2b123483569439e1028ebeb25bd2fa7b8daf" + }, + { + "alg": "SHA3-256", + "content": "9c664d759285d7774debb52609a11c5e090baffb2e036221c66f7f4de569a7ff" + }, + { + "alg": "SHA3-512", + "content": "7503c6a149eaa575882a6753e8e61d0919bc757bdb3f0e0b9299ede97d235c5d5d08381845d20b59853d5f35089fe43d026106b5d383a79837a83d3c9846586f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "retrofit", + "purl": "pkg:maven/com.squareup.retrofit2/retrofit@2.11.0?type=jar", + "scope": "required", + "type": "library", + "version": "2.11.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-services@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel ServiceCall EIP and Spring Boot (Services)", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-servicecall/camel-example-spring-boot-servicecall-services" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-servicecall/camel-example-spring-boot-servicecall-services" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-servicecall-services", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-services@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-soap-cxf@4.8.0.redhat-00001?type=jar", + "description": "An example showing the Camel SOAP CXF", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-soap-cxf" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-soap-cxf" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-soap-cxf", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-soap-cxf@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-cxf-soap-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-cxf-soap-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-cxf-soap-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234713" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "97c25ce993a268e63c56495f67287442" + }, + { + "alg": "SHA-1", + "content": "18862a6dbd52b1c09a799425df472120cbec1c9d" + }, + { + "alg": "SHA-256", + "content": "0672044e9cfb30f7b12f9976490ab2634457e091f0625187c2f178322647a5c3" + }, + { + "alg": "SHA-512", + "content": "2760425f817418da395727249e75cf0aa093acc0707a8403ff6f34cde66b648b33ace345ecb1958aaf13fa5d228c7d9c80b53dbfa1b425e119f599968be21f22" + }, + { + "alg": "SHA-384", + "content": "37fd956bbb8caf2bd34e31e37966854324f165b739b78f39ece2e6486f93b85762136ba6bb2c4870a1b45cf260cad489" + }, + { + "alg": "SHA3-384", + "content": "97016df603b2cf40116e7e7e1d7a55d14ee611ab88044134d295f9af1f757ecc351f680ac6b9656f72bba49ef435870c" + }, + { + "alg": "SHA3-256", + "content": "0870c9853d24dc0894dadd4905522ed2e325a37124fe8c02378a3ec4139ad191" + }, + { + "alg": "SHA3-512", + "content": "944827e60dc3a2f1b272a8fcd9dec32ef98b787f2b5b7cd75e714f7e3aae54300e61e11d6a4814bcf5bbcfb47e537511e4e9c464ba70fa201e10490a4a0ef3dd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-soap-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-cxf-soap-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-spring-soap@4.8.0.redhat-00017?type=jar", + "description": "Camel CXF SOAP Spring support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-soap/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-soap" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233543" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "6484709ce30d78dc328da8c7977e60ce" + }, + { + "alg": "SHA-1", + "content": "4c4dfa55b3803aa4dbe178f5c3389d1ff06bdc85" + }, + { + "alg": "SHA-256", + "content": "b08543faa5c6c48474f06954eb801c26fb75bd462c9a0af2c5df00caf8ee12b2" + }, + { + "alg": "SHA-512", + "content": "3d4d3379624f456711dc6b5746c1a02c871e18ac0934f25392b2917cc40327a655a67428e61fafdcb371fc4d6583827b5987035171d53a354ebdea9ec23d5b05" + }, + { + "alg": "SHA-384", + "content": "5d7077e1711f6cb439ea6e7842036ea18e4bf2852e33208f50a28907b08754e331679799a3d2c3d7358b427a689e9803" + }, + { + "alg": "SHA3-384", + "content": "4e9823e4d833b106dacc2d60d6e557256faec8925cdff16c23c64079f8ee7e051dfa14d6aef267d52eac08efa33d3add" + }, + { + "alg": "SHA3-256", + "content": "c558f8b692f4a47dd4c2ee107eb465d212a272a3066d5782c7ba3fac6bc2223c" + }, + { + "alg": "SHA3-512", + "content": "deca5f1b7c54a2ed7d14a7c6ae3cc2ce84ac71ce345c7d138c812a60ea1cefb48f63127123411f1cde75eb02b9bb8e747484a25ac2e33b297df62d08a9f34b49" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-spring-soap", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-spring-soap@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-spring-transport@4.8.0.redhat-00017?type=jar", + "description": "Camel Transport Spring for Apache CXF", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-transport/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-spring-transport" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233615" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "d13378365652cce87e38c0951b86cb94" + }, + { + "alg": "SHA-1", + "content": "f634133190911b94f0eddce60332a516050c8e26" + }, + { + "alg": "SHA-256", + "content": "587ed1244d87204415bafc5aa28ca49d4a72ec5e728f9618655b2741f22435ac" + }, + { + "alg": "SHA-512", + "content": "be73f9467e9360a7cb6d15e606530ee2d129c596647d602749b22c2ec5ff97a79eda7d126c6c92a819f10d5bf585ca9df2e59c3af96a1dd7bb43bccf52c4e114" + }, + { + "alg": "SHA-384", + "content": "928d79cf1494e1f242d73757cfaa0cbd7c8352ef5d177a049899362baf8a51b0cbff1c0c5c6b94c4b950aca8abe833f7" + }, + { + "alg": "SHA3-384", + "content": "732e8c159065197b9006506f45ea6c601ac5c5fd2fc9c7e70513518e8cce8d6a42a2f638e37ad90dbea6400da683afe6" + }, + { + "alg": "SHA3-256", + "content": "ff5ab0765d5654b105e40d290c5e342e70edc88be298db5254bcfd103e9c0c19" + }, + { + "alg": "SHA3-512", + "content": "21999e1fd12b9116961f8b36fc884e06065cc9c1bb87094b38e7326cf8b7aa9b7881846e32f962b6f83461d588464db19cb4d671267db1f9e724333bc75ace43" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-spring-transport", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-spring-transport@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-transport@4.8.0.redhat-00017?type=jar", + "description": "Camel Transport for Apache CXF", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-transport/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-transport" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234186" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "5da15c8da40cab30cb2558814d500af2" + }, + { + "alg": "SHA-1", + "content": "442858d599f84234bfb6274eb7b8a45dd940fcde" + }, + { + "alg": "SHA-256", + "content": "cdb8c1ce55875a28d26e6ad546b4eca00bd9b9937952d6360f91af46a0367bc4" + }, + { + "alg": "SHA-512", + "content": "4ab2494166f19f9019617d868773d849d3776f315896579049a19748163d91243b3c6e46a4b7cfd69417aa4705a8e6c0f3d21903b1b3e6707299a8f9bccc8740" + }, + { + "alg": "SHA-384", + "content": "66f48c0b643bbfa6ca1b264585d410664e2f8f139967c828da95aa2c92433a2b7ecf9adb8cccb0f151889afb401ba6e3" + }, + { + "alg": "SHA3-384", + "content": "334d47b829831fedae039603c3690554da87c2ad63c2d2bdaf3b0060c267b952910789d411b101f61909219d0831a1e9" + }, + { + "alg": "SHA3-256", + "content": "2c10737c2d380f89064398b959f7e841b5777b08d61797e5eea1fce5c487bbaa" + }, + { + "alg": "SHA3-512", + "content": "70ca349654cc2207aad7093a5c80eb1a1aa4836c59fe3c47070c4c848535ae574e3228fd7f6470f2e599a97112b11a0f63c51c9ce63d3790acdf4b878c792254" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-transport", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-transport@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-cxf-soap@4.8.0.redhat-00017?type=jar", + "description": "Camel CXF SOAP support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-cxf-parent/camel-cxf-soap/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-cxf-parent/camel-cxf-soap" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234287" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "5530664705260d0521a4fff11da074aa" + }, + { + "alg": "SHA-1", + "content": "a998f40f7ec06bd05bc507af792b095f45988822" + }, + { + "alg": "SHA-256", + "content": "c5be07acf807b3d8231446d829abf9316ec1a2751d2725c9b2398bf734f3cad5" + }, + { + "alg": "SHA-512", + "content": "af673d294372388f439981836fd687ad3cc773c9b7db84c6abab7cf5f13f860e9179522ff2eb33a3994b8e7422b171466a60dd70a73608cde95b783060dfd991" + }, + { + "alg": "SHA-384", + "content": "1efe550806f745567206a0fe910debb8bbc893f20aa69d8fe7a60c77659fdfb7dcb99538edec218afbb584070aef85b9" + }, + { + "alg": "SHA3-384", + "content": "b7e8ec97105e6dd786e15ad9a9c2fee917d23a48a18a4511ea870da127c34f6d897cf0e2ed39e9e0abd2d26a32d02bd3" + }, + { + "alg": "SHA3-256", + "content": "462688e21627efb4b418d2fd53b98b7d7f9600dbf8d4113cda68302592532034" + }, + { + "alg": "SHA3-512", + "content": "fb2e8342f3b8f685a60a1e70db38c7eb5203dd94e59320d9705ee39742083889a911aa4ec7e8571f0507b3494ed6fabc90ab6ea03630ae4f632994da1f7c077f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-cxf-soap", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-cxf-soap@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime SOAP Binding", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-bindings-soap" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233267" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "c1c1b47c99cdc7b64151596072339968" + }, + { + "alg": "SHA-1", + "content": "e8e8489c44c9af740db40745a79cf5c749f643ac" + }, + { + "alg": "SHA-256", + "content": "7884beee5e509e3b0d037e921a6056c8ff6fdd2e57ae61007232034bdede56fb" + }, + { + "alg": "SHA-512", + "content": "cb2d19d85e2fd50a4aade61a4db76c2f2f0a91d2f4081e484d9aba4b6f2217d109b89e5047c87acd918eac730d8193a482ddd1d0ca0f2eec0ea1f3cadf77e4dd" + }, + { + "alg": "SHA-384", + "content": "2ce0d796b10fbef05afae3c05656c8fadc8180f6247fa460ccd8886c7d76d8090a7338857a7fb3b96008f6fb3237e029" + }, + { + "alg": "SHA3-384", + "content": "e09ebc0d884d3cf2511c2e4c1b919553f37d4a4a121aa4b88cf2135e179b491e1b8724127ade86e4af5bbdebc21f4a78" + }, + { + "alg": "SHA3-256", + "content": "08e1c6ee4b6c7df20dcc1be57bd0cb7a8cf99e91afcdd7e8efd9d726c4fb5267" + }, + { + "alg": "SHA3-512", + "content": "56108e4cca800bc2cd088c0fe17a782ef9d7818c53e49175fe4aef2c7e735d12daf4ca8b1cf4c14a692e8c4bd602ca5e780373abfcf74b76dd53acf11e2ec1f8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-bindings-soap", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/jakarta.jws/jakarta.jws-api@3.0.0.redhat-00002?type=jar", + "description": "Jakarta Web Services Metadata API", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/jws-api" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jws-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jaxws-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jws-api" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11056137" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A3EU2MKLCEQAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5" + } + ], + "group": "jakarta.jws", + "hashes": [ + { + "alg": "MD5", + "content": "d981fe349ebc100c128ca3104bfa3a84" + }, + { + "alg": "SHA-1", + "content": "0c2846ff9fdef5dee6cac93f856f3b64f0cd2167" + }, + { + "alg": "SHA-256", + "content": "82e6a75b2f51f4273571afed4de3c3be5949a67be729fa0d474776c1fcbd8872" + }, + { + "alg": "SHA-512", + "content": "b313e0dd5cb1af049556d900387dd9e9a8b1753635a07358b62652d921ecbdd89713e7ca181e3bf5caff77d940815fd2fa302fade89617cf0b7ec8a4d354f3ce" + }, + { + "alg": "SHA-384", + "content": "25fd79e29e8d8a555139a708428fd9e0599ab52239feaf70214143243eefcd64e5082f3c4988d5cba78eb8ee95fddfde" + }, + { + "alg": "SHA3-384", + "content": "cdf4e7b284950535096526588a5ae6a965dd0a8a180a3ce4f507fd45fde52d8e627794bf69825bb30d574f0e0bcf4983" + }, + { + "alg": "SHA3-256", + "content": "3abd739fbaab82fd1851b40e238a30fe2f1a18234f1fb21a1068e26883808728" + }, + { + "alg": "SHA3-512", + "content": "bbe13accd5ac21a5d73ed08e5e5284da5023dae1610566536e995b1a6a29b3856d2c8ed2fad5045b7639dec7f1ff216a620b45b53846c69a0dfb2af04712d713" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.jws-api", + "pedigree": { + "commits": [ + { + "uid": "fbcf02b0da4bc3fd55dc563aac16b00aab59cf23", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jws-api.git#3.0.0.redhat-00002" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/jakarta.jws/jakarta.jws-api@3.0.0.redhat-00002?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.0.0.redhat-00002" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-wsdl@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime Core for WSDL Based Technologies", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-wsdl" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233285" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "bc59aa4a17ac48a0499be83abf523860" + }, + { + "alg": "SHA-1", + "content": "1295ecfad8ebacf74cf9865b44865543125baef8" + }, + { + "alg": "SHA-256", + "content": "2b5b965a474d01774b3a00cc9d059b7a1d2b1c1429911c927495e25856696763" + }, + { + "alg": "SHA-512", + "content": "c1e0bfcdd01cee14aa2a7743accfc173a6ef30f8e231322adae9925c13700320768130e905f092e0fa495b16cd29b191ec1fbb06ce4743e6cbd10b22ce009aee" + }, + { + "alg": "SHA-384", + "content": "2db4b0cd83de44928ce121ebfed616f5efb7e2adbcd16d050bcbdb1a906d1ecc252e8f16d51ac1e72115f55f0a3b6ab5" + }, + { + "alg": "SHA3-384", + "content": "4585d76f31bee7be09561f46e63ef4755789241a46ca51bb46bf5e25a03bb29a5d0b76ff9325bf23546ede8cdb2ddcd2" + }, + { + "alg": "SHA3-256", + "content": "c37b19908ceef3e84bf8788d2c5c1e791a653f4d35e4f838afcca1f58a411de0" + }, + { + "alg": "SHA3-512", + "content": "adf2d719892b256b0e17fadf1bdaae8886f57b8720558fa8cefc837667c1029520447d3f9502d64044fba4444d515d20d1d06c6d08d985d740a975afa4931b2d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-wsdl", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-wsdl@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar", + "description": "Java stub generator for WSDL", + "externalReferences": [ + { + "type": "website", + "url": "http://sf.net/projects/wsdl4j" + }, + { + "type": "vcs", + "url": "http://wsdl4j.cvs.sourceforge.net/wsdl4j" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/32712" + } + ], + "group": "wsdl4j", + "hashes": [ + { + "alg": "MD5", + "content": "cfc28d89625c5e88589aec7a9aee0208" + }, + { + "alg": "SHA-1", + "content": "6d106a6845a3d3477a1560008479312888e94f2f" + }, + { + "alg": "SHA-256", + "content": "740f448e6b3bc110e02f4a1e56fb57672e732d2ecaf29ae15835051ae8af4725" + }, + { + "alg": "SHA-512", + "content": "3779363efe4b7cf23bfc68388f3c6b5105dedb9192080f144534fcacc8a77014f9f3eb3ae1927344a267364c24deedebf25e306f80dfc293851973685cc58c52" + }, + { + "alg": "SHA-384", + "content": "19b91e5508f5e33b8d7c4ad41d3d679d34c0f7b43651f19c7962f534322e6cb768595430a115df82eaf66905a4a71996" + }, + { + "alg": "SHA3-384", + "content": "ca2e435e6d94fea0b1d025f16b7b540aeb84bb5ef286139fa42c04443d5ec87b5663863a761f125dc4a8114148c89ff4" + }, + { + "alg": "SHA3-256", + "content": "8429876fe0bd0d4bf98130c31856f6accccd2af5986b459689f7b5b49f4bdeff" + }, + { + "alg": "SHA3-512", + "content": "915711a72ea5b1773e3336afcaed273d65283e5e93ddf35a12b8473951cfd3e1454bf782945c7da5399922dda46277054185b182136f2dbc356d43adb8afec8c" + } + ], + "licenses": [ + { + "license": { + "name": "CPL", + "url": "http://www.opensource.org/licenses/cpl1.0.txt" + } + } + ], + "name": "wsdl4j", + "purl": "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar", + "scope": "required", + "type": "library", + "version": "1.6.3" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime JAXB DataBinding", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-databinding-jaxb" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233221" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "fdc78ac471a64af051cb3115e9da7757" + }, + { + "alg": "SHA-1", + "content": "c103397f7d5d8513aaaf8d510785d0848803d752" + }, + { + "alg": "SHA-256", + "content": "3adcb033ecdca51e1843faf4f97145fdc913ec48d955b438f4a05a06b7813f43" + }, + { + "alg": "SHA-512", + "content": "36a9a08107985cbb724b3aeee777825f720db46da6b0b25fd74bfd4a43dde6b4689c29f9e950169e1486a24982120ad511a609c2d39e48a975fe2ae965fa031e" + }, + { + "alg": "SHA-384", + "content": "2846bb5db13e094701e4290f9c1819b4bf9a017d3cd339aa21180487721b75d154fdc894867e6b05e5ec85198607a1bc" + }, + { + "alg": "SHA3-384", + "content": "460fc6411c4fde54503567001a925b6753e892f003b291e1fc7af7cbaa34a078516dcc760d181751ebf872e806dbad75" + }, + { + "alg": "SHA3-256", + "content": "837dbce416886a472df02c1f91af4883feed1404c1608b0f91416071daa54ffb" + }, + { + "alg": "SHA3-512", + "content": "12ae53e4ac0d04aecc24c8d9121d2980f2e8bba882bfc4d4274790051ec8383b97983e2bcd6114454fc844e1602463c98f3d4e82d2807d7d2c82ac6b33e3078c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-databinding-jaxb", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Spring Boot Starter JAX-WS", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-spring-boot-starter-jaxws" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232992" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "8438f8cda4334d10e318932caf94aed1" + }, + { + "alg": "SHA-1", + "content": "ac52ac96ea639fb62dade11fc355f729a11c42b6" + }, + { + "alg": "SHA-256", + "content": "414bd3cc2e86c7b35122f1662ff7f44bf353f7b522e8419cc8f6cba42b9663d7" + }, + { + "alg": "SHA-512", + "content": "46431f387d12a5640c18541b4dd7c36d9b1f39b1da58b1546bc47e283b5c23a8f3591d977b82a45d26ee77265f69826374822086a8581f200ff27611bfca4310" + }, + { + "alg": "SHA-384", + "content": "de2829063de2c2a6d9c4cfbd7c5123122345cb7e8e611606b67b9f493b53792d0d317447d03d1258d28c38b3bfc41684" + }, + { + "alg": "SHA3-384", + "content": "631b449dce41b5eec9b7363c7633eef995d85dd74f5051b74ced2b4a2d230564a1e1ea5e6a765520b9aca77ab3e2cf28" + }, + { + "alg": "SHA3-256", + "content": "fbf1360dcb54a6f93fef1c750c9dac510d873a143e815da7d5763e71e808e247" + }, + { + "alg": "SHA3-512", + "content": "091fcecbf25356efd0c4a10a1ca52745d12e0f857ca71fd07ccb68c2334f79c4e7333ec5bda67d227b0f376b0afe285a7054713b5fe21b60eaa81a1858f7c2c6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-spring-boot-starter-jaxws", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime JAX-WS Frontend", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-frontend-jaxws" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232975" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "19872584b9cfad3e95a144199a26d39b" + }, + { + "alg": "SHA-1", + "content": "e1d623dbbb20127cdb0944599961d78b585dbcee" + }, + { + "alg": "SHA-256", + "content": "973168456639007c59bcdb38c956f1778ee7091bfe2098b00b1b2cb50ca6aa97" + }, + { + "alg": "SHA-512", + "content": "f260e63406377c855171d986c4d095dc3b00f543e6e7218892242c8f9a06e091f3bfee192e3db19a872118c84d57ea0b127c40ed991af67bc7f474a6eb6d49c9" + }, + { + "alg": "SHA-384", + "content": "794f540a1c4e8ee3da583d689428d87208f4e57931bd295554cfce60549eed44b41f193afbcc1a3c9c6c4530d44d477f" + }, + { + "alg": "SHA3-384", + "content": "7f8ac2f00a560e455f8982015f08478ef8c7674e0e47ac1c624ffc64e15b4904882cb0c864a3633f4ce457967f4fe6aa" + }, + { + "alg": "SHA3-256", + "content": "2a821cc60c6d3b30e42d28e680f7f909cc2845744098b178eafc5f799faed4ac" + }, + { + "alg": "SHA3-512", + "content": "2d887729da1efdf08222cdab1341ced24f8736b7b5ca256974c8b4bd325efd7d8da60eacccf7e7fb43ebbcd63563c547590d5b8a19bbe77e1deb3c1b2da270c2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-frontend-jaxws", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/xml-resolver/xml-resolver@1.2.0.redhat-12?type=jar", + "description": "xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers and users easier.", + "externalReferences": [ + { + "type": "website", + "url": "http://xerces.apache.org/xml-commons/components/resolver/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "http://issues.apache.org/bugzilla/" + }, + { + "type": "mailing-list", + "url": "http://mail-archives.apache.org/mod_mbox/xml-commons-dev/" + }, + { + "type": "vcs", + "url": "http://svn.apache.org/viewvc/xml/commons/tags/xml-commons-resolver-1_2/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13247552" + } + ], + "group": "xml-resolver", + "hashes": [ + { + "alg": "MD5", + "content": "24d10dd9f03745530073e58f6e8d5ec3" + }, + { + "alg": "SHA-1", + "content": "01e8371a6a2d7f46aa32d4ccb06f1fb8283b765b" + }, + { + "alg": "SHA-256", + "content": "bfc4ddff0f917b7cf0ed2fff88580daec37ee702c077aa7888b9f497d328364c" + }, + { + "alg": "SHA-512", + "content": "1d3648e568b9a798ba8096d2a2e68e4d1186f4b6a99d39f7edf229c8fe508c881117db3c5ac70fdf9c96a5467ac569d3b966d61d1dc9642302f064de4a04f4ba" + }, + { + "alg": "SHA-384", + "content": "d079050979d5de1535e9e67023ecf0e788b2dd07f0c816b179a68efd78002c830297a562f2b5733b215deb1ce63fd94e" + }, + { + "alg": "SHA3-384", + "content": "3b92388d255a6534e518efd5715adfde05b779fd8e651d53f869d1577df62325e5783038a4fae5e275567de3f5807f5f" + }, + { + "alg": "SHA3-256", + "content": "af5be3d0242a80a52528cc56f67500ba5eb005e322d874aa7477bf5929264942" + }, + { + "alg": "SHA3-512", + "content": "5d05abe17038bedbf2f46ca1f208388bb37bbad1a052041aa2762b10d8c1aafee0896f964ba04e1bd5067a6a354611ccbdd0bb5276e0dc1cadb2a5fe2faff98f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "xml-resolver", + "publisher": "Red Hat", + "purl": "pkg:maven/xml-resolver/xml-resolver@1.2.0.redhat-12?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "1.2.0.redhat-12" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime XML Binding", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-bindings-xml" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233090" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "44b12da3b712757aa947b5a70572cf04" + }, + { + "alg": "SHA-1", + "content": "4aae6a18515502b1b7a1e7c518421e3d3da12e95" + }, + { + "alg": "SHA-256", + "content": "ddc8989e1d7b24e87b46061e133656286d499c2c59979034e6c6364f56dda010" + }, + { + "alg": "SHA-512", + "content": "68b169a27df70abe9e2754b818d2e8dedb691baf04725adea7cc2bbb15675994a908e2a2ef9a1d7695eb45b187ce3c6d21f274fa6484762c0c3937a525784f4f" + }, + { + "alg": "SHA-384", + "content": "03d402c037cb55e052f269cdefb9fb0cffc2fc7914336c9044a60345964e3c266d8fd80d0a09c82a3c98f6ae1591a122" + }, + { + "alg": "SHA3-384", + "content": "579c0c97a67e5233cd7ec07380e299286a1a461f39015bd172467f1b1772a0f5e61058e0c3a4dd30416d4df35a0e05d9" + }, + { + "alg": "SHA3-256", + "content": "0d2fd9e1fc5f1b1a90f17f5d71edf84ce632ea6cc1f59deaafbc0b7d4cb01677" + }, + { + "alg": "SHA3-512", + "content": "9ed22ccba9f488f07b7e9c77c2928075b0fd370375d374436485b54f9c40b624be84b56807817087567b33b803ddeee7c6fabc445d53a01d782152ef6cffc7bd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-bindings-xml", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime Simple Frontend", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-frontend-simple" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232740" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "6d7ade4d62f9ff25f56021bd392d469c" + }, + { + "alg": "SHA-1", + "content": "071c01dc4ce6b98afb1ac7e55f76dbc29c7f78f7" + }, + { + "alg": "SHA-256", + "content": "9ba741a7a57bd499fa12fe1cecd13965ec7a4259a9961d1e9ce3a2f362790a90" + }, + { + "alg": "SHA-512", + "content": "b4e3945a3a30d2cbc5ca27191b794265651e2f75144ce2b923ad87a211027844ed90130b535d889b01e29294406df0afece792593f3432aeec14fc48eacfd1be" + }, + { + "alg": "SHA-384", + "content": "174313278071098a1313916b06f05576c8bc42b5d719455039759747f905ba06ac6a68a068ce3c5dd0f8602dade8eb7f" + }, + { + "alg": "SHA3-384", + "content": "ce4589007e4b3db02889c2a14cf21df680d30550353fd779864e05fd19404f7800113d4074304febc3b61caf9a1950f4" + }, + { + "alg": "SHA3-256", + "content": "db3afc3e7b1949f81917d528c0bc580288e7c6c96ba8009c932306d6fc6c304f" + }, + { + "alg": "SHA3-512", + "content": "407833d2985d646e9bec896e059f2a53ab154ef1887ff816964aab9a10a99dfaa60ad8562d1c4a082ddef5cd19cf2b45714e2455fc6d2febcbfdda8ac7a5d51b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-frontend-simple", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime WS Addressing", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-ws-addr" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233286" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "5b2aea3f1c93f10723b267225da82868" + }, + { + "alg": "SHA-1", + "content": "c6d393e2d59a92f5d093a391159094b41a816ac2" + }, + { + "alg": "SHA-256", + "content": "92d2e61404db37c3fe168324a0ca292f53466b723ad7a68c8802b1d29d1addcf" + }, + { + "alg": "SHA-512", + "content": "852912af6e1e822f81d58b49d7842975157a1fdf96dde42e2d0c08d8d4e549f1c9236d1383ce4147e9d6250bde0b574957c77a86a4d15a58d2f448cd289b3c60" + }, + { + "alg": "SHA-384", + "content": "f27f5ae49c77e894d460a6d2c363704eab894915d8b04d7c8b7af8bc89de2f98be7d6767b4674bcbcc240e582a38ba32" + }, + { + "alg": "SHA3-384", + "content": "5d0c8dae4dfc02710fd3215cc0bb6fd993d59f141a5b53afe00d58954f85d8e6a1b989f8d9a70f2ddccbe5b6da86b3ef" + }, + { + "alg": "SHA3-256", + "content": "a0765fdb3a725ca0808b91d56e76e67862c5741f75fb3138c728bf08879248ff" + }, + { + "alg": "SHA3-512", + "content": "67bff58b9ca1c295e44ecd2ee92722b4f1944612f326136872d70c8de67d1ba993ab5f0293a81aa1b489eeb08db1f977c388cf8708ab549e8932884bc4b039b1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-ws-addr", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Runtime WS Policy", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-ws-policy" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233074" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "b50dc24e70785a142a568aab41424ca8" + }, + { + "alg": "SHA-1", + "content": "7733f3500f33e494868d264828325199922e25b2" + }, + { + "alg": "SHA-256", + "content": "3f4461ed056118c08179ff76dec95a8c5e2627985b43907f7866a1b9a135ed42" + }, + { + "alg": "SHA-512", + "content": "d60fa047c2d2d5fbac45d3e4977e4bec71c179c98d3bc9ce59550b1b7616eaef7943af33c4e4c8869a0bf1832cefd63fc654773e9220852751d0afd80aa9ac3a" + }, + { + "alg": "SHA-384", + "content": "841d8a2052a35718e8758b8c76fe93edbd8310579ff9233034162e9fedfee1b593bb686fef9c76c7fa503e082af8218b" + }, + { + "alg": "SHA3-384", + "content": "3d1bcc84a4d7f521dade8a7d25f4e4e29769088fb199064f5b24d662aa72c6be1f42e745ab6943f8b8a17331b4c2a190" + }, + { + "alg": "SHA3-256", + "content": "5070572f2addad5d65fdbf30713165866a3ab39a47fd0ecf8fc3fd4005de54ee" + }, + { + "alg": "SHA3-512", + "content": "5ee21203fccca06dd00de8f00357ec7493b317e118424660ef8f2ceaf780475885e5bc647fccc7421852bc1e2352f488ded339df73065bad02a964f66818a70b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-ws-policy", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.neethi/neethi@3.2.0.redhat-00004?type=jar", + "description": "Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest WS Policy specification which was published in March 2006. This framework is specifically written to enable the Apache Web services stack to use WS Policy as a way of expressing it's requirements and capabilities.", + "externalReferences": [ + { + "type": "website", + "url": "https://ws.apache.org/neethi/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/NEETHI" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/ws-dev/" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=ws-neethi.git;a=summary" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12022910" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/A63DJSHB2DYAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.10-9-mx-mvn3.6.0:1.0.4" + } + ], + "group": "org.apache.neethi", + "hashes": [ + { + "alg": "MD5", + "content": "091ae91207c8893a12e5a1c69a48af6f" + }, + { + "alg": "SHA-1", + "content": "5df3ca854b070fb506ccb61312243c05bbac2b55" + }, + { + "alg": "SHA-256", + "content": "a60028beff7902446868ed04f4f53497e0d2b01560e7d87fc0a51f50f578dfc0" + }, + { + "alg": "SHA-512", + "content": "e4b1d1a4cbbcdc5c19edc371c872da891da513f7cf1fe61a380bb61a698b6605c39dc597a1e56aebb7410e0146eb4b9441b7a8594d54c0b11af46b59c85489fe" + }, + { + "alg": "SHA-384", + "content": "6c1d9210e7ceaf6b44684c608e6b0723a42ccb712d4cf8e6f12641d113ea94e244a8189643ed0361272c9f0a0202b5b9" + }, + { + "alg": "SHA3-384", + "content": "9327179618489dff157a9cc2314d87a18eeb8943caf6e0008c791dca8876dfaa18cf296ef38dc8851a31ba6580cefd6b" + }, + { + "alg": "SHA3-256", + "content": "b76fb77d5d417c363aee0c108702b37fb6aade566de6059921eccede96309c2f" + }, + { + "alg": "SHA3-512", + "content": "80abd70aa730b353abcec7dd44aa0c2a86059f637540aef54c963cc50052e239c7dafc0c67aba32c7b853a2b22f7aa488059da96827a4db8a6442818b3925502" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "neethi", + "pedigree": { + "commits": [ + { + "uid": "238e7d29b5157f2774f60d74d955070b2fba1c9b", + "url": "https://code.engineering.redhat.com/gerrit/apache/ws-neethi.git#3.2.0.redhat-00004" + }, + { + "uid": "0c0b0ffb670f0586d056c3d634e51dcdddff26f5", + "url": "https://github.com/apache/ws-neethi.git#neethi-3.2.0" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.neethi/neethi@3.2.0.redhat-00004?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.2.0.redhat-00004" + }, + { + "bom-ref": "pkg:maven/org.apache.cxf/cxf-rt-features-metrics@4.0.5.fuse-redhat-00019?type=jar", + "description": "Apache CXF Metrics Feature", + "externalReferences": [ + { + "type": "website", + "url": "https://cxf.apache.org/cxf-rt-features-metrics" + }, + { + "type": "build-system", + "url": "https://builds.apache.org/view/A-D/view/CXF/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CXF" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/cxf-users" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=cxf.git/cxf-parent/cxf-rt-features-metrics" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13232810" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAE" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.cxf", + "hashes": [ + { + "alg": "MD5", + "content": "16318bc76966d945317c8a45ac764516" + }, + { + "alg": "SHA-1", + "content": "fa2a8042d9146820ea8e9b22ddd154245e51a218" + }, + { + "alg": "SHA-256", + "content": "53a271f5d564a8f512f84ca55cc0e3807b06ddd4e6f09a61121927bef515397c" + }, + { + "alg": "SHA-512", + "content": "33fd4b2afa680b9d90357819ac296bf34becbb575aebd8c72ce84433a12628f623561cbf662d4395f1cd2b324b09d7bc4cbc9d12e0427e600095f5009515d91c" + }, + { + "alg": "SHA-384", + "content": "2e62e597ab0acadb2f5bbd924311024c67ef7d1c2bad38af21ecbe1d3943a4251e81fe9fa2cbf63b6c7370e8e2334768" + }, + { + "alg": "SHA3-384", + "content": "472766a44c1549d4bdb3d2d8ec270b525dea1a5d4448e8ec534153a9c469b5d8bfe0916fac66dc6f51483049fb1f7a74" + }, + { + "alg": "SHA3-256", + "content": "73fe332d195f72d6c6853af0e9eb3320560e24bcf314be0e85f99d98df57ee41" + }, + { + "alg": "SHA3-512", + "content": "49313adb4f217cb4a08861936f0c424b2f9cd5bb67c76ab301acf9a58055486f8ddab68cb2ef9804989b693e1842bd68ea8975a7feaee985f2a9de648170eb31" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "cxf-rt-features-metrics", + "pedigree": { + "commits": [ + { + "uid": "a889c00db9928286055ccddc7373dff74eb8b30e", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/cxf.git#4.0.5.fuse-redhat-00019" + }, + { + "uid": "30de6afdef4f2a2f8cb7547b1ec9368e57a06d79", + "url": "ssh://git@github.com/jboss-fuse/cxf.git#4.0.5-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.cxf/cxf-rt-features-metrics@4.0.5.fuse-redhat-00019?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.0.5.fuse-redhat-00019" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-splitter-eip@4.8.0.redhat-00001?type=jar", + "description": "An example showing Splitter EIP with Camel and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-splitter-eip" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-splitter-eip" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-splitter-eip", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-splitter-eip@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-autoconfigure@4.8.0.redhat-00001?type=jar", + "description": "An example showing JTA with Spring Boot Autoconfiguration", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/spring-boot-jta-jpa-autoconfigure" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/spring-boot-jta-jpa-autoconfigure" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "spring-boot-jta-jpa-autoconfigure", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-autoconfigure@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@3.3.6?type=jar", + "description": "Starter for using Spring Data JPA with Hibernate", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234418" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "c35e1f409da2eccc4fb7c44e245ee9f5" + }, + { + "alg": "SHA-1", + "content": "11ae03208a758802916748ac5ebe357b842fe775" + }, + { + "alg": "SHA-256", + "content": "89054b18e185dcf33a33c1770a79ea403bc893ecd7f54d7b5a4a9a80190f919f" + }, + { + "alg": "SHA-512", + "content": "609fc25ec89c9c3c4ee9038046fa53cb34418a86125558e29d916cea52945473992bff658fe4c9255836fb36a4b8619d7ee903e3ea740a718ed2ac73ab451fbe" + }, + { + "alg": "SHA-384", + "content": "586429b1494528798ce16cba920a2b8449146027d6e8a54aae8e31b95d56225b3da442afd4dd3e5189896e9e58439f9a" + }, + { + "alg": "SHA3-384", + "content": "914d349bc243fb4038482eb4f15eb5c79ac9bddf8366142919e7c6316f4a04190bb71dcf0f519a9e0cd1ef5901fa2576" + }, + { + "alg": "SHA3-256", + "content": "bf5ccf7c0e0009b0ee2a7e858e4cf304691bc7f1add3d9ba635586d09721ef11" + }, + { + "alg": "SHA3-512", + "content": "9e666c7e3c908d6dd96ace6a2fdc358e0f737aa61b2218d414381f3b9d5a6df57e863dd305ed2cb23c687849549406224951756145f7da5bdfc08c832b507f9e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-data-jpa", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.boot/spring-boot-starter-aop@3.3.6?type=jar", + "description": "Starter for aspect-oriented programming with Spring AOP and AspectJ", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-boot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-boot/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-boot" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234414" + } + ], + "group": "org.springframework.boot", + "hashes": [ + { + "alg": "MD5", + "content": "352f41af747cc53ffb2c34bc37608538" + }, + { + "alg": "SHA-1", + "content": "5d3c459b950fad499ef1bdd0cf22f6cfdedffbb1" + }, + { + "alg": "SHA-256", + "content": "d5ecf0106ab0706accf47813ffc2afe7019c2480c7b61fc32e1cf9495214f253" + }, + { + "alg": "SHA-512", + "content": "fe3d54a4fe458035fbb16ccf8798089ea4c9594909aa8da5d7450ad9fcda456041c297b6878d8dc2ecda5fc4929455cc51c3a45b69870306ade8882c8fec4027" + }, + { + "alg": "SHA-384", + "content": "5d85fc2a2bbaa34538397ef0554e504cb2b7812f3565f59a2db18b5c3be90dab9303d2a24d1a67e3f6ae0275980b6cf7" + }, + { + "alg": "SHA3-384", + "content": "2f471b95c618ece5c227d7f7b00ebd446dc7ba429352f1d3218ad02f812cc2ad48683cb85e643e7450c5d2eead246e60" + }, + { + "alg": "SHA3-256", + "content": "609d458446e059fb44511982f89126457dd7949c2434f5e0cc3acc3500f1b75e" + }, + { + "alg": "SHA3-512", + "content": "b75f659e9be57bfa46375501dadc3d075abbc200a67cae2d20af677b971cc3b79fb39b0a8fee570cdd203643ef66ad1f3780cc185355b4ca09b79a96efdcc6d3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-boot-starter-aop", + "publisher": "VMware, Inc.", + "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-aop@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.aspectj/aspectjweaver@1.9.22.1?type=jar", + "description": "The AspectJ weaver applies aspects to Java classes. It can be used as a Java agent in order to apply load-time weaving (LTW) during class-loading and also contains the AspectJ runtime classes.", + "externalReferences": [ + { + "type": "website", + "url": "https://www.eclipse.org/aspectj/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse/org.aspectj" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12446179" + } + ], + "group": "org.aspectj", + "hashes": [ + { + "alg": "MD5", + "content": "f2edbc088126174a11b68279bd26c6eb" + }, + { + "alg": "SHA-1", + "content": "bca243d0af0db4758fbae45c5f4995cb5dabb612" + }, + { + "alg": "SHA-256", + "content": "cd2dd01ec2424c05669df4d557f6c6cd7ed87b05257ee3c866b4c5b116b18a78" + }, + { + "alg": "SHA-512", + "content": "24353549f6e9d74c5037ee4bbbc24af3f4243418e84fd22d15535a4384dd6469c9ff039bb8b03c3343d047dba4505201260cf884b238790b9c87cbfe9101bf3c" + }, + { + "alg": "SHA-384", + "content": "3ba387ee4aec54a7b42bed0dc91a08d88465b27d9a5b06bdf5ea38c043f30857f05ca2a8818524a3652c41a4e3a3827b" + }, + { + "alg": "SHA3-384", + "content": "e9d7fe73eec67bd4051cd52b97b899148cd9e9da1e3ff5c76033a569836e942ea091303b7b447577aed30b241cb76322" + }, + { + "alg": "SHA3-256", + "content": "f013a88c0b7dad08180b18000a79d462089fd5e0c534082ae88d0c6376fc889e" + }, + { + "alg": "SHA3-512", + "content": "2c44846e6408e3733d766d8a57b1059035ab8a7ad01049e3776725515899a0ae31508aee888097904a1b186598c28e3131f2ee2a0bfba73f6391afcbfdf14214" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "name": "aspectjweaver", + "purl": "pkg:maven/org.aspectj/aspectjweaver@1.9.22.1?type=jar", + "scope": "required", + "type": "library", + "version": "1.9.22.1" + }, + { + "bom-ref": "pkg:maven/org.hibernate.orm/hibernate-core@6.5.3.Final?type=jar", + "description": "Hibernate's core ORM functionality", + "externalReferences": [ + { + "type": "website", + "url": "https://hibernate.org/orm" + }, + { + "type": "issue-tracker", + "url": "https://hibernate.atlassian.net/browse/HHH" + }, + { + "type": "vcs", + "url": "https://github.com/hibernate/hibernate-orm" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13035874" + } + ], + "group": "org.hibernate.orm", + "hashes": [ + { + "alg": "MD5", + "content": "7cee9d560d7ca13dd0fc4e6d5f34f9b7" + }, + { + "alg": "SHA-1", + "content": "1e23c320a5d10f5eaecbd23095fca5c5c83c1fb5" + }, + { + "alg": "SHA-256", + "content": "f79b5e5029a72e2f0ba7542591fba8305c9edbc0dbdc974541f2376ff1203422" + }, + { + "alg": "SHA-512", + "content": "2dc78e0ac963876cf48ad8a97832255c5ffe4d9f7b3ae8e2ba4a6621f6042968aca350f9009a3dde476684cf606846bf24e081bcaa52f5c455db8e980d810e8a" + }, + { + "alg": "SHA-384", + "content": "1a39c02810a1421c61261318509bb33cf1b21626b392eeff5936004e06c9eafdf5442150cb00d0b56d6d54a952a23fba" + }, + { + "alg": "SHA3-384", + "content": "2ee1924a00ff49a315db08f2b07a18155df78f84214ea9f7961edd5261093cf2b2f3d16a206e2b9aa26e7486c2ee49fa" + }, + { + "alg": "SHA3-256", + "content": "3ab7d0dd6470b165979486dc4bc3fcd5f21b118ef715cd354ee57bda975c4f0b" + }, + { + "alg": "SHA3-512", + "content": "a6876b70625e10349a3fbb30de2a3e5cd15a851307211cff1f194a3469b19cc4867fe353b7df2fa7174fb9bcecb3e9dfa10d81e7b35624ab81438f11a15eede2" + } + ], + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "name": "hibernate-core", + "publisher": "Hibernate.org", + "purl": "pkg:maven/org.hibernate.orm/hibernate-core@6.5.3.Final?type=jar", + "scope": "required", + "type": "library", + "version": "6.5.3.Final" + }, + { + "bom-ref": "pkg:maven/jakarta.persistence/jakarta.persistence-api@3.1.0?type=jar", + "description": "Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eclipse-ee4j/jpa-api" + }, + { + "type": "distribution", + "url": "https://jakarta.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eclipse-ee4j/jpa-api/issues" + }, + { + "type": "mailing-list", + "url": "https://dev.eclipse.org/mhonarc/lists/jpa-dev/" + }, + { + "type": "vcs", + "url": "https://github.com/eclipse-ee4j/jpa-api.git" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/8171578" + } + ], + "group": "jakarta.persistence", + "hashes": [ + { + "alg": "MD5", + "content": "35a1b7dfb38cf44ff795be607b0e6b5b" + }, + { + "alg": "SHA-1", + "content": "66901fa1c373c6aff65c13791cc11da72060a8d6" + }, + { + "alg": "SHA-256", + "content": "475389446d35c6f46c565728b756dc508c284644ea2690644e0d8e7e339d42fd" + }, + { + "alg": "SHA-512", + "content": "5ff83c6ade13eff5ca9daf7cf13bbba46a2c8aec3cc6ae4eea884026a081698d0425d18804147a075459c02480d25c88528a942bee3f6778a1e903a6a1fc8263" + }, + { + "alg": "SHA-384", + "content": "4cb763868a36715a04572b9c6d2244edd8c25c11ceda62230f03e3d76e79c138cdeaa7bedc82b157f1dec59e20986e4c" + }, + { + "alg": "SHA3-384", + "content": "ab5f8ae2862eaf372ea0f5f0d5ffc4a7849710e7344e1d8c4b8809ef68b929fae6d2334ed9086d56e52f536094c8c929" + }, + { + "alg": "SHA3-256", + "content": "5f446cb10eabaa42f6b778b9204171afda6ddb8a0f5ce1d73fca12ff8a30f22e" + }, + { + "alg": "SHA3-512", + "content": "b9a03156e740c39dc49f8dbe35c12ff723d2e2a84a99ca79cd0b24f97ec8d99ada2b7d02dc7108a8381e449f7726fb0d186535bd4c0874ef4f8036ef05f075cd" + } + ], + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "name": "jakarta.persistence-api", + "publisher": "Eclipse Foundation", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@3.1.0?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.0" + }, + { + "bom-ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@6.0.6.Final?type=jar", + "description": "Common reflection code used in support of annotation processing", + "externalReferences": [ + { + "type": "website", + "url": "http://hibernate.org" + }, + { + "type": "issue-tracker", + "url": "https://hibernate.atlassian.net/browse/HCANN" + }, + { + "type": "vcs", + "url": "http://github.com/hibernate/hibernate-commons-annotations" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/9929747" + } + ], + "group": "org.hibernate.common", + "hashes": [ + { + "alg": "MD5", + "content": "c155df7d9f04d15f3f6bbe79f4907074" + }, + { + "alg": "SHA-1", + "content": "77a5f94b56d49508e0ee334751db5b78e5ccd50c" + }, + { + "alg": "SHA-256", + "content": "cd974e0a8481fafdbaf9b4a0f08bb5a6c969b0365482763eedf77e6fd7f493b7" + }, + { + "alg": "SHA-512", + "content": "f670bfed87c66897660da90a3d94e4d21de8fb726757858d18d331999c3d223badc24af6437046f01e8c90f2b2427001500b9679f29c3465c402ae082a97712c" + }, + { + "alg": "SHA-384", + "content": "0f8a875b2d1b632f3b5764be0ca9da4bc37757697984fa80ac74a31a7650f0923364f79f1f32a86da95023a58cf2915f" + }, + { + "alg": "SHA3-384", + "content": "0b3a7da556b2b86cf986b2064c4cf137af69814c5fd541ae380cc794e93178d751998ed63a6f551fc549306863ed1000" + }, + { + "alg": "SHA3-256", + "content": "aeb443cebd0d1cd733dfb67328675e9b872edbbb1383341af4e549494b171ddb" + }, + { + "alg": "SHA3-512", + "content": "af9f75b63fb0a8e964c2a95c4ca9371b308a3ac49e4d891b4e0ad0af4fec862a3aa715180f57de04e56b1886d3088725cf259644e1e07a468912a8a1a7c92456" + } + ], + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "name": "hibernate-commons-annotations", + "publisher": "Hibernate.org", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@6.0.6.Final?type=jar", + "scope": "required", + "type": "library", + "version": "6.0.6.Final" + }, + { + "bom-ref": "pkg:maven/io.smallrye/jandex@3.1.2?type=jar", + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "type": "website", + "url": "https://smallrye.io" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/smallrye/jandex/issues" + }, + { + "type": "vcs", + "url": "https://github.com/smallrye/jandex/jandex/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13185541" + } + ], + "group": "io.smallrye", + "hashes": [ + { + "alg": "MD5", + "content": "757ae579a3a52c03c3c60fbe393c086f" + }, + { + "alg": "SHA-1", + "content": "a6c1c89925c7df06242b03dddb353116ceb9584c" + }, + { + "alg": "SHA-256", + "content": "dee12fa1787d5523ed1a02d6c63b19e7aef6ac560f7c6d70595db01aa37e041e" + }, + { + "alg": "SHA-512", + "content": "fa47891bf01ea727007f29f0265d28b536957171ea1e9af9a28b3715bbf9bf938562c3ea038c761d4ba0fd652db5772dd7c6cefd05299e25bf412a32e816d4f6" + }, + { + "alg": "SHA-384", + "content": "11c526d42649c4ad06bdc237751d76ff2be43a47cc0e0a9b837e44ec18472e466b8197397049f935bac459b75a76389e" + }, + { + "alg": "SHA3-384", + "content": "78f99a6edbe9555f49bac3eaa90f60b77c44acc57c9781da3f9e2e8877caf8d4d2e00d4644fcbb1d4130ff5ac436af4c" + }, + { + "alg": "SHA3-256", + "content": "2b185d30b0878dfc1ce0a7b554f733f46da961292ccdf046979ce959fb8cf9dc" + }, + { + "alg": "SHA3-512", + "content": "a251f9fc5ace3ddfe1bdea89c1ae824270774ddab7b64689ea64072942794ef4e0944b98ff4263a516562f8304ea3b2bc3c2f493bc798808a413277c0448775a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "jandex", + "purl": "pkg:maven/io.smallrye/jandex@3.1.2?type=jar", + "scope": "required", + "type": "library", + "version": "3.1.2" + }, + { + "bom-ref": "pkg:maven/org.antlr/antlr4-runtime@4.13.0?type=jar", + "description": "The ANTLR 4 Runtime", + "externalReferences": [ + { + "type": "website", + "url": "https://www.antlr.org/antlr4-runtime/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/antlr/antlr4/issues" + }, + { + "type": "mailing-list", + "url": "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion" + }, + { + "type": "vcs", + "url": "https://github.com/antlr/antlr4/tree/master/antlr4-runtime" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11371458" + } + ], + "group": "org.antlr", + "hashes": [ + { + "alg": "MD5", + "content": "bff95723c494b332b14575d713a65df4" + }, + { + "alg": "SHA-1", + "content": "5a02e48521624faaf5ff4d99afc88b01686af655" + }, + { + "alg": "SHA-256", + "content": "bd7f7b5d07bc0b047f10915b32ca4bb1de9e57d8049098882e4453c88c076a5d" + }, + { + "alg": "SHA-512", + "content": "a0ae6db0be7d6d76682bcbfb82d105ec43a2b1625fadd97ce8438b50e326c7be4297963969739dd72bc43290add10da24d57c6c278215658dcc309cb98fa60c3" + }, + { + "alg": "SHA-384", + "content": "d282c995bd1c829d75ca0731c2063246d583739b93375bdd23d371d89de4b7ab5365329d1fc7652f2c3cd94e73c52db9" + }, + { + "alg": "SHA3-384", + "content": "02a362b6c3e6b5468fe92d4081525f7f08587d654911bd1c2a10c37bb05477a7b0249305d485c5da76a24248fa9b067d" + }, + { + "alg": "SHA3-256", + "content": "6ac25a1ab9d6b2b958abcb151eecd09fc952881854eb4d012e470f80d829cc4b" + }, + { + "alg": "SHA3-512", + "content": "de3ed97a20d95dc33479f38f541c2617656b675bef8e89b35cd67e7ecea74a0548a3aebfa2ed87a26234e3b40289df21f807cc660dc3af57ec72f19421a61ab1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "name": "antlr4-runtime", + "publisher": "ANTLR", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.13.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.13.0" + }, + { + "bom-ref": "pkg:maven/org.springframework.data/spring-data-jpa@3.3.6?type=jar", + "description": "Spring Data module for JPA repositories.", + "externalReferences": [ + { + "type": "website", + "url": "https://projects.spring.io/spring-data-jpa" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-data-jpa/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-data-jpa/spring-data-jpa" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234423" + } + ], + "group": "org.springframework.data", + "hashes": [ + { + "alg": "MD5", + "content": "b27c3fb545399e366179aaf061d23b74" + }, + { + "alg": "SHA-1", + "content": "5a52596c2a7b3365cf36d5c5b85ce420fc117f01" + }, + { + "alg": "SHA-256", + "content": "89a2c92976dcc0403963772a6450e41f8ba9ac4207ee02e55688b4f84d5c14c1" + }, + { + "alg": "SHA-512", + "content": "098fa3279c6aeb8c80b785e43419727d35eae35deecaef9f07a5c3f4e8b361d8768e416a691cfa8636423e0e8c92e6e6205a79e9383d409a5c2c12d6d436eae8" + }, + { + "alg": "SHA-384", + "content": "f5f1d246506da382c9bb3fcf9d4ee3856367622ef8383c55163f5e0976f2a59c4c21a947c01fadfe83c0355104a18cbc" + }, + { + "alg": "SHA3-384", + "content": "f9db1de31ee3d77f75bf50a8b2ffd14b5bc5b63eedf1d22af2adc05513b87f1aedbfbaa9dc6be4d438e4b2d87cb60670" + }, + { + "alg": "SHA3-256", + "content": "38e98a1defb542dab4d4a922a2f52a170f1855db2adf0e7fb72e98afab4688c4" + }, + { + "alg": "SHA3-512", + "content": "93c227a8ec9db08971adc7511817b9935ff1dc2230e3d2d1743efe971df8bc02fbe273176ed32263d16d41131ee2b54ba7fc69079fa011b172e6c0b156f50e06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-data-jpa", + "publisher": "Pivotal Software, Inc.", + "purl": "pkg:maven/org.springframework.data/spring-data-jpa@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework.data/spring-data-commons@3.3.6?type=jar", + "description": "Core Spring concepts underpinning every Spring Data module.", + "externalReferences": [ + { + "type": "website", + "url": "https://spring.io/projects/spring-data" + }, + { + "type": "distribution", + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-data-commons/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-data-commons" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234331" + } + ], + "group": "org.springframework.data", + "hashes": [ + { + "alg": "MD5", + "content": "54c0e292f66f28b9500a98970f6592ca" + }, + { + "alg": "SHA-1", + "content": "b414548448cdb0c81b18fa5c4af92c1ff36b6c79" + }, + { + "alg": "SHA-256", + "content": "1cf2b8b4fda4bfae85e9e0556e082fa98058c54b83f339a09842e90b6562c915" + }, + { + "alg": "SHA-512", + "content": "83e384dbc336f0c7775afe1a2c6138dd982123976b042b0e388b493bf7c96aef7f6b407e25afc64aa215f5c99c12ba8577b7343cc24b37688f95c62dcad5d56b" + }, + { + "alg": "SHA-384", + "content": "a028e7e201d79a1c174c1a1f5e8e0dd7d21c0c3a705b4a13c9724e673e4b5294fe4bf8759e8fa75db234507dcdbf18f4" + }, + { + "alg": "SHA3-384", + "content": "3c0384ebd3ecd13910cb6af787ef8122055d13b1b5c863aa2382874aacdcfc7fd486421baf2e6aaec37908bb31452e4b" + }, + { + "alg": "SHA3-256", + "content": "5013df53938e1aaacd2ec80666c242b7dd642dd61c8d6c83cc9c5f03ed394074" + }, + { + "alg": "SHA3-512", + "content": "1a48dc767550379d628130ad05093fbfc0a74675631104806e84643cc0be66f6f3d5abb98807182963ec40d0ddbc7171ffdc90ee7be37e7a7e99414a6ed5c41f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-data-commons", + "publisher": "Pivotal Software, Inc.", + "purl": "pkg:maven/org.springframework.data/spring-data-commons@3.3.6?type=jar", + "scope": "required", + "type": "library", + "version": "3.3.6" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-orm@6.1.15?type=jar", + "description": "Spring Object/Relational Mapping", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233420" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "00f6a2882db2b107ecb8e6bc9fe0143f" + }, + { + "alg": "SHA-1", + "content": "8d52cf2067135de067c52d23ef61f3e1eb8d6a6b" + }, + { + "alg": "SHA-256", + "content": "780600fdec0a592b5016d76e13dbe723f77e615e400fc43718d1795f0c49fbd1" + }, + { + "alg": "SHA-512", + "content": "2a932c13d76258fc7bc543a89742b212bd25727b99ae02070206a493be06ee330a0e8ac581d20550663884814918798e503e6f7c3a7d85885a0d1db9f46c00c1" + }, + { + "alg": "SHA-384", + "content": "a208806068b3acd0d3a974ada863f357ba986d402cdc9a196acba57375f7938444310e75c4ca3f56aa9844ecc22cbbfb" + }, + { + "alg": "SHA3-384", + "content": "47e0923e65be96d898f3ea6455bf6c3970cd7fceea0a038a168f00125c958ddbd4be30d0b3935d04d238c4d57a12007b" + }, + { + "alg": "SHA3-256", + "content": "e080168fe88b187d8d0794d45a8f221b51b859906be80a5a9c883320ccc2c5fc" + }, + { + "alg": "SHA3-512", + "content": "60e5d35b7db9fc85f6913747c441848b779a8092b702aa48867b6ab593c619de183c5dc7af26e20c2b6ded484785a8ecf3b34004518a71c6d4e0a24bbca2c22a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-orm", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-orm@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/org.springframework/spring-aspects@6.1.15?type=jar", + "description": "Spring Aspects", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spring-projects/spring-framework/issues" + }, + { + "type": "vcs", + "url": "https://github.com/spring-projects/spring-framework" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234425" + } + ], + "group": "org.springframework", + "hashes": [ + { + "alg": "MD5", + "content": "21c25786a7f28848264d7f52af91579a" + }, + { + "alg": "SHA-1", + "content": "d2078cc52a2bc69a7f9e919f2ae067db73f6783c" + }, + { + "alg": "SHA-256", + "content": "fcf8677f1cb10043a2112c71748b0c8639ed108d9b2252a0a102c55172daafd6" + }, + { + "alg": "SHA-512", + "content": "ce7c38ae2d4a4b2b3da890e9a76aef403695d670fdabebd0d82d2d320302957fd027c097042540c3fb7a2acc170a3057d880aa64ab2e9396d20d3fefa2016583" + }, + { + "alg": "SHA-384", + "content": "d1c5a78a61d1b407e8a842cd52d8e56741675b78cb506ebfce95f79dce5da35df7ff7488995675a746ce883fe2e9f71c" + }, + { + "alg": "SHA3-384", + "content": "02a2e5bc6e682a2327d06f2e5aad4d3695fa326dadec9ff840a27feefe2b7ac5fc12eaf6cab608ce0e7f11b39f98a492" + }, + { + "alg": "SHA3-256", + "content": "b6fce42eddbb4b3caa6949519e9e038cca7470868e6701902caac6ba0400dbb3" + }, + { + "alg": "SHA3-512", + "content": "901cd488961f5c39bf0b291db01ba238456c3eb77f1d18831ccbf531aec62e680745626e243930edfb1ae20e91405cb8a0eb26236234e19fb9c2d2cc5333b170" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "spring-aspects", + "publisher": "Spring IO", + "purl": "pkg:maven/org.springframework/spring-aspects@6.1.15?type=jar", + "scope": "required", + "type": "library", + "version": "6.1.15" + }, + { + "bom-ref": "pkg:maven/dev.snowdrop/narayana-spring-boot-recovery-controller@3.2.0.redhat-00021?type=jar", + "description": "Narayana Spring Boot Recovery Controller for Openshift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/snowdrop/narayana-spring-boot/narayana-spring-boot-recovery-controller" + }, + { + "type": "vcs", + "url": "https://github.com/snowdrop/narayana-spring-boot-recovery-controller" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234390" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "dev.snowdrop", + "hashes": [ + { + "alg": "MD5", + "content": "f98cbb64d6fd99ba2dabcd472ca67cb7" + }, + { + "alg": "SHA-1", + "content": "8ac9c7bd3bc10bc739e1ab2f48a7d32d1ae9cfcf" + }, + { + "alg": "SHA-256", + "content": "52a3b5a75214ed032aaa5d221a7993ab0f39eb1ad4d56adca49d227f5fca1bca" + }, + { + "alg": "SHA-512", + "content": "24e4a769a6bad47ba0d0adf1f553d5ad6057e66c3f3408a8695cbd5701fb9a615dd728e8298f250aeaf2ff95add8ca4de7f4caa7a368171736ce9ea2b2e6b201" + }, + { + "alg": "SHA-384", + "content": "8a6fcf77814cae3f7a7871db646b5b1ec702835a36c9e5dcd549221f8d37d00ec562f7bd835193537d6e51faf936a721" + }, + { + "alg": "SHA3-384", + "content": "2cdf3ed2b14987f08125e9c8b292bd7af8ca71a23760677874515ece22a419df3978e1e6398174c9f06eb271b6e496de" + }, + { + "alg": "SHA3-256", + "content": "cfa054a7ed04fa666a5ca1b11c601fbf531aa402f4997cedc053a07e70e60589" + }, + { + "alg": "SHA3-512", + "content": "478427781352849c4519aa72d3210a5fb2537dc6777d477108dd3ad51ae2062dac0cb4978356e78814185bef3a7270a2de626b1df2bc8a1d64c39cf56e1d9881" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "narayana-spring-boot-recovery-controller", + "pedigree": { + "commits": [ + { + "uid": "d9d4a5600abc852905eaeafeb7ea5d3c2ef0235d", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/narayana-spring-boot.git#3.2.0.redhat-00021" + }, + { + "uid": "0c748dd5dbde20b9b5e54b360997ae43c5d9a47a", + "url": "ssh://git@github.com/jboss-fuse/narayana-spring-boot.git#3.2.x.csb-4-8-x" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/dev.snowdrop/narayana-spring-boot-recovery-controller@3.2.0.redhat-00021?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "3.2.0.redhat-00021" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-client@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706458" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "80a862ff7bd911223560c1c63c6fa2b5" + }, + { + "alg": "SHA-1", + "content": "d1e7b11fd8d2d73ffcb836bccf8ffc5498e386a1" + }, + { + "alg": "SHA-256", + "content": "11fcd880814a036f878ed51ade7fe3c8efc2fb4bc9d7921bbe3edde12887c4fd" + }, + { + "alg": "SHA-512", + "content": "3e27720c7b94d7b5c1c97fd66ce9411a7a83a8b3e10d8d54a14e03a7263c5aed0b260062b61b6b3a04c8a8ec1d6b89882eb62aa2e9b210ed3ae166d771a198ab" + }, + { + "alg": "SHA-384", + "content": "f09de6d07e0376b557e2f82cd4f64e4f7becde056e1d5dacd452447231baca40afef08bb3d5763fa7471c8b47253a602" + }, + { + "alg": "SHA3-384", + "content": "2245ec822fb95ca5a9a9aed6c15fcf725642996b995290dadee07ad6a599149975dacc27d5ed25568bb1ffa930c47db3" + }, + { + "alg": "SHA3-256", + "content": "bf06d539236f252cfe29c7c3b9d74dbab3102e135dcef307e02fa98ddb647044" + }, + { + "alg": "SHA3-512", + "content": "fa12358bc4f2cd2bf19e85737431feb66ba203a6858935ad663a5b44ca1e9e116b85e12d9e054b3dbfcb57cb691a8dedb8c40ba3923854e1e3f2c1f9700f6bf7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-client", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-client@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-client@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706400" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "0770db1c146c0c296822be33ea129a66" + }, + { + "alg": "SHA-1", + "content": "3afc2a2117e2ecfce3c4e64d48342a6b1fd43fc3" + }, + { + "alg": "SHA-256", + "content": "7c23498e3cf0fe507462dafe7bef97192c09b8feabfab7e9e1ebaaa73bb3d560" + }, + { + "alg": "SHA-512", + "content": "711b70c1cb6d05a29c1c098fb3cede1d69ba89c14a3245c538dd882fceb3b00b5a01d61faa732db2d9455035d117c56e5179b17661bcc4e25b46be793357bb81" + }, + { + "alg": "SHA-384", + "content": "4dd152874ceaee0850286324b6e3bea8b05f9613d02793450b9dc9fe7d90a2182fb5314dffe812a6590f78ac211c2f08" + }, + { + "alg": "SHA3-384", + "content": "f67a0d79e3b6e79fc3a124f8ef3bb8b014d598be2a53c49307f3d4d116faa3875c00fa7b5102b19a08bf33d61fb1cec2" + }, + { + "alg": "SHA3-256", + "content": "8ff8a0b6e004cdeafe76148311f580fa7172745ea165d9c4a2dc262d54602eba" + }, + { + "alg": "SHA3-512", + "content": "a3f6d0484855ffb4079a09720e00fa6857f5a10ae8e06f0e95e7617079cf5e8da68c5c9a2d40fca66b23c0ce49a6f0f9fa6f0e67cc116179197d394d271eb628" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-client", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-client@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-client-api@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client-api" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-client-api/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706396" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "4fc94076a8aa31875849686ff79e9469" + }, + { + "alg": "SHA-1", + "content": "5e4905d395192aeebc6152c2a3ef6ddcdaf7c8f3" + }, + { + "alg": "SHA-256", + "content": "56adb3cbc182671370f8264f85d13d79e83437e0620dcf3485c006f296db4c09" + }, + { + "alg": "SHA-512", + "content": "10be255601929f1668e891f3b91956fc6ec95857ffa2eb5acda5575dad86e409682cee56a4f22804d9d429068b6c0c2afe9cf1bf9259829c3f8454a8c4577572" + }, + { + "alg": "SHA-384", + "content": "00a6ce3b1b92fd2048b7212a78b0d6b7ebcd23d31eced0034e15c24202898166f00feb872d7e361327703e3731159fde" + }, + { + "alg": "SHA3-384", + "content": "ff0e57219ab7e025331f75e85fd505dc3b5451952f11bca002c7a22d0a621e6b01389e8318af1669d378baf0a05ba693" + }, + { + "alg": "SHA3-256", + "content": "23f20913d48b97fd25dad3991eb44b8669c5d5b1f188683a329ec8f3c99a2003" + }, + { + "alg": "SHA3-512", + "content": "0136d8209327283a5b3caacc475f2ca33b96a8b1ef15e611ecb5ff0ecd89e01a68dc986cd7f271792c23c8fb2f411606d65654ad463e914fcb4509645dc1c046" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-client-api", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-client-api@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-core" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-core/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706425" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c25c4e6da39c70d69bceb9139947a7d7" + }, + { + "alg": "SHA-1", + "content": "4b31c64b9da0f098d1925ba2e830a99ee89184d9" + }, + { + "alg": "SHA-256", + "content": "8b08799e564012678bd6b2e67d0f2929479fa1a5c92d8e1dde3304878f245f91" + }, + { + "alg": "SHA-512", + "content": "c94b8264efc56120e2e77bead563bdb931e715fc434267b4058708cf7a064e1d07b7333d91e14a4f7f36c8256fdf19ba8270ffb068c14402d67dd7db0d69a336" + }, + { + "alg": "SHA-384", + "content": "2ea5938d31c6131985f87ee953737deca1f97755036a98131ee6591df8ee3f0a1c938a07af6f8ebb11de26becdb91df3" + }, + { + "alg": "SHA3-384", + "content": "84048d65cfdfe9107a67593366b5e5f5dfccc12d97bca50ab1a792587db80fd3435bae88259b4a2afa1eb89e6d7457a9" + }, + { + "alg": "SHA3-256", + "content": "fc3bfa0623af8535ab885d43597b48b342c31b879e44c8f534b48887d15fe279" + }, + { + "alg": "SHA3-512", + "content": "e14e196bb18302845278c1b1e4ac1716fed119367dbc991fad2901cd210bf210a5ff5ea860b79c53841ac9c88303de7460aa984fd5ba100355116bb781010fb8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-core", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-gatewayapi" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-gatewayapi/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706435" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c10ce2a8d4800aada3e3a3610e8da115" + }, + { + "alg": "SHA-1", + "content": "3c0bba2a7f79ab32c4fa2cc763e414c4889a060b" + }, + { + "alg": "SHA-256", + "content": "bcf32574a22127cad098618dec735514586c6d5bb1783fa46fd601c17fc359e4" + }, + { + "alg": "SHA-512", + "content": "0bfbcab824eb5858d409ea9208367c14716b70c0d1a7ba5c4e9fe35e202da5e3dacee93cdee81106dd5b3102a519bbd7ea1528d9eae314ab9cbee877913ee520" + }, + { + "alg": "SHA-384", + "content": "3dc73eb05ab5f967ee1677c0f91c54c27b00282fc9db5a820f3c0cda887060b96a259a962219c1548fe7dc3858abb56a" + }, + { + "alg": "SHA3-384", + "content": "b4b2fd233129916f8b717514ae507ba9037efc80fa337780787b727a06eeeccadeb60e490aca6adb27d109cfecc75b19" + }, + { + "alg": "SHA3-256", + "content": "af801cafbc9914e3197a7354a426475b5c9cb560a868abcf095e06edcde3b009" + }, + { + "alg": "SHA3-512", + "content": "aa00d6417e1316436ecc73474e68ae044a23d82a8cf0d3a8a4dc56a62be9c8846b02295e2093f9579bad83656115c641b64c1c78108c3a05be082cfd8f5a2bb0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-gatewayapi", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-resource" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-resource/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706448" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "4411a0d1ea9196e4ff487a6c33e296cb" + }, + { + "alg": "SHA-1", + "content": "5e2ef5f02ed9707b01f9fb31bce8dae14321819f" + }, + { + "alg": "SHA-256", + "content": "b43818c34fa3b689f5b45a5343c64f8cd0494a2ca325928c3b04512b2dc5392c" + }, + { + "alg": "SHA-512", + "content": "423e3de9ce707ca593d5dee1f13595852bf0f1e0dd5c252c88c40cabc34c5096c6077657c1c1cd9036dcaaac2361238c04abea880b6292e83fdd412e4b417a07" + }, + { + "alg": "SHA-384", + "content": "eba3e6f06ef1f5aa194727ae82597288655888aa809d711290f0d36c985b176d94843d4ec65040d522eeef01afafb160" + }, + { + "alg": "SHA3-384", + "content": "01d5dceccd69ece270ad4d2537b508b1f58f6580851c7348ef646c5b4d57d330c7f7b37c41771b3e193b4f1deb55980b" + }, + { + "alg": "SHA3-256", + "content": "42e496b879d9a341a1a1f67b097fe27fbfa10c48f5b29271873e31c152e326c1" + }, + { + "alg": "SHA3-512", + "content": "6c111b9bac0f2d08c69e354406075f14baa090bcd4b3bc74de6f5e057a05ceb654b16d613f5f8aed0c7feba7b9c3d636bfbbbbfad955650f04db2a82d5b72dfe" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-resource", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-rbac" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-rbac/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706446" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "7f8f938d18810077915efe61c0ff289d" + }, + { + "alg": "SHA-1", + "content": "f2b77be5040498ff57737e461d1110422d71d68d" + }, + { + "alg": "SHA-256", + "content": "6b9ac5b176c1d16375da033063eb1419bd05d78d8f4ded0d2c14b5c94f2b5ac7" + }, + { + "alg": "SHA-512", + "content": "9933030517f5aeda0acc88417ab620e3acfc94c0cd7c023656253d4e68404ccd4514ff476c09a81b33e3b3bcfd00e85d0d8c3ec3d2c17c15c0b2e92cef8e591e" + }, + { + "alg": "SHA-384", + "content": "b833de95cfb52492387a4f22a597bf63d49350c3ca941940a733080c06396fe3bd5c75324e3806ca204a39ace94cd54e" + }, + { + "alg": "SHA3-384", + "content": "0470a4e1d068c9c5aef84300865004e59b03ecc2e6b4106c22712d52d4f468f7cdd177f563404e7b3963597eaf923cfe" + }, + { + "alg": "SHA3-256", + "content": "846ccaaa5ae67f230b76e524434e8364533cacd2e2f3889756fab75e8d596e6a" + }, + { + "alg": "SHA3-512", + "content": "4c5f8f37a704c621301a10924cdcf0ec091c6d93f024585074e679be38b9bf3d635fe1721d303ab3d449719f183516b448ee2502ddedb4a6e4aec287b66a6da6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-rbac", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-admissionregistration" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-admissionregistration/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706409" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c999548612bc89957870f738490166ff" + }, + { + "alg": "SHA-1", + "content": "7793127cf85620d16c2df69af4bbfbe01e995478" + }, + { + "alg": "SHA-256", + "content": "25994271035a9ae0364a936761407453575bdfaff7d1c7dff35a04fe8b1ac281" + }, + { + "alg": "SHA-512", + "content": "105314355190cf2c7725e6faac0515d2e84666322aff4a8b9c8c8d308e9c1551172c764bfdaea2d4d202fc22cffb71c7f0c8f465337847b4fc105490dd88cbc7" + }, + { + "alg": "SHA-384", + "content": "1e84df02cc78849108cc9e0ae0f5990ed612db8e175e4aee8a98cefdf1ee28624bf4f6339c9cbdf221add782c3928017" + }, + { + "alg": "SHA3-384", + "content": "5afe789678c344c19451362b8c0e58a796fa09a20edac90c90e896f9fe2b3b191c233af8caea8f60692749a0196e5a62" + }, + { + "alg": "SHA3-256", + "content": "cecac61ea86eae679bbc59503a11524463f4b7786c8b7c2bb9077eebd7b888c1" + }, + { + "alg": "SHA3-512", + "content": "6ebc24de978cf68196bb164c30efa35f85f73ebcc81733b0b83fb03aa98f13fbb87eed4f2766f68fb7e341144bbe27924d2a6ba99ec2f780a8caef8aa5ef0ae7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-admissionregistration", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apps" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apps/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706413" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "41df1c06af9aca9dec15fde0fc8529a2" + }, + { + "alg": "SHA-1", + "content": "7f6b670b6239776a56bc947ac525d2f96cf261cd" + }, + { + "alg": "SHA-256", + "content": "1e82f5df9e825cf6f2a587cf43a08117e2242b8fff62c0b055f6a74678389b0d" + }, + { + "alg": "SHA-512", + "content": "20021ddc191ef3e1e00a5e87aa908d6ffc6d30711d4ac5be800fe2b67997e00127079acd35cb73608e6c527655cad1b701383043a5e8f2ff2633ebd0f00fac42" + }, + { + "alg": "SHA-384", + "content": "6810f6b7826e30d803b60e685c1855cd2cebc2b9ca830b59b9c395d65d3171024dfa195af5f0ed0ee9a8d3c590260eaf" + }, + { + "alg": "SHA3-384", + "content": "62f86a87498781aed49c525641e70263fca70501d06e06b19542045b958845289e582e661aba1f4e97a77ebcd87ee4a1" + }, + { + "alg": "SHA3-256", + "content": "aa10b5160cefc4698c9b83c3c283cc00dd98ff10827b6dc9ec29c50c9339293b" + }, + { + "alg": "SHA3-512", + "content": "7954a79c253b010a14c41a3b50aefb27249c75b9f5251b5c1d497ec4b0b8135e3d18941fbd07f6a517f5c3ea202777b4195159eb7f38c8bd4fb437c514112ee5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-apps", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-autoscaling" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-autoscaling/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706415" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "339cc426d2e7f2f88e68adad12bdea7f" + }, + { + "alg": "SHA-1", + "content": "604b1ace81c248fcbd39c43d8fa9fa56acdea647" + }, + { + "alg": "SHA-256", + "content": "936bd086078f7bdd0f1a7c9266ac86fdd780409e8ac653da71628c56a7be3c60" + }, + { + "alg": "SHA-512", + "content": "01763cab679fd89e8eb4278cdc87851226f0d2336ba44906e82118bbf7f427450e151c59231079a556d8daf201178bda37498ffc12a0e3f63d346b44504b122d" + }, + { + "alg": "SHA-384", + "content": "307018e3e7bc0bd5409db994333a46601d1ccfe77c3e414d18239c4a6cd56690e3cd255a76906852712d6b0dc6130267" + }, + { + "alg": "SHA3-384", + "content": "591792c1ff869f7ce0a902a773cc99f85ba4984e26934858fa0eefea03aa1e26e8035386eb6bb32b04ad4862f46c0c32" + }, + { + "alg": "SHA3-256", + "content": "109266be8ed2ffa07111fd191d90571a56cefbb4cf3b5d566eeca4fbc7aac854" + }, + { + "alg": "SHA3-512", + "content": "62130764e23df1eb42b03e55b3246ad918413e92fe2c062d349b5d63ab2a8fc9e72ed0144d6280b3c7c69a1cf46bb3322ab83e9bf2502862dfa85a4ecb3d4413" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-autoscaling", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apiextensions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-apiextensions/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706411" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "57a9a0fb56b5c517abb50f6244a75c0d" + }, + { + "alg": "SHA-1", + "content": "074b53cadc0951009fd96fde58b1b6006799a427" + }, + { + "alg": "SHA-256", + "content": "14e217429b56822b0f2e8569a55b18197a220237fdedf56278b3b217f512e868" + }, + { + "alg": "SHA-512", + "content": "c6c768510e495721b91732b307b22aab979db502a922f35e462252d26200d022bdfc3f13a6f10bd163ce9ce9f60d7a3a7d0326a0987d5c42fa23032f334075c1" + }, + { + "alg": "SHA-384", + "content": "97efa75046435b37ca577de392436674b912e9489d7ae6129844573b7c30f73d80339af9ac4a9641bf938d13b90902b0" + }, + { + "alg": "SHA3-384", + "content": "001b47d8a7d50292fdd0385f72945d722972310e14f5d18f12de81971fe6820c2e7b4fb9785d2c15f6148f6e219f1066" + }, + { + "alg": "SHA3-256", + "content": "e1eacbc483f5f7ee30d5fd22f151dacb9730f65a13336782cb985b4f0f4d9cfc" + }, + { + "alg": "SHA3-512", + "content": "5f10358ad30ef6c461bb88584abb2583388e0b4e3d5760abbf4a2f31eba8bd9c28014ca64026514e34d4706102c82cf2c3fb14242a000cb04d0735840cb3391d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-apiextensions", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-batch" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-batch/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706417" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "db1d6b8b1a4fd07e3174380d341afd30" + }, + { + "alg": "SHA-1", + "content": "a323b35cf5d9cdd8d3649741b9709b9cfd452ef8" + }, + { + "alg": "SHA-256", + "content": "de56c6b4ad7052780f464d66090f3741bee4e3c7f66c8ce0b37da6ef31910198" + }, + { + "alg": "SHA-512", + "content": "22cd335240a9794b44b30a93c6c2e43dc0e5112cd498c36a52050301c2bbd229faa2da6fb68c493acc39922d7ce0ceb5864f1a609f909e03adb26bfd9037224b" + }, + { + "alg": "SHA-384", + "content": "05358dfa6b3815367b1c8bee86f9b83255a7f7ba7a603ef4ffb2f54e975a833fb08b8aa54e531345c7bf8dad0e6ebbad" + }, + { + "alg": "SHA3-384", + "content": "8f70aa0af10083906a37beafe6db684cb69a72a8dc1ba28d71138bacfc7df806caf9630ba9d26220fa242d3b2c75148d" + }, + { + "alg": "SHA3-256", + "content": "fc8375c8d74483291d929bd0a33b87eb238a4ac9622c5b6e00e20a8ef878d1a6" + }, + { + "alg": "SHA3-512", + "content": "0934b62e2c974e38aa6bfd5997d7f53ba709f8e53754a8bde6177e53c47a48ba399c58a12d658f457b6b926ee2c7865b7204eda307a893f441159d31396afb8c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-batch", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-certificates" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-certificates/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706419" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "15f3a9be39984600a1eb894294d0f806" + }, + { + "alg": "SHA-1", + "content": "d1fd9638a09c280b06b1a66b9e3ebef295377b0f" + }, + { + "alg": "SHA-256", + "content": "fb32182c5847eadcb40a53a8818524a621e9d21ac678c7bb1441bf21a719ace4" + }, + { + "alg": "SHA-512", + "content": "a3cf923825d97919052d80bc28872abef47c14c42b9345ae06b2766a3224c816c27bc47258392fc29b4b999718dc55cd62184460a129a0d3a88857198fa6c048" + }, + { + "alg": "SHA-384", + "content": "aabcc6c9812a80d11987397b1c20257ff37d306b79b3e40fa55bf7e36ef9f1e34d364f98e586d0dc11b793a3e468302a" + }, + { + "alg": "SHA3-384", + "content": "68ad23e9fc0605e779ead79db7f2b5964e4f01b8cf4a55fd1d8941d694cbbe0a72f15cd58d0336a979ce200338fb8fe7" + }, + { + "alg": "SHA3-256", + "content": "f69819ca7ae19f18067fca23bd40d7ab0bd96e97dfeb22e9b08d1cb1dde3d10a" + }, + { + "alg": "SHA3-512", + "content": "6fc540314e1e287f7221de9386d8ac5cabc81f9e33bc00f83da5b8813479a30855b05cbf64bc11fd0a6474835c488b51c43aff22bbca772931ff02f79e2d6fff" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-certificates", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-coordination" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-coordination/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706423" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "31f58c2de6641abfa690c72279e1ad4f" + }, + { + "alg": "SHA-1", + "content": "8fd615c6c2ba1addf2f66a4c9ab3d87b94655c17" + }, + { + "alg": "SHA-256", + "content": "37fc905debb4c737240c475b6c1057d89f67ef578c2a1d1806d0d32dd03d8f74" + }, + { + "alg": "SHA-512", + "content": "70b39ec1e0f1c3fdb5629d3d6a1b01ee2a050db7f0dbe7cd37f2fda9e43e3c701a8222af5125b8061fb09434bc06879124cbf473291a6c93c68bbc23e405aeb7" + }, + { + "alg": "SHA-384", + "content": "42fbc4897af9a9e444221ff30eeec5e593d93e9137e1a277e8fed71f6840db4b4d3263aa9ff65e9928aa6d653de2546a" + }, + { + "alg": "SHA3-384", + "content": "6747c8bee9e4f8041396ecb412f812e3540002ffb4d181f41179822f0db5d9c953e560b109a6924d566afc020ec9dc57" + }, + { + "alg": "SHA3-256", + "content": "04d74b8dcd2a082162510b357727baf7549f6bceef8452efd01222d234c41a18" + }, + { + "alg": "SHA3-512", + "content": "a11a2b6a845c64a934c5a7934836e4085248ebeeaa8a295f77193446df5537189b45cfe9b19a6a227d4306f1e4677ddd5313e3c3b53d70c45d64e84f97035a52" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-coordination", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-discovery" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-discovery/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706427" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "6e5093ccacb3efcf084a39e603214165" + }, + { + "alg": "SHA-1", + "content": "d560d40b7821c9b44984588803c3644b48319c51" + }, + { + "alg": "SHA-256", + "content": "96033c22871f4f685b40c04f5cfdcd5d382cf4f0d6f335aba7ddbe175da9139b" + }, + { + "alg": "SHA-512", + "content": "bebb0a6dae1938a5e530c1d2668b532cb8837fbf658ad8f449b4c5eaadee6aeef379091b1c8b370433b6ab5f2372bc0318bce54d017735576eb644487206a737" + }, + { + "alg": "SHA-384", + "content": "6cdc273bbc986a025b7f6e332fc762a1a0ef9094dee1fb9123725779dd60b1f0b98e39f4eb75650802ede9fee5091c2e" + }, + { + "alg": "SHA3-384", + "content": "67c67725dd0d0213fd5fd195d0b912372b644a313def9c407cc66d439b5d57341be68b9619f6f85997ebedc61d5ca890" + }, + { + "alg": "SHA3-256", + "content": "7f0f9e77aacff947d40a7f0a6df661236b64976fe905264750d13f08c3c0bb3b" + }, + { + "alg": "SHA3-512", + "content": "5192899ea39b44a9bd34cbefb8bd4bcc488155813e66370dbc29c9cca31a3f372218de822680f1c04dba47c2b1078ec504d4b3fc283623391eee7a588ff7493a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-discovery", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-events@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-events" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-events/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706429" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "cb23f0b38a631227d89c7d6abd1d2dc4" + }, + { + "alg": "SHA-1", + "content": "b8b9b110d2feb6658059e36910875a259b2db247" + }, + { + "alg": "SHA-256", + "content": "1b43f8e05c84ab92ae5af6c61e01d0a29c921391e6c77083e79f3b51439008ef" + }, + { + "alg": "SHA-512", + "content": "592a30652205d3c64f7d58768d0c08dfcc782c55776f76fef4e14f9d71162a95bb2d1722b419f34993be523e5f067450fc17f8d3e72f46baa9934efcd01f3a80" + }, + { + "alg": "SHA-384", + "content": "6eb7d7f1f476e0b3c2be637409c7d73efaa14efafcfe19212f4883644deec5ca1d517f72f87cf125d49b64b242fe031d" + }, + { + "alg": "SHA3-384", + "content": "c5c7dfa12cbaf84f5b580af8ce857ad1c2b15908017b6981955947e6b954a7a031e6c94e9711b73df6e9cace4b0db40a" + }, + { + "alg": "SHA3-256", + "content": "5980f02ee85d07699403db44df6b886fb19329d9e870af5315747f443750cc78" + }, + { + "alg": "SHA3-512", + "content": "93537e90d94e969faefa1f8297921c88a6b08ea1fe4b722fa321988f07f620296222237ebfb8adeaafdcdb444f139b0aeea062de358b036800523edbb552e782" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-events", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-extensions" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-extensions/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706431" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "1613422aa288af9aa6422e443e9e266d" + }, + { + "alg": "SHA-1", + "content": "df1e91590ed7c99522b1efbde2e79c918dc9de39" + }, + { + "alg": "SHA-256", + "content": "e036b02c93982a561ef6d559a9d8f523cbee85c43e369f484d0b0d67e3388471" + }, + { + "alg": "SHA-512", + "content": "28dac3838ec30f2ac279514ec77a282c4c03968a9861869e09e50b275f3451219ffd07084ca9f81606ea3f7c150477cd73d31470bba63fffb9ca02fed3e01cf5" + }, + { + "alg": "SHA-384", + "content": "4c3d8dab99d2a6a6236408a710ca529b28023f83a6422474b4aa4e941c849e82d616e10aa94446ee696152c0d1364664" + }, + { + "alg": "SHA3-384", + "content": "4e3e86c44bdefd5977888e338313fff50e788d597c64d862bab61ffaec2b7f8a5eca9cf14bc78f0a05c2e6134bf17bba" + }, + { + "alg": "SHA3-256", + "content": "2c9522cc17581e58d1c3b21a45ff7cafe8c8c6ef3d470775e8aeb45e1b18b882" + }, + { + "alg": "SHA3-512", + "content": "81256d30b4e3a1bfb8fa9e3e18cf2b0d1aa33eace6f041f7d9e0857aedfc8b56bd50ea2f58efeaf6208b66dcf16bb26e1fbdcc545f2e6ce697e5cb1b049212d4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-extensions", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-flowcontrol" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-flowcontrol/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706433" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "abb05a7771f48f91d032be3fd432ca04" + }, + { + "alg": "SHA-1", + "content": "f462e1a5838201198a26f5ea58e7fcd752dc96ae" + }, + { + "alg": "SHA-256", + "content": "96b894c739692b67024600b2eb737a6f54b893d88a536b12aaafe5a8afead267" + }, + { + "alg": "SHA-512", + "content": "7ee501ef725362ac51ca43af434261b7d963ff0fad4423a9bdfe5a6c1842f2c29977df2094f7eab3bff10d89ee3d4674c4e148237d16af8ffe014bc291b3e1fd" + }, + { + "alg": "SHA-384", + "content": "d92f03ad36b7ba53e8ab36a38d1db9b1bfed312f1389a45afae3e96cd09f927b1cff9bdff2efa0a2ccaa84ca2569362c" + }, + { + "alg": "SHA3-384", + "content": "dfc1aac57d20a852ced05c0dd918baafb60240cf0c862eb8cc59ee97ffa66e507066ca9bbd6a26c567861ecd8a761781" + }, + { + "alg": "SHA3-256", + "content": "ef7a791a56c28a165e2a91f0f87d18f4369c3a3993d276300adc8a9a9ff13c78" + }, + { + "alg": "SHA3-512", + "content": "8d0d2fb896dfd728c01e92034d1906197232011c75b00138a2955658159f06bec3c90c6ad45bc5900dd6262d2565800c63119f4cd99352d9aba71bb19d5bd640" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-flowcontrol", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-networking" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-networking/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706440" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "119c03b79dc4e5176dc2e481f5a0bfec" + }, + { + "alg": "SHA-1", + "content": "5c135d654496019daadaa66f63213dbd08814c5c" + }, + { + "alg": "SHA-256", + "content": "48fee004f4cbaca1ba8580975d6977f9deb6a34b3cb79094c5b8449d993a476f" + }, + { + "alg": "SHA-512", + "content": "008e3ebd390263d02d1839838cef7d5466039da9b37bb70fc171677339495e1cd75d36a53117bdba97c81516cbd7e6d2e2adccdb23de6d4ec2e03548b9cab19b" + }, + { + "alg": "SHA-384", + "content": "aa5cd3fdbb2ba3a3f193d9a4305b4994cdc95b4845fde01564bb8279cdf614f8b4308ddbc2d1c15f77e20c087d6cf946" + }, + { + "alg": "SHA3-384", + "content": "4af93fa2e940a05f1b8f8ea9f0d5f991c17cfc6ce74182327c61a05d0d761723424ad0ac2b9d207457f3d4e0cbf049c0" + }, + { + "alg": "SHA3-256", + "content": "d8a28cd610c65a57246bac25dafd80b4e28bd1a832663e0f88160aa3b955b536" + }, + { + "alg": "SHA3-512", + "content": "59b4629ac6678d36f6d2b94670977a6aa50dae1cd0b4d0402f79dab54c14698e1a8c8e92544e607c0cb2d8edd8f1536571835cd76f4f24107ada2a95c47f25aa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-networking", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-metrics" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-metrics/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706438" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "89a29a47f72f3516ab0fa0452ed55729" + }, + { + "alg": "SHA-1", + "content": "9d992b11e0a3b6f6b8c815dd7332c06d0989707f" + }, + { + "alg": "SHA-256", + "content": "a335dbbf5f5a3d562a4046d69e440703df2d8b0afe1396f04a88ecf7d00ddee2" + }, + { + "alg": "SHA-512", + "content": "b38e4ece7eada8f328873069b41a6e351b3ad47356ddaf1018790a5af86883a3f4a608a25adc5237639f1f9dec571548a53b5774a95c8a22a2425135929432c5" + }, + { + "alg": "SHA-384", + "content": "b472da275a899a2b9d250a1a4eb16530443236786db2318648af3f0c35cbc8f357b5c43e1258ae415d6d9501d60be2d2" + }, + { + "alg": "SHA3-384", + "content": "0341f4788a60dee9d30062197b4a92ed20fe8d552175b6de399d87842257b4f430164f5c8422c51965f21a1bd9b140ed" + }, + { + "alg": "SHA3-256", + "content": "5c280e39c0f6202a2796b2bb7361dde466fb65c27352b9c8de241c38d1370c80" + }, + { + "alg": "SHA3-512", + "content": "b28b6f7253885791c9c5f44675258864e4a40e19ea440015f727ee4435c9374d7cf396c4d891c2116bef96d9e211e8a0374579207a9977a19e59b32382876525" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-metrics", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-policy" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-policy/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706444" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "90a6d8cda73dc56211747d7559f0e116" + }, + { + "alg": "SHA-1", + "content": "8812155ef721f55c8699c9e8db7c9da4decdacc6" + }, + { + "alg": "SHA-256", + "content": "8755b845bc9ed3c831e587e45b5a57a1e808e28934b85682048552eba1295dac" + }, + { + "alg": "SHA-512", + "content": "e58a6cb0475da539e23ea91deba6fd91cadddff24292e9b5abc47002234efe2c75f326d093d63943a4e458b4c213b91fdea7b5db9e95c9eb6cac1504df5b4220" + }, + { + "alg": "SHA-384", + "content": "f8fdd7e975577ba3bb38134c241078fcc5d206cd26f148253a47b9365476a469a525572fefbaf0e7b201ec0807924871" + }, + { + "alg": "SHA3-384", + "content": "837ef3b97dae1035783c964ed7d65e436690989cf0ea46121cc0a18316e589dbe069623500cb648df81c5112ad4d7432" + }, + { + "alg": "SHA3-256", + "content": "50a9557e71412b1e74a35d3c1c743594a93ef2276bdad3133173d37cac82b0bd" + }, + { + "alg": "SHA3-512", + "content": "66c52c877d8b0c182cd761e8dcb7d4cf420bd78dbcecdd4addc6133064ce8f506264432bf05407ad934bf2b246866f98961d19d982dd750ad5958d05d9094e0d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-policy", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-scheduling" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-scheduling/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706450" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c4bf1ed92501d29dcfca3f4610c7b2a4" + }, + { + "alg": "SHA-1", + "content": "42ad2cb1e31e8712fe57cc0e54faae76c9d46dc3" + }, + { + "alg": "SHA-256", + "content": "a2103ade37e711d17e82ba9387ce193a9aba7c6211de864509b3d4a9b1d687d8" + }, + { + "alg": "SHA-512", + "content": "beb68a239f42dff6b8bfce8422d61bb16ce9a69d3674cd94567a47206e54bbe91e24aa25cbc1edcc60f4be243c97fcb0e3fec06faa91634deedc1009a86d86f7" + }, + { + "alg": "SHA-384", + "content": "4f917f1e375217f695e1cf58c558bdb4c5a0e4e4a0e80a88224fae6dafbe81ed4d75e4f437906834fe70d85110d90e56" + }, + { + "alg": "SHA3-384", + "content": "71e67e8c7423fd91d4d771f06fa058c0c4fe3a74f2233a27bcbbdddf0d1a449c4d84c21814e96c396d02e6ba689c5821" + }, + { + "alg": "SHA3-256", + "content": "ef6ad2fb241a4e7c4cef1ff5fdd6b7786c4e04bc45b3cc4f04ace4934affba03" + }, + { + "alg": "SHA3-512", + "content": "e8cee2c2935b22d0c4dcef1853d39ee57c717979faad456f26b9e0907a86a9c948419e9f6bb75b8e0cb61554c9e8e74c38ca77e0c0093adc86990140d6e0b5d7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-scheduling", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-storageclass" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-storageclass/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706452" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "22ddfb6f3734453ad0bd6fba28185560" + }, + { + "alg": "SHA-1", + "content": "8b8bc590d7ebda2cf8bcaa73e14c9203004300e8" + }, + { + "alg": "SHA-256", + "content": "269223b35531d5b3e885b57b21e5887c31140a501af0588b967f4c8ba94dd2b4" + }, + { + "alg": "SHA-512", + "content": "3fbddb8ee8b785075c131c4be64f6be30566db9be19719f5c41e9a075c1d572b560d6f3c5e18a609d9c6d6dd552821f708c48992621357f1e62b55ba02055ceb" + }, + { + "alg": "SHA-384", + "content": "6c83a9ea4dba64371cf5e8730f62206e835d10700e48f212d0deb4841300ca42460fe44b4c2820d5dc0f242269e83d3c" + }, + { + "alg": "SHA3-384", + "content": "24da40663990865b274da0151f9a9a7fdd40f76664a97c856dbdc638fdf479f01524ca478183b06c89a2d26c05cf59a8" + }, + { + "alg": "SHA3-256", + "content": "eed6bf11fd7c5cdad6b4be2e0af242de802c23632656a622c794098d8cd658db" + }, + { + "alg": "SHA3-512", + "content": "c82fd8f8ce66562feb503078f1d6e84c309eb52eb4e29f108e30b651276dc4f183e816e759fb1a17bc2ea842804e470c059ae42e602b84216ea9fd8eee0777cf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-storageclass", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-node@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-node" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-node/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706442" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "5c21fc20221d0480baf8066e4092a648" + }, + { + "alg": "SHA-1", + "content": "aa9107429855bee831092173e7102356532315ee" + }, + { + "alg": "SHA-256", + "content": "08eca470612a226872eb8261964d75f0a19eb1af50d13738471c9bbc62dce4d6" + }, + { + "alg": "SHA-512", + "content": "574963da5a2a093600bd80a0b6f9a5005a9ce4967dc3a3a7b8435d2ace8a42567c99ceac1b568ccfae549bec04e45a5c29905a4c53d0868172925287500f1da1" + }, + { + "alg": "SHA-384", + "content": "5e672847c3c938dc9b535d6273c1091846be0ee58653457df826fe1080d0cb95e509907ff06ee8dc3ee41ff7df01d63f" + }, + { + "alg": "SHA3-384", + "content": "b6c41d132417a4b92700c00542afb2feef544c743ec559702eb92ed1da61b74174ecde8619ab3d5ce4f19f2f923d1122" + }, + { + "alg": "SHA3-256", + "content": "6244c96c8bd983d06d4110aecbb16f9c7127c9c63de36d8cea3234dc8db28ad2" + }, + { + "alg": "SHA3-512", + "content": "5ea9880b74dd7deba60419a11f185e8c6cca83bbf31704ea63dae28a07c2c3b862e153acf30c7aedd9ce76fd0e448226acc0bb79a04c571b39c11d3337e45b5b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-node", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7?type=jar", + "description": "Core YAML 1.2 parser and emitter for Java", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/snakeyaml/snakeyaml-engine" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "issue-tracker", + "url": "https://bitbucket.org/snakeyaml/snakeyaml-engine/issues" + }, + { + "type": "vcs", + "url": "https://bitbucket.org/snakeyaml/snakeyaml-engine/src" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11304459" + } + ], + "group": "org.snakeyaml", + "hashes": [ + { + "alg": "MD5", + "content": "f3d13dba0e384363cef8e225c5eaa95f" + }, + { + "alg": "SHA-1", + "content": "5213e62e87e62ac009d80aeb64c8240075bf078a" + }, + { + "alg": "SHA-256", + "content": "4053f878c171692aab8782f53a3974f43e55e2b6ed12c3682b36a46968c5ded1" + }, + { + "alg": "SHA-512", + "content": "65afbcc9b9ea865f75db7b4ee1ecbdc2f361670b28f0ea90f6725175d2a506d058c25a5ff0c44a9aab3ed2dddd2ee2b7f63df4995740ba312d2f27fa9578533b" + }, + { + "alg": "SHA-384", + "content": "987d8e0cc18e6db90aa9e31bd0623fc205825aade2ec686b38dd2b7f4301d032e3b23d45ad65650b42ff7a836654621f" + }, + { + "alg": "SHA3-384", + "content": "8c354d414fd14b594f71d5ccc5226ffc775d0cd075083080051f9a82d102a32df166c6410539f3b7750f4021bc7146a7" + }, + { + "alg": "SHA3-256", + "content": "dda1ef87e76e54f5f3c62a13c808f087efda0aef3128ea76ffa7f9ae6fe1bc69" + }, + { + "alg": "SHA3-512", + "content": "61bdb07c40690e383ba5198845d27e8254e40492f340c44b9339e3176eab9eacc57abd52c3b7a2cab7e45e41249c0da5d437615769eee3c732fcaafb6b331a08" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "snakeyaml-engine", + "purl": "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7?type=jar", + "scope": "required", + "type": "library", + "version": "2.7" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-httpclient-okhttp" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-httpclient-okhttp/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706403" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "696b3852e92b72351c760a5801e90e24" + }, + { + "alg": "SHA-1", + "content": "50c7ca61461272c3684d4a03473ae8f33775a0fc" + }, + { + "alg": "SHA-256", + "content": "a578b049e0f3c8c57080df6ab2b76f672bb29e743fcb62a45612ac2eab9d89dd" + }, + { + "alg": "SHA-512", + "content": "b1d702595274d760fd10318d07be5089b4458fb40850711cc83344bb7c2231a8713c4ab15310a4a0dbef9fd622144a90fc7992ba0d8db99459c9e75a524d578d" + }, + { + "alg": "SHA-384", + "content": "f1648d7a1ccc28b95a18b947c60b68d5deaab3609184ac5028eeb0ce9ff41995ee914679120280decc79a50e0fd53ee3" + }, + { + "alg": "SHA3-384", + "content": "63a9a46b71c0f630db3130269238d74b74b1aa0a7a2e42bc9a84973918198edf366bf8aacc88e0931b59288f1ecfdb0d" + }, + { + "alg": "SHA3-256", + "content": "b72fb1ea5f2d0a6c73f66e4a62b9c80a6060a9b7fa192eb09e6b264c68a1c4d6" + }, + { + "alg": "SHA3-512", + "content": "340651b68ba20c659166df584e4368dd5ab58039812cd116a3ead345a1f226972ae78e801bbd48431ec38628e56e597aaa5e29163ea1333d95872ded1a0d53e6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-httpclient-okhttp", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?type=jar", + "description": "Java Library to find / apply JSON Patches according to RFC 6902", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/zjsonpatch/" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/zjsonpatch" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/25596" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "c47f98189f594bd86ccbf40c5391b600" + }, + { + "alg": "SHA-1", + "content": "d3ebf0f291297649b4c8dc3ecc81d2eddedc100d" + }, + { + "alg": "SHA-256", + "content": "ae4e5e931646a25cb09b55186de4f3346e358e01130bef279ddf495a719c71d5" + }, + { + "alg": "SHA-512", + "content": "7dabd119a1f500f031da506901c4dd03f11ccd53a15e089ee3917372293b32d56196f621614b20663715e00cd77a17636d44fb95aea8a711aa8a8869741d065a" + }, + { + "alg": "SHA-384", + "content": "712dd69436caf0fbd144bce2e12871353cb6c6c58d52a4b795146028fcd8ab929acadbb890fb14fa02ea2ea6a85c4fcb" + }, + { + "alg": "SHA3-384", + "content": "e696db3c82365c18b4705e6fcb0eddb4a81eeb0aadbb48a259620455aaf590230b5617d9590bc1d45a6d848deb79948b" + }, + { + "alg": "SHA3-256", + "content": "24edbbfeb6b8be6c1597f45768b8304b703f89e485c4e497cca596b069b123d9" + }, + { + "alg": "SHA3-512", + "content": "79412b78a9d8f61994eabc84ae4185ddaa446a28a44015ae69eb5e5c0b6ec8b904f41e2c98188358c7e9b5caaf7d21be766b88828caad8ea92b3b1d70aca0912" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "zjsonpatch", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?type=jar", + "scope": "required", + "type": "library", + "version": "0.3.0" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-client-api@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client-api" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/openshift-client-api/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706456" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "f408224281aa39fd0305bf2afad46419" + }, + { + "alg": "SHA-1", + "content": "d73f116dda72b2adb764d2ba6750eb3baae2f6f3" + }, + { + "alg": "SHA-256", + "content": "d225e42a39b4d8de24c025aac1a90fe369d7959b7d051357a2514de345c96630" + }, + { + "alg": "SHA-512", + "content": "db7b473ae9bc0adcd202dd48c49d6a9cb3719a3d7cf6e61494f19ab720f19eaf75d24f288a8ffcff9dd2137e964aed47d4952ef9569ed3474dafc5310dda53d4" + }, + { + "alg": "SHA-384", + "content": "614f2d0a1ba0fbb27f7ecee3382a05b1f0ed05a325a4cc35e9012aac10ff9ae1eaeb4d7bfa27e3695419aaae28cd6346" + }, + { + "alg": "SHA3-384", + "content": "4f29d428b676ee1ce6b157e17bac25cdda298e5e869aff4f9850593ecacc48859c9e4b6bda227439de96cdd6e6aa73d0" + }, + { + "alg": "SHA3-256", + "content": "5b1d2fb44b14fbaea77512903edf281acd03a1b05e5264b88339d2fd4cf3b4fb" + }, + { + "alg": "SHA3-512", + "content": "7e93c3408c90da96c0f13ee535325c93001271ba9a05ab8ab69724e56046c7bad8713b3280cbf88f607123fcc19144a9e2d9be3a271a9e5117c762356383cdad" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-client-api", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-client-api@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706488" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "1229a121eee60c7eb60b05fb60274be6" + }, + { + "alg": "SHA-1", + "content": "18ea9a9e12a1b3df009f324fe1341eddcb8ab6f9" + }, + { + "alg": "SHA-256", + "content": "c7ba6cd6c35dd6a3ea177213c726e85137bc7ccbca57316c3c6313aad27549a7" + }, + { + "alg": "SHA-512", + "content": "1746df0858d16fc58f24b511e83b764fa2cef04526db8b61975869683ea47774afc527405f24795c2e14d0b7b669617fcfc863a6a13634adca8b41da3c40ac9d" + }, + { + "alg": "SHA-384", + "content": "8c6768c97d765ad16ec2258c57a5f55d90ea35ecd2f0d0235de576f827216a541d9ef1823e5626362b8b35c373dcc232" + }, + { + "alg": "SHA3-384", + "content": "fdf38b21e2eda3b1eef8dbea25d41e4cb3e4cee96a93bcfdee1dcbf171424635cf0cee0e9192937b953690adb99b9dbe" + }, + { + "alg": "SHA3-256", + "content": "741dda3a5567c0d232f9aeec11de3d8babe130d494ab93a90646583c432d39ee" + }, + { + "alg": "SHA3-512", + "content": "bb692ee2eab656fed09c424da79bbad0c1c763ab037ca2599315a9caef7dd836a97d35fa422f3ec8fc85a8211eb8d53c0d1c288a129184bd284bee55dac7657f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-common" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/kubernetes-model-common/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706421" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "02bd4efd75d78e5c25114b51034d1907" + }, + { + "alg": "SHA-1", + "content": "94abbd06b71043f0e587c0df8859698c79279d3a" + }, + { + "alg": "SHA-256", + "content": "ccc5d0b775412ea25883ae031cda9a0558d6a64e329905f3b5ed4724d7f61a36" + }, + { + "alg": "SHA-512", + "content": "f5c4bb88b63d5f3190fef737c80308955bf5e6bf642b7a4d72816d12c4acfb0b0ca5a61973c12f199061a3d2216d8057b937b8ffa176fdffcdece2cd8d27cccf" + }, + { + "alg": "SHA-384", + "content": "2a0fbfca0860527e3e4d2530462ba9becf26501e45ab43e0c020e22a786cd3c11ed750adfd3534af04aaa40e6c81e543" + }, + { + "alg": "SHA3-384", + "content": "bfafbfb9689c357b324adb78aeb535e6a80a271608633cfa9470ba4e0426c120eedbf556a65dc5aa1844b1083769118b" + }, + { + "alg": "SHA3-256", + "content": "38b296cc16e36669f942a301cc6b7aa4ba46d6c1768c20de3ebecee94b072fb4" + }, + { + "alg": "SHA3-512", + "content": "19a54c94c41b13fa4b210c3cea58a9c65b9d30bd9326483781a7a8fa04073204dc1125ebaf725d0a6c2401cbe7ed55cc6b1e57cb0085ef14d74209210ddf9b66" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "kubernetes-model-common", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-clusterautoscaling" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-clusterautoscaling/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706460" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "e3934652d039d72ddf41b87a0f184642" + }, + { + "alg": "SHA-1", + "content": "1d251e4734368f12e6c93cd8f4c29d028facc54b" + }, + { + "alg": "SHA-256", + "content": "001c037b68ed4f9ef966fd7cbb685a2104106a770fafb1f04782abacb81fc8f8" + }, + { + "alg": "SHA-512", + "content": "c403296aedf9fed9e1f87c673349b5ac5eb3f0c0ef3b605becda87168bee849062d7aff9f42d9e74f303dc1b44e4b83c423d879360637ff725f2fe4ade25f465" + }, + { + "alg": "SHA-384", + "content": "0540441df6082939a5464f1735e0ddcddf09bbe8d96bec88f7d73cd7309fc95a96b235c566fddd02cad9bbed31128437" + }, + { + "alg": "SHA3-384", + "content": "8f1cd19c5132216503bcab05ff2a34b1e6eaa48b51fa1d594c357e97b24a7133cb2225fdd6962f75b30cdd465c0985ba" + }, + { + "alg": "SHA3-256", + "content": "022268135d352041e8811e63d25bb4ae07bf89b2fe348ffe8f1d82aea67e2458" + }, + { + "alg": "SHA3-512", + "content": "a5900254bdd483daa72e41bd7539a6a9728543b34131db9bd09e7e2321d6d92db5be0135224697d328687b10c8909ad635f2240d3b3d97eb6110964779bd725f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-clusterautoscaling", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-operator@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operator" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operator/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706478" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "02611c85968e84cf88e7b0d0b3f6699a" + }, + { + "alg": "SHA-1", + "content": "50b5cb5b4d57111d42110e48c40e38784ea538eb" + }, + { + "alg": "SHA-256", + "content": "2c44fbac6a62e3f7a30d663de5da1c6ad3decbbf33cb6dcf62336fb2461f7454" + }, + { + "alg": "SHA-512", + "content": "6296489e34d16ba0a82ba19257f59031c8ba41a535fa024b9073bb10c9df952c2449e1e1e0a3327b191ac9c56e44170e5f4a4078077a65225b688fa2364cb6bf" + }, + { + "alg": "SHA-384", + "content": "497bdbcd7e2508c7eb8d9f1a0064d8016e8bac31ef32e828b65be18e235ef39376783395aee939f1c99cb517b842162f" + }, + { + "alg": "SHA3-384", + "content": "f1bb82d5953f1fe6840ee4025af995e7c55172ad5bd8f74905f3c21b8fbf8fbb65b0cee85a09ff413918fd11eb38da5f" + }, + { + "alg": "SHA3-256", + "content": "a3d0793ed36612707a0281a083531422a4ba6dfa0ce1fd79a121e39bc3e100e3" + }, + { + "alg": "SHA3-512", + "content": "73f3bbd92a465cbe5dcddfcdaef776e52d6d7a363f7e208b718685270a9c004da51838b1fa453797e4c02e1dedc6d1c06fdeb40c74c56761f79ce5879fd896d9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-operator", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operatorhub" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-operatorhub/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706480" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "2df8226213f6b34f4c6e6fba9cae9b7e" + }, + { + "alg": "SHA-1", + "content": "9fa516dde3841d3d1c7ac13eef22c572f5e8cca6" + }, + { + "alg": "SHA-256", + "content": "d942773aebe9907cfbde3817e8794b11a76b6acc3e6a91bd9ddc8612614dfef1" + }, + { + "alg": "SHA-512", + "content": "fb5e36a7928fe89cda47ff5fd26611b89d1d037ba3641b3d2d38d7bab4a6df8ecb89cce351b8c594850b87449c821305e181a1ba721dd35a1bd9f0bc712ae4ca" + }, + { + "alg": "SHA-384", + "content": "d7dfe9ca1a83aaab13fad8bb7c556f905c9ceb910ac3134236f01405ac1464962f70a0f5cf92a049330ceb8a9ea78738" + }, + { + "alg": "SHA3-384", + "content": "c6b06e398a0a670c68084100f8372cf8f010cc9fce498a21cecf41e0b2cd77ab719e51001d440f8179a04643510d6240" + }, + { + "alg": "SHA3-256", + "content": "d4c13512856fb5a9849b3c0a7337b8781092753136a670355ec630277378ad3a" + }, + { + "alg": "SHA3-512", + "content": "442a2d859710cc8eeb767ec2f7e5a25c27786dc4b33530252d31e24715ad923d867dbb0fde23af5e356706056b19c26ca8c7cc571f6f4d793b1ea69358030380" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-operatorhub", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-machine@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machine" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machine/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706470" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "5bf8fa5154f7e534f8e35dbb309c390b" + }, + { + "alg": "SHA-1", + "content": "d8d70487a97afe119e11886c7345ec0399d315e9" + }, + { + "alg": "SHA-256", + "content": "e9b860285050a752c209dfe63360d2dd55cb02e7ad7029727026fef6d2b59f22" + }, + { + "alg": "SHA-512", + "content": "f7fab5dd556da155978ac6c84ed659c876b62d85a3d56beefc9954b8308052ff20cfc383d1d1158e77b63b5dbcc24bfcecd215b286ac068d358acc78b56a95b4" + }, + { + "alg": "SHA-384", + "content": "fc20aca6e20696c50067644cd3ea820cf39145657a3d3997ebb4eddb14fe81e64c85b2359f4a82744680aa208ad37d88" + }, + { + "alg": "SHA3-384", + "content": "4f7a96541004f32e82b546f57310329727d4070de1bdfbf9ce3e0b8ee5b071c1c010043994a96150547f5139f904eb97" + }, + { + "alg": "SHA3-256", + "content": "20c16cba0d20a473ecd42f33f7d27c85881d4c0cf59d163f2bf6596900145273" + }, + { + "alg": "SHA3-512", + "content": "cf6d35c0b9a772aeb0392281a714eaf25b10488fddd31bbc3aa3580a5295705f7a3d69728b636ba39d7f25bd4bc92a7944785f0a57e2071d1f5fa400b33467d0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-machine", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-whereabouts" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-whereabouts/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706486" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "d7e7bf7cdb633101ab9842b2ead55bb5" + }, + { + "alg": "SHA-1", + "content": "a1c6d96005002d406e8724fd07076634ca93b505" + }, + { + "alg": "SHA-256", + "content": "8da52d2cc42766226f478b38fb3eeba1838d4d67a705da283a79f1ffcca6e7b8" + }, + { + "alg": "SHA-512", + "content": "2485997e092f44f0fb71868a5809062a4769ea7165200089d7e43e37567916266eb90d158b097d9aac9a05db6aef841ca10ee7cc7fb0d99fe11dc1daa2f80e5a" + }, + { + "alg": "SHA-384", + "content": "e92da418dc8af8cb3c5656f185e662fa935ce5a84c77bc07c2c4929381a19181676261c66c3d1d6348a22b4d235e6790" + }, + { + "alg": "SHA3-384", + "content": "03377f7511b89607729dfe020b90f10417fb3ca426230a999892341c52d2fb69e39fbc7d1ad9d1d84686c1a914544153" + }, + { + "alg": "SHA3-256", + "content": "c6f9f2c18b07a1f4a18565864b2c1cadf7afd139994693f3b6a055e0dcb8f6db" + }, + { + "alg": "SHA3-512", + "content": "09b9347f4712dc56eb23633214f0ec60b26a41a84a6d70f4f404410cc7a9adf42ed7bfa9ad25628c419beab32dd3cc2f09006fde29af9c8d2c67f364ca11c261" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-whereabouts", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-monitoring" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-monitoring/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706476" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "6862f7c595b327e856526954694a9035" + }, + { + "alg": "SHA-1", + "content": "e80f0a002d80a2ebe3b598fe1fac1b2342e8ab51" + }, + { + "alg": "SHA-256", + "content": "0cb75cb45653a4954800415b6a4eb620637cbd5fd80a7fda958aa0d3cb10f81d" + }, + { + "alg": "SHA-512", + "content": "8eb5eedaae3a3113a93f8668622e388ad3c89f6258c718018cb372f62b01ed0b139de16c0d11ad34064d44d635960550defd83a913f4e46d9cb3a63f8d7c4f21" + }, + { + "alg": "SHA-384", + "content": "e5c847b40833a2b92e3691849a46f47e3642a26a3be98cee1a650bf67ce9b877971e534e4575e1348d0794f9bc9e25b0" + }, + { + "alg": "SHA3-384", + "content": "97b1dbf6a42e44bcd60226b33069f6a6a08f7881345488582814082d7a6103eb5175e801508a48b7605d72fe1fac78ec" + }, + { + "alg": "SHA3-256", + "content": "f9e7b01b4fc34ecf8df47465bf0e1c45ff3bf8c8b13502b07fd024f0fd82f759" + }, + { + "alg": "SHA3-512", + "content": "0044c28a5ed9a93dd9e119f248b6e46d722fd2bcc7ca08d80ca771ed7a07a41223d15700b68dc8900a1e1f59a5dc81ff6ac717756ed1ba8bd925ab4315a0dbce" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-monitoring", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-storageversionmigrator" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-storageversionmigrator/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706482" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "2ba81d6f1162cd8823579b89dc2cb48a" + }, + { + "alg": "SHA-1", + "content": "6cdf96cf4b85b74d005fe8c05d37b34faba52d55" + }, + { + "alg": "SHA-256", + "content": "4621c118521529f47494198952ed8d50a4606b04cf3fb87df997b2490858d283" + }, + { + "alg": "SHA-512", + "content": "f6b6cfcf4bc6eb964c0e141db021c03b87dda7d5151866c926d8a51663ef2c80eceed2d1aaf4cc7a68f2e506ecf3ae14080a9e8d52d6ac1128aa7075e7be2715" + }, + { + "alg": "SHA-384", + "content": "94b43c866b4adb80bbeb94a5a8ac03c377dc43b83bbb01e70f0296e285a1771e95375ac25817ca53ecbf45c7fc650da3" + }, + { + "alg": "SHA3-384", + "content": "9001e328a3ff082442e4949409874cfe1a750f373a2122453311f6f64bda6245d7d98c9495bb3249924b5ae4518b80c7" + }, + { + "alg": "SHA3-256", + "content": "79841f8681dcf35c540c5f373249b8e8e564e817521e08b99af710b1a1ad81e9" + }, + { + "alg": "SHA3-512", + "content": "028d5ab06cef62f927fee4b74bb3012683f7b69a74dab3460c5fff853fcc5c413f76896216e735c6092af95aededdfa321290a7a0441ceeb65b1cd4573339179" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-storageversionmigrator", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-tuned@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-tuned" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-tuned/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706484" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "5018559baad425869c123ec66ba0d4d8" + }, + { + "alg": "SHA-1", + "content": "f9efa73197698528c2bf21ad8574ac7a074a8a70" + }, + { + "alg": "SHA-256", + "content": "cd56415f7dcdf4dce8776edbac8b148294f7bfa058c14f87bcce1c6cebb6f727" + }, + { + "alg": "SHA-512", + "content": "9d246df4421675e80a467316b4c84c0b50540684aa08f6db995c156008b85a01313df01fc888bb874437859d8703dbea03bfd637cf357f9107a48ab8f4bbe2dd" + }, + { + "alg": "SHA-384", + "content": "40519a0125958a2892b20e05832dd0d703fd62cb394ab8f90df9d287cde0dc62123d0d63e7efe0e39478c0ddbf94c2be" + }, + { + "alg": "SHA3-384", + "content": "6f24089222b67bf3c301d6fbab8206966ae729eb6c9dad698859014ec58b4c3ea82c77f4227014ca377cc63113eefa0e" + }, + { + "alg": "SHA3-256", + "content": "7e5fb88df30dd1fa3838162af005bc8fe967053d85a689571c159b669203ba1c" + }, + { + "alg": "SHA3-512", + "content": "cf26cf91538ce5a7ab90e0ad9dd15160779eb01d31676142d97c0006ca5baeffb46fc18a798f2fc34507bf5b5f779e3cc24242a8b713c903777fda931cb729a7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-tuned", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-console@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-console" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-console/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706464" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "6b01efbe0fbf1cec0229356c50ad552a" + }, + { + "alg": "SHA-1", + "content": "5505aed0d91b5f3132cc3d18ebc70858279f5ae8" + }, + { + "alg": "SHA-256", + "content": "8f8ecbe7a098fcf8bf1fc0ba0310cd15b62af61a1337d316c46bbe5b135aae1b" + }, + { + "alg": "SHA-512", + "content": "e94e36699e25cc0c2283e8c477a4bf42954c704aebc3e7c3ba7be4d4203bc909cc41721dbebad30ed02c63034d4ab2dcf883fa5d94b60aa8913aee6bfac23a07" + }, + { + "alg": "SHA-384", + "content": "7c578ceaacd7d1ca66662bf913c2cb5bb2ca0708b194a0fb6008bc604bb39f4daebbc6b5a969b68da1b808f2cf70053d" + }, + { + "alg": "SHA3-384", + "content": "46c025bcafdae987e1a303763f8f14bfa603dd4c9f6bf502b874aed67f2d253c98d289243bbcf6e16910ad836357d62a" + }, + { + "alg": "SHA3-256", + "content": "8383b36d6ad028fc06671414a60459f046a00e550e96767d7b86f5494ed6050f" + }, + { + "alg": "SHA3-512", + "content": "a04b01617d3d9e65d4e10c179debba261987d69d3fef4a954087c3947d2737dbf5bf7b6f685f46bf72bb33bba17017fccf40d9ddb649f77e614468bf4bb7d004" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-console", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-console@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-config" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-config/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706462" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "02e811913412d7c9aa8d64350a0601ec" + }, + { + "alg": "SHA-1", + "content": "dd0a919c315c0be5ac9184ab47c5c5fc42444ddb" + }, + { + "alg": "SHA-256", + "content": "525a9a41a3962c6cdd00999c414226f3b78ab6184cc8374f59319f2aa4c0b5e1" + }, + { + "alg": "SHA-512", + "content": "d3a9b92768dd4093466be0236e1afcec0e5292779ac46eb27b7bcecfe5f7147001ac14accbe6819c2d4d750d1c1b4870b5194d4ad7248de4990800796055c1da" + }, + { + "alg": "SHA-384", + "content": "b8a1ce3d31707418ed46c60581a931c50d3d654fa98f2b4538aa938af5a65a67fdc149b734623666e319f2bb2ba00cdb" + }, + { + "alg": "SHA3-384", + "content": "b83c3d6c5f2a52f349b593a5a58a6552d4e1a491a2f43c39cfc8c5900e228eadd2a2dc156d59d84143af38f35a410f40" + }, + { + "alg": "SHA3-256", + "content": "d04ba845c06143bbd85f33f51e037527f752549834680149809c8c1c63138216" + }, + { + "alg": "SHA3-512", + "content": "9be3579fec482e20749d4b0dc0a096ed20b770a42da066c17b916022c0025e1b8adb22827567732dcbb804d62f5f5d81dd71160873303cf05db3668ebd8898ca" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-config", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machineconfig" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-machineconfig/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706472" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "ceb583162b9dff56e2843484d5d1df56" + }, + { + "alg": "SHA-1", + "content": "a84c4c4d1e7c469bf7a031fa33189acf123ce36d" + }, + { + "alg": "SHA-256", + "content": "588c2f2eded96d8e626565a0aa5a76c107e27c143a0dd225fc7c4a951a8964ba" + }, + { + "alg": "SHA-512", + "content": "77a30f15ffd6098862615be13e7d0ce52a9c796129a2c3105ae3e7361bda9cc3302975b2cc7ccf9a8c0978f57afd08e89ccbbebd9fe0424adfdbcb318ef9c61a" + }, + { + "alg": "SHA-384", + "content": "d34cd72232bee40536e3a61c52661700872a04ecc80a5b7b8e041af2e2a69385c89462307e5da62d95546a3b0d44ae93" + }, + { + "alg": "SHA3-384", + "content": "0a15eec48981a467df7d5b75bce85a5610d2d549ef9d9ff2a30a18bbbad0ec45c5ad5c91fa8ee3ad94744144acd1877b" + }, + { + "alg": "SHA3-256", + "content": "d84f16ac1d0c2dca3a1f0cc9a926c6b5804f90b06d5b41e665bf2e59dcfa52ef" + }, + { + "alg": "SHA3-512", + "content": "299ec11a8002c4c4dea6fb6dc73d1184a0fa374191c060e537def0aeb1fbc267a7785806634d11ba11aaf5f40796c25865c718c9fb8d3a5a75d46d10c0dc52e1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-machineconfig", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-miscellaneous" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-miscellaneous/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706474" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "e4f28b91c34bae1290af31a8b69177d3" + }, + { + "alg": "SHA-1", + "content": "ff8e01d50ccb56634b284ccb366cde3a8b06d3ca" + }, + { + "alg": "SHA-256", + "content": "7c95e9e83f28110bf312340302b6326924778b84b127243d6ee8763b959cb177" + }, + { + "alg": "SHA-512", + "content": "8ac8b21200949d38383bb59ce3b26a10fe1941f1f5c24ef0fe3d77a445a3625c574d4ea93ef27fffe8951ed5762bb554d0cabedbb699bb32513ad339474a38e6" + }, + { + "alg": "SHA-384", + "content": "85a4d74de6670fa8bb967ae924cb22b154ad5018ccc1c58ebe77487cab621ae6f2bd7591e2dc01fe735e3ae8488a7b6b" + }, + { + "alg": "SHA3-384", + "content": "fe7333d73312176abd05aaed6ecb6f9243557c9c3730d45f475d4122c1a90943ad9c5f0e6599994c8441e18c581bdae0" + }, + { + "alg": "SHA3-256", + "content": "b039c0231ae778cf561443bea735eccb20877ee40d1e6bf65f99f4d207205e4f" + }, + { + "alg": "SHA3-512", + "content": "99817c68cd79c06dd37f9806bd88a7adb6f9382fb80b26e108f8f9824381eef77b07d0f3d808ff3b0d2ce7f2843d5c0e17355a40513741163d1209ea75d9bbfb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-miscellaneous", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-hive@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-hive" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-hive/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706466" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "4003e39718213c1f1e8a7be2a73346f6" + }, + { + "alg": "SHA-1", + "content": "4aa580d82f83cbe4e3be875501f079ea68e1f01a" + }, + { + "alg": "SHA-256", + "content": "83f029e8299ef37682dc9d79a37e8150d83367dc636bc64df2038bc11df4b436" + }, + { + "alg": "SHA-512", + "content": "9774e356a0d2ae5c7838308bfd7b83bae00c741fd3c885bab0dcff019f58e753de0d65bb4d181973753082d77c091fabb3e71b31690b5ac9ea1d6cbf84eba538" + }, + { + "alg": "SHA-384", + "content": "a7fd479e8bfbe6a288132bedb81796d1460666705fa5b26e1c8853625acad169cac9f7f359bb6017a6a5026215e1af16" + }, + { + "alg": "SHA3-384", + "content": "96ca82415cc0007e5843e9e7339e599ff56d1e0c59e7058106ef00b0c466ec611f3f1001d9d6b6c86421780ae824b1a3" + }, + { + "alg": "SHA3-256", + "content": "e99b954877f0aa0b83567740c4858e4306df99ed5cd037540de03903c39afa0f" + }, + { + "alg": "SHA3-512", + "content": "232bf792e32853bc07160c2383f6704d14d0ed3da0240ed23056c12e948b55c0f10f48711f58d4f9bbc00e505c70564728bbc029656505b6719b376304d2361b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-hive", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/io.fabric8/openshift-model-installer@6.13.1?type=jar", + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-installer" + }, + { + "type": "distribution", + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + }, + { + "type": "vcs", + "url": "https://github.com/fabric8io/kubernetes-client/kubernetes-model-generator/openshift-model-installer/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12706468" + } + ], + "group": "io.fabric8", + "hashes": [ + { + "alg": "MD5", + "content": "27b43122e51ab29e4c6d1158226f362c" + }, + { + "alg": "SHA-1", + "content": "e78d4bb589c30842e7bfe3595be17b730ad205fe" + }, + { + "alg": "SHA-256", + "content": "dff7b18468c26cb0a09c6db94b388646bd17ff8a210697017a1fc56eed2f008a" + }, + { + "alg": "SHA-512", + "content": "14a74da3f744629fa75e71285e2fbca29205b9a807d3d967ce78ddb4850f0258cff85b7f8a6f8f27ef98d7e4c17bf184a427defa4ae46a6d584394f83235ac0f" + }, + { + "alg": "SHA-384", + "content": "ab233a5b9717fae7cbc46c6c13f2b1bd900e13d3736a292aae5d62334843b71c4690e79cfdf27864f5b677daa36b07de" + }, + { + "alg": "SHA3-384", + "content": "eace180f915b9580d8bd872426fbb72d3a7115e00c9143264ecc2d8368bbe00959c79d7393ef7eefbd1f5e25a8cb3abb" + }, + { + "alg": "SHA3-256", + "content": "fcdf635f246e06df75c1f6acac19d18757d938a74378818d527064ee2c42db14" + }, + { + "alg": "SHA3-512", + "content": "01251436b75bbba8fc465480bffabe8cfd2e33c6875cdc1ef62be5fbd0fd3afeb4dfb3fd43f5f5c6f1aee03b5c3edccc11fff2bf5562acab63a0ffc480a4b4e3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "openshift-model-installer", + "publisher": "Red Hat", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@6.13.1?type=jar", + "scope": "required", + "type": "library", + "version": "6.13.1" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-jpa-starter@4.8.0.redhat-00022?type=jar", + "description": "Camel Components Starter", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jpa-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-jpa-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234734" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "9f63901849333a3d36f90457a1942038" + }, + { + "alg": "SHA-1", + "content": "cbde1da1918f681ce9b2de6ac95a19ad8ed426ee" + }, + { + "alg": "SHA-256", + "content": "7f7d4054c9d96b2056f973c89988760b7865581f20ba5b0ad23a4e285687f94d" + }, + { + "alg": "SHA-512", + "content": "6f31c1d756b8cc39c4611c6650f8c599786389a234fbe532498c309e8ff00426549c920f9b9cbf1f45f1571cc891fb68b13ec6865580ca53ad05eec1a602ac95" + }, + { + "alg": "SHA-384", + "content": "26cb47db7dd80fde16212cffacfe310218d3b1d0a62874b5cf421342eb942c413030457b9846653e65cd7aed5817be17" + }, + { + "alg": "SHA3-384", + "content": "5ac7573c10ee08037f89e9e5e2db1e8e6b7a5144c20df8073bb20f312647dc6c6d9b25a8d420647235668ca488c69d99" + }, + { + "alg": "SHA3-256", + "content": "5a98f86d24ac10ec5185377da39d188c00afafa3e3513a305782e9a530a2b91c" + }, + { + "alg": "SHA3-512", + "content": "28c6fadca3e07cf2fd8c84a728e0988dbc0a899f4374daa89f4df852152e1fe266a3fbd2e54defc92cbb98eb0fe516897567124ec2e05209bf40a49d901972d9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jpa-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-jpa-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-jpa@4.8.0.redhat-00017?type=jar", + "description": "Camel JPA support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-jpa/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-jpa" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233895" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c31d028c3e4f709e4dfcaaa07d8bf29b" + }, + { + "alg": "SHA-1", + "content": "68267084ae2534d607d5a5dad6d4db88757679f4" + }, + { + "alg": "SHA-256", + "content": "8ef38300a9d6c6709db0a49b34ea2ae2017c941b01c3fd9755986dbccdcab670" + }, + { + "alg": "SHA-512", + "content": "cf9f579b49384790ecf3aba47ce83f58cf94d726def87b68dcf8880aee2d8171299df62ca1f4d8ec6734b5dd9c1523ed0dd5f448ae8fb2afd840448a0c906819" + }, + { + "alg": "SHA-384", + "content": "0cc1b5447bff0561df0010d63fb8d8093a4b240558dbdd78801ca8d8b9128a5e6b106630c3bd6f3f4e6aaaf04be09278" + }, + { + "alg": "SHA3-384", + "content": "389e97e46794e1d83a1d1892d00c55bbdfcc54bac7b9b6a9f67f94486766e577ae391e79764fb348b891eaa4f0674897" + }, + { + "alg": "SHA3-256", + "content": "386967237b0f2379892148fac841e2f3d87dec9901b4f2ec28d6c7537a1fb94d" + }, + { + "alg": "SHA3-512", + "content": "67cc7dba82494e1ddb1a5d06eb3daebd6bc22ce4fe681c91b6574edb983ec9a1894e1c6a75f068f7b3e690c9b52b613791c90129356e879a02022218bbf9aa5d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-jpa", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-jpa@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/com.mysql/mysql-connector-j@8.3.0?type=jar", + "description": "JDBC Type 4 driver for MySQL.", + "externalReferences": [ + { + "type": "website", + "url": "http://dev.mysql.com/doc/connector-j/en/" + }, + { + "type": "vcs", + "url": "https://github.com/mysql/mysql-connector-j" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/11768853" + } + ], + "group": "com.mysql", + "hashes": [ + { + "alg": "MD5", + "content": "48d9e8892746315faf8023c1b26fd8bb" + }, + { + "alg": "SHA-1", + "content": "1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1" + }, + { + "alg": "SHA-256", + "content": "94e7fa815370cdcefed915db7f53f88445fac110f8c3818392b992ec9ee6d295" + }, + { + "alg": "SHA-512", + "content": "8ff42fce507441f8d00a5070504ee181e56f10de03f51828d5625824793b3b4f43a87fd4307ed52fa849459dc21d2e43606d7fcadc7f5083c10f788b348caf13" + }, + { + "alg": "SHA-384", + "content": "4a3a529ba06fcf6d268b572310bb09bf16e425adb9a7e59438aa4b715c93f541d7df2e57e593401f52ffe6bc280539a0" + }, + { + "alg": "SHA3-384", + "content": "c3a47f7b88ebfafbf762e8bf5a430b50cd6388cd30b56f6a9673ab1cc2f59dfeb6485a8abc835c60481e7f735b234afe" + }, + { + "alg": "SHA3-256", + "content": "527e042f035f1b01b5aa8a7024fc0a3f5167c05ac18b0e1f5aceee8fe8a4e380" + }, + { + "alg": "SHA3-512", + "content": "315e67077a312435beab6d9be639786f153d232e63cc7fe945c8f27021a22a3e6788740e92e7eadbd0c8e28155aa3486b40289fba85e8f3cf6effd9d02dd40a9" + } + ], + "licenses": [ + { + "license": { + "name": "The GNU General Public License, v2 with Universal FOSS Exception, v1.0" + } + } + ], + "name": "mysql-connector-j", + "publisher": "Oracle Corporation", + "purl": "pkg:maven/com.mysql/mysql-connector-j@8.3.0?type=jar", + "scope": "required", + "type": "library", + "version": "8.3.0" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-xml@4.8.0.redhat-00001?type=jar", + "description": "An example showing JTA with Spring Boot using Spring XML configuration", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/spring-boot-jta-jpa-xml" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/spring-boot-jta-jpa-xml" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "spring-boot-jta-jpa-xml", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-xml@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-spring-jdbc@4.8.0.redhat-00001?type=jar", + "description": "Camel transacted routes integrating local Spring Transaction", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-spring-jdbc" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-spring-jdbc" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-spring-jdbc", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-spring-jdbc@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-strimzi@4.8.0.redhat-00001?type=jar", + "description": "Camel example which a route is defined in XML for Strimzi integration on Openshift/Kubernetes", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-strimzi" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-strimzi" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-strimzi", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-strimzi@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-supervising-route-controller@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel's Supervising Route Controller and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-supervising-route-controller" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-supervising-route-controller" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-supervising-route-controller", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-supervising-route-controller@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-tomcat-jdbc@4.8.0.redhat-00001?type=war", + "group": "org.apache.camel.springboot.example", + "name": "camel-example-tomcat-jdbc", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-tomcat-jdbc@4.8.0.redhat-00001?type=war", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.tomcat/tomcat-jdbc@10.1.33?type=jar", + "description": "Tomcat JDBC Pool Package", + "externalReferences": [ + { + "type": "website", + "url": "https://tomcat.apache.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13235156" + } + ], + "group": "org.apache.tomcat", + "hashes": [ + { + "alg": "MD5", + "content": "ce6fa76fded4da84982f22ddf133fc05" + }, + { + "alg": "SHA-1", + "content": "e4692cf04d56eb68cda109aa2c23b568b465f826" + }, + { + "alg": "SHA-256", + "content": "9e0b9b3995428ad1b92fefbe115eb1021e967469cebe566d7aa96dcfbe1ea9d7" + }, + { + "alg": "SHA-512", + "content": "f78968f2c0480155f5e1eabd2569cd62894c5a5a94621965f77c2eb1197c01d3e19b7e537bd0679527836a3573c62845224cb00331a6a6635dd22da5194e020a" + }, + { + "alg": "SHA-384", + "content": "d68cbf9ba02f95e34085557493e52e1500f2fbfcfd281bce591ccff8865d62b87de9034a1ef8200ab057b2f6c3800b7b" + }, + { + "alg": "SHA3-384", + "content": "1e1e6dbde244b6d55a427cbfdb4c066afa56d16920dec107123092494c181b701e49e59f382ac199494bce141eb2fa86" + }, + { + "alg": "SHA3-256", + "content": "4a1db59cd7db0c9cb512b048556526dff6cb3bed24b5bf00684440b040c07e6e" + }, + { + "alg": "SHA3-512", + "content": "f0181806822e33ab1c58d8709b026f60213f82ba708c319a4090cc6b804a497fd900528d3dcd237c3d89f971e958fd8ca65800714d0cde882787eae027bdce30" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "tomcat-jdbc", + "purl": "pkg:maven/org.apache.tomcat/tomcat-jdbc@10.1.33?type=jar", + "scope": "required", + "type": "library", + "version": "10.1.33" + }, + { + "bom-ref": "pkg:maven/org.apache.tomcat/tomcat-juli@10.1.33?type=jar", + "description": "Tomcat Core Logging Package", + "externalReferences": [ + { + "type": "website", + "url": "https://tomcat.apache.org/" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233384" + } + ], + "group": "org.apache.tomcat", + "hashes": [ + { + "alg": "MD5", + "content": "17a594b331a6fb94c0e20c7b6396ca98" + }, + { + "alg": "SHA-1", + "content": "116c37561ba783c00e7c6b40a5e61d70c2327e7f" + }, + { + "alg": "SHA-256", + "content": "8910b4cb99bbea6e05495313c080e6c27ee99cf9e1aa57c5bbffb985d9fa1543" + }, + { + "alg": "SHA-512", + "content": "54fb1d7898e124112cb1b12b01fdcc9359b4a7eee836945eb5426b197708f40c29e76c3948e9133552ffb0a35dc3b5bf743034f9f6b1b2e73e687273c4368fad" + }, + { + "alg": "SHA-384", + "content": "b811575dcf72ff157240061600a2925a00e36084591bcad123a63344e00c86659aa351bc2e4b1ef8a745be4bf51a1ec6" + }, + { + "alg": "SHA3-384", + "content": "dc4692dad26134587cf0278222ef6f100918eb42c9577fe42e4543f789b2f0c3bb326a66d5c054b9589be41061977585" + }, + { + "alg": "SHA3-256", + "content": "9c801b232e5a22353be9d16bd05f4efab332c79480fa8e988d0f1b7bf6b0bd43" + }, + { + "alg": "SHA3-512", + "content": "9570ce6b761e30039896fcd30f5159cca9191cfb32fa1be51b489510752748f4dc7edec2c597d1c2703930c94abef309c24636118c8662e5c5effe4bf9584b0b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "name": "tomcat-juli", + "purl": "pkg:maven/org.apache.tomcat/tomcat-juli@10.1.33?type=jar", + "scope": "required", + "type": "library", + "version": "10.1.33" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-type-converter@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to create custom type converter with Camel and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-type-converter" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-type-converter" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-type-converter", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-type-converter@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-validator@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with declarative validation and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-validator" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-validator" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-validator", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-validator@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-webhook@4.8.0.redhat-00001?type=jar", + "description": "Example on how to use the Camel Webhook component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-webhook" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-webhook" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-webhook", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-webhook@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-telegram-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Telegram support", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-telegram-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-telegram-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234685" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "fd0a115b4008691b1ede991bbc0043c3" + }, + { + "alg": "SHA-1", + "content": "b37542cc1158902360c517b9a26c061f8c79ae75" + }, + { + "alg": "SHA-256", + "content": "f3e0ce1c1f5acda1812e6eb32e61353c064f4c18ad401669390610f06690c375" + }, + { + "alg": "SHA-512", + "content": "af39c2668880ecfa10dfd07c1f528fc2e9b75dbd32ef9dea366ae5416cd1db7981fd2969420bdde9aed0e8757ac15948ee00d9c8a3f59b4fe06d1689d472f8fa" + }, + { + "alg": "SHA-384", + "content": "1984bfa7e1052773761104f04d04bfed78bde7fdbdb090bfcec508e20b1b1a7cd6677a534508838fd4f38a38dbf46303" + }, + { + "alg": "SHA3-384", + "content": "fb7ebd48e23214cdbbfec9f6e151c59edbb1a9cf5048f57a9edd306c799397bbb68034c901b8726aee87a3249ca4dc9c" + }, + { + "alg": "SHA3-256", + "content": "e03deaa052b5bd314dc4d2550e0519408b4711bbaa155677df3c04b576ae507f" + }, + { + "alg": "SHA3-512", + "content": "12f64623123f36cbb06f23416481604eb64fd18639387d71b6a515046cb8165ac27ee21caa7022463f39cfcfb9a16ded57e0792083212e41bae436b64f8c9372" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-telegram-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-telegram-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-telegram@4.8.0.redhat-00017?type=jar", + "description": "Camel Telegram support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-telegram/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-telegram" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13233824" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "fe62947791bc3764ca3417bd11c7ecb3" + }, + { + "alg": "SHA-1", + "content": "5cf7a050c00833e5f486793a90505a6d34551fa0" + }, + { + "alg": "SHA-256", + "content": "36158f0d5be1e5bdca22640eb5ce081dc5ab40d2f492c9c87571ed9a232f9011" + }, + { + "alg": "SHA-512", + "content": "8c507dc2181a87f10ae2bc36b456187212d40cbe885233c752ffaa2f0da18276f69eb106ab39e9a5704a785179e2c4103527d218f13086ebd6493361c290754e" + }, + { + "alg": "SHA-384", + "content": "cb5228df81ec9e4eb991258426aa7c0be1b123b31aa8846b2823b460faa5b8dbb9bc78893238aad424842e05f718b1a1" + }, + { + "alg": "SHA3-384", + "content": "0c96f028663bb085dc58121c4350b44660e88db6d7045344b6821f639c3eb3c2fad832d2e05f65e684e0e1e2f1f3dd26" + }, + { + "alg": "SHA3-256", + "content": "f417b8eb6a87af638da4a2f9c8a9c0d1f3195191a1656251c5b46d9a58f829a8" + }, + { + "alg": "SHA3-512", + "content": "9c921e2a39cd442ebe559c448cb109c3f7a96b2465bbd2e3733ed14f5948cc5e48e4aa77c98763191fe578a596e34a81810ca0483e1400595c02e7addc212ff9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-telegram", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-telegram@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot/camel-webhook-starter@4.8.0.redhat-00022?type=jar", + "description": "Spring-Boot Starter for Camel Webhook component", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-webhook-starter" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/spring-boot-parent/tooling/camel-starter-parent/components-starter/camel-webhook-starter" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234721" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEA2PBKQNBAAC" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.9.1:1.0.2" + } + ], + "group": "org.apache.camel.springboot", + "hashes": [ + { + "alg": "MD5", + "content": "5bba0e013c2d8c6dbb65f72e41b93118" + }, + { + "alg": "SHA-1", + "content": "28e343531943118c38421b3ac5134f60110908e2" + }, + { + "alg": "SHA-256", + "content": "951193b9b7e8c90eabfdfe72659e785a36b52acd8b2eb207e2c77834e35fa970" + }, + { + "alg": "SHA-512", + "content": "5b84d1fede309837fa440011489f37c49e2419d7d5b745f9847321ffc030e1df9cd784079f27ae3e4a57bcea5aa7614e5b2ed07ad3d6c09d35e741c007b46352" + }, + { + "alg": "SHA-384", + "content": "54bf5d74bf1ff4a612b2a9114dcff9ecb0b86610893b573d9db0a20bb656fc627d011bebb19fea2ef799630bc8045ada" + }, + { + "alg": "SHA3-384", + "content": "d067d2a898a1c17deac110167c79b195b289e62167ab1836e21148216c0e90ee98f513acf91498f6c332f8dbeada3a1f" + }, + { + "alg": "SHA3-256", + "content": "cabc0ec5309082b80ac8be95e62ce62318284c414c08b2500ffc27119ef9a6aa" + }, + { + "alg": "SHA3-512", + "content": "d5fdc97015aa4068ad472cefe31d82f64607af87d4612b502d7ef38efa808e2c12a84c738b657eb8723b207a6554d797eb89ff705552ddd86424ca61e2475170" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-webhook-starter", + "pedigree": { + "commits": [ + { + "uid": "7623e383d3c70780e0bf7438dcf0aa218e2a7df6", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel-spring-boot.git#4.8.0.redhat-00022" + }, + { + "uid": "d5978c1a6f8378ebe185ecb255eca34ae5db745a", + "url": "ssh://git@github.com/jboss-fuse/camel-spring-boot.git#camel-spring-boot-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel.springboot/camel-webhook-starter@4.8.0.redhat-00022?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00022" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-webhook@4.8.0.redhat-00017?type=jar", + "description": "Camel Webhook component", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/components/camel-webhook/" + }, + { + "type": "distribution", + "url": "https://maven.repository.redhat.com/ga/" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/HEAD/camel/camel-parent/components/camel-webhook" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/13234190" + }, + { + "comment": "pnc-build-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/builds/BEAXWKTENBAAA" + }, + { + "comment": "pnc-environment-image", + "type": "build-meta", + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "c03cd3b6425a7a575d18cd66ceced00b" + }, + { + "alg": "SHA-1", + "content": "e45e87bbd93cc757d805a46381e7ddd77a31d4eb" + }, + { + "alg": "SHA-256", + "content": "19ffe94bb2b3dcfdf75aee32303ca82d9f08c121a1ad6fcc9f9ca1c2e49ea975" + }, + { + "alg": "SHA-512", + "content": "44213621cdac44d4b0889589d4b0100dd2398b56f1b26436560439c1f9a1dd386e838ca4c2b0879c16bc945fe1fbf9a29f2c30034e092828d6fda6ad0117c95e" + }, + { + "alg": "SHA-384", + "content": "5b0f4bb6bd6175d2fd11191041d94627173268f0bbdf7db5f3860be499eff74b346dec312b8b12c0d439817f9ecfb0ff" + }, + { + "alg": "SHA3-384", + "content": "5e02c1aa00c7bcb2616539d85428a5aba76bc9f34a326c14c1cd66ee2642f42c9a68bbb345f750086dd50bf3b1f87a2a" + }, + { + "alg": "SHA3-256", + "content": "39b4cc376ce03d64632916c615998069b464febdad3ede08df77431d9181b2f8" + }, + { + "alg": "SHA3-512", + "content": "a5fecb0939b55babda240b68367d89b377f3ddfcde1342b19a4f9475d0b7fdf2541c64a765f0485b3e5409f2e926ecc3ed12b1322fd8deda840cb7cef74467a0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-webhook", + "pedigree": { + "commits": [ + { + "uid": "385ccd34a066acd63ec716441261e04f311ec451", + "url": "https://gitlab.cee.redhat.com/pnc-workspace/jboss-fuse/camel.git#4.8.0.redhat-00017" + }, + { + "uid": "3d8831ddf98ef41c8e3f3b9e3ab61698b7a00ec8", + "url": "ssh://git@github.com/jboss-fuse/camel.git#camel-4.8.0-branch" + } + ] + }, + "publisher": "Red Hat", + "purl": "pkg:maven/org.apache.camel/camel-webhook@4.8.0.redhat-00017?type=jar", + "scope": "required", + "supplier": { + "name": "Red Hat", + "url": [ + "https://www.redhat.com" + ] + }, + "type": "library", + "version": "4.8.0.redhat-00017" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-widget-gadget@4.8.0.redhat-00001?type=jar", + "description": "The widget and gadget example from EIP book, running on Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-widget-gadget" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-widget-gadget" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-widget-gadget", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-widget-gadget@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Camel routes in XML files and Spring Boot", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-xml" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-xml" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-xml", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml-import@4.8.0.redhat-00001?type=jar", + "description": "An example showing how to work with Spring XML files imported with embedded CamelContext", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples/camel-example-spring-boot-xml-import" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples/camel-example-spring-boot-xml-import" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-example-spring-boot-xml-import", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml-import@4.8.0.redhat-00001?type=jar", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + { + "bom-ref": "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0?type=jar", + "description": "Camel DSL Support", + "externalReferences": [ + { + "type": "website", + "url": "https://www.apache.org/camel/camel-parent/dsl/camel-dsl-support/" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "mailing-list", + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/" + }, + { + "type": "vcs", + "url": "https://github.com/apache/maven-apache-parent/tree/apache-33/camel/camel-parent/dsl/camel-dsl-support" + }, + { + "comment": "pnc-artifact-id", + "type": "build-system", + "url": "https://orch.pnc.engineering.redhat.com/pnc-rest/v2/artifacts/12895424" + } + ], + "group": "org.apache.camel", + "hashes": [ + { + "alg": "MD5", + "content": "071f6d16a0b49d49c90fbf55ea59ec25" + }, + { + "alg": "SHA-1", + "content": "601931974c4e7603f5900314ddb25e3e8bacff7a" + }, + { + "alg": "SHA-256", + "content": "4acdcb61a3e820dc5d8fab08b22e6c1ec4945a6ef17f7c9b6c80cdf663466600" + }, + { + "alg": "SHA-512", + "content": "4e99c2186f9636ded708db76ae2badd948f712f94676ffcf1b3ec72dd1b88ccafd4d18c9743a17be55dedf54ef6aa9d216f123b13fe0ea888257d8c404d13e1b" + }, + { + "alg": "SHA-384", + "content": "19edf05e119a38d71b1171def7e76f5070b863bc5b5ad8d71be7b416af0c6f4033f66db7dc5c2967ed73e4a8db3b78b5" + }, + { + "alg": "SHA3-384", + "content": "cb9ff46cf8a0015f91ab7e923b61778047429c8299ff7b36cc1812ff1cb5f88e2370a0fa9bdad057019ba91c98a9e791" + }, + { + "alg": "SHA3-256", + "content": "8123407336ae7565264ece7f3932c16f07e22e8294bbab6307339927a2c18422" + }, + { + "alg": "SHA3-512", + "content": "8093b59c1607f23368c1c51f37ef80f06538e31a987a82694a0d683034b43664719c9aff11bb06d356e7e6f5dd89651342c221d9bedc229cbaf6a55ad76d2960" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "camel-dsl-support", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0?type=jar", + "scope": "required", + "type": "library", + "version": "4.8.0" + } + ], + "dependencies": [ + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-activemq@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-actuator-http-metrics@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp-salesforce@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-arangodb@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-artemis@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-aws2-s3@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-endpointdsl@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir-auth-tx@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-health-checks@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-infinispan@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jira@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jolokia@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-avro@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-offsetrepository@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kamelet-chucknorris@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-load-balancer-eip@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-mail-exchange-oauth2@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-master@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-metrics@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-monitoring@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-muti-datasources-2pc@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-openapi-contract-first@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-paho-mqtt5-shared-subscriptions@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-platform-http@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-pojo@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-quartz@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rabbitmq@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-reactive-streams@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-opentelemetry@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-simple@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-springdoc@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-route-reload@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routes-configuration@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate-xml@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall@4.8.0.redhat-00001?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-soap-cxf@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-splitter-eip@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-autoconfigure@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-xml@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-spring-jdbc@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-strimzi@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-supervising-route-controller@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-tomcat-jdbc@4.8.0.redhat-00001?type=war", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-type-converter@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-validator@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-webhook@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-widget-gadget@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml-import@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/examples@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot.example/examples@4.8.0.redhat-00001?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-activemq-starter@4.8.0?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-activemq@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar", + "pkg:maven/io.micrometer/micrometer-jakarta9@1.13.8?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-logging@3.3.6?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.yaml/snakeyaml@2.3?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-jcl@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-core@6.1.15?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.springframework/spring-jcl@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-expression@6.1.15?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-context@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-expression@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-commons@1.13.8?type=jar" + ], + "ref": "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.micrometer/micrometer-commons@1.13.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ch.qos.logback/logback-classic@1.5.7?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.23.1?type=jar", + "pkg:maven/org.slf4j/jul-to-slf4j@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ch.qos.logback/logback-core@1.5.7?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/ch.qos.logback/logback-classic@1.5.7?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/ch.qos.logback/logback-core@1.5.7?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.logging.log4j/log4j-api@2.23.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.23.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.logging.log4j/log4j-api@2.23.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.slf4j/jul-to-slf4j@2.0.16?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.yaml/snakeyaml@2.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar", + "pkg:maven/io.micrometer/micrometer-commons@1.13.8?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar" + ], + "ref": "pkg:maven/io.micrometer/micrometer-jakarta9@1.13.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-commons@1.13.8?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar", + "pkg:maven/org.hdrhistogram/HdrHistogram@2.2.2?type=jar", + "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar" + ], + "ref": "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.hdrhistogram/HdrHistogram@2.2.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-json@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-web@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-webmvc@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-web@6.1.15?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-json@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-web@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-expression@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-web@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-webmvc@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/io.undertow/undertow-websockets-jsr@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@10.1.33?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/org.jboss.xnio/xnio-api@3.8.16.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.xnio/xnio-nio@3.8.16.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.threads/jboss-threads@3.5.0.Final?type=jar" + ], + "ref": "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar" + ], + "ref": "pkg:maven/org.jboss.xnio/xnio-api@3.8.16.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.xnio/xnio-api@3.8.16.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.jboss.xnio/xnio-nio@3.8.16.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.jboss.threads/jboss-threads@3.5.0.Final?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar" + ], + "ref": "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/jakarta.websocket/jakarta.websocket-api@2.1.1?type=jar", + "pkg:maven/jakarta.websocket/jakarta.websocket-client-api@2.1.1?type=jar" + ], + "ref": "pkg:maven/io.undertow/undertow-websockets-jsr@2.3.18.SP1-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.websocket/jakarta.websocket-api@2.1.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.websocket/jakarta.websocket-client-api@2.1.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@10.1.33?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-browse-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-controlbus-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-dataformat-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-dataset-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-file-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-language-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-mock-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-ref-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-saga-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-scheduler-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stub-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xpath-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xslt-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-jaxp-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring-main@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-expression@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-base-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-reifier@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-base-engine@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-base@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-processor@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-reifier@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-processor@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-processor@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-main@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-spring-main@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-languages@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-main@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-languages@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-base-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-bean@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-bean@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-browse@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-browse-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-browse@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-controlbus@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-controlbus-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-controlbus@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-dataformat@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-dataformat-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-dataformat@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-dataset@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-dataset-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-mock@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-dataset@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-mock@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-direct@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-direct@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-file-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-language@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-language-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-language@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-log@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-log@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-mock@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-mock-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-ref@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-ref-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-ref@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-rest@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-rest@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-saga@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-saga-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-saga@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-scheduler@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-scheduler-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-scheduler@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-seda@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-seda@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-stub@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-stub-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-seda@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-stub@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-timer@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-timer@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-validator@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-validator-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-validator@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io-util@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.camel/camel-xml-io-util@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-xpath@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-xpath-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xpath@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-xslt@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-xslt-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xslt@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-xml-jaxp-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-activemq@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-activemq-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-jms@4.8.0?type=jar", + "pkg:maven/org.apache.activemq/activemq-client-jakarta@5.18.5?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-activemq@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework/spring-jms@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jms@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-messaging@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-jms@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-messaging@6.1.15?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar", + "pkg:maven/org.fusesource.hawtbuf/hawtbuf@1.11?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/activemq-client-jakarta@5.18.5?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.fusesource.hawtbuf/hawtbuf@1.11?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar", + "pkg:maven/org.apache.commons/commons-pool2@2.12.0?type=jar" + ], + "ref": "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.commons/commons-pool2@2.12.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-actuator-http-metrics@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-http@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.httpcomponents.client5/httpclient5@5.3.1?type=jar", + "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar", + "pkg:maven/org.apache.httpcomponents.core5/httpcore5-h2@5.2.5?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar", + "pkg:maven/org.apache.httpcomponents.core5/httpcore5-h2@5.2.5?type=jar", + "pkg:maven/org.apache.httpcomponents.client5/httpclient5@5.3.1?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-http@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar" + ], + "ref": "pkg:maven/org.apache.httpcomponents.core5/httpcore5-h2@5.2.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents.core5/httpcore5@5.2.5?type=jar", + "pkg:maven/org.apache.httpcomponents.core5/httpcore5-h2@5.2.5?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.httpcomponents.client5/httpclient5@5.3.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-jackson@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jackson@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-bean@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-log@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io-util@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-micrometer@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-micrometer@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-core@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-exposition-formats@1.2.1?type=jar" + ], + "ref": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.prometheus/prometheus-metrics-model@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-config@1.2.1?type=jar" + ], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-core@1.2.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-model@1.2.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-config@1.2.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.prometheus/prometheus-metrics-model@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-config@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-shaded-protobuf@1.2.1?type=jar" + ], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-exposition-formats@1.2.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-shaded-protobuf@1.2.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-amqp-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-amqp@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-amqp-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-jms@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.qpid/qpid-jms-client@2.5.0.redhat-00002?type=jar", + "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-amqp@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework/spring-jms@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jms@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar", + "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.qpid/qpid-jms-client@2.5.0.redhat-00002?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-servlet@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-servlet@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-amqp-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-salesforce-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-amqp-salesforce@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-salesforce@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-client@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-util-ajax@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-salesforce-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-client@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-util-ajax@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.module/jackson-module-jsonSchema-jakarta@2.17.2.redhat-00004?type=jar", + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "pkg:maven/org.cometd.java/cometd-java-client-http-jetty@8.0.4?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar", + "pkg:maven/io.grpc/grpc-netty@1.66.0?type=jar", + "pkg:maven/io.grpc/grpc-protobuf@1.66.0?type=jar", + "pkg:maven/io.grpc/grpc-stub@1.66.0?type=jar", + "pkg:maven/org.apache.avro/avro@1.12.0.redhat-00001?type=jar", + "pkg:maven/tech.allegro.schema.json2avro/converter@0.2.15?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-salesforce@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-alpn-client@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-http@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.eclipse.jetty/jetty-client@12.0.15.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.eclipse.jetty/jetty-alpn-client@12.0.15.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-io@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@12.0.15.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.eclipse.jetty/jetty-util-ajax@12.0.15.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-base@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jakarta-xmlbind-annotations@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jsonSchema-jakarta@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.cometd.java/cometd-java-client-http-common@8.0.4?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-client@12.0.15.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.cometd.java/cometd-java-client-http-jetty@8.0.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.cometd.java/cometd-java-client-common@8.0.4?type=jar" + ], + "ref": "pkg:maven/org.cometd.java/cometd-java-client-http-common@8.0.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.cometd.java/cometd-java-api-client@8.0.4?type=jar", + "pkg:maven/org.cometd.java/cometd-java-common@8.0.4?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-http@12.0.15.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.cometd.java/cometd-java-client-common@8.0.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.cometd.java/cometd-java-api-common@8.0.4?type=jar" + ], + "ref": "pkg:maven/org.cometd.java/cometd-java-api-client@8.0.4?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.cometd.java/cometd-java-api-common@8.0.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.cometd.java/cometd-java-api-client@8.0.4?type=jar", + "pkg:maven/org.eclipse.jetty/jetty-util@12.0.15.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.cometd.java/cometd-java-common@8.0.4?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.glassfish.jaxb/jaxb-core@4.0.5?type=jar" + ], + "ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar", + "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar", + "pkg:maven/org.glassfish.jaxb/txw2@4.0.5?type=jar", + "pkg:maven/com.sun.istack/istack-commons-runtime@4.1.2?type=jar" + ], + "ref": "pkg:maven/org.glassfish.jaxb/jaxb-core@4.0.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.glassfish.jaxb/txw2@4.0.5?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.sun.istack/istack-commons-runtime@4.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.grpc/grpc-core@1.66.0?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "pkg:maven/io.perfmark/perfmark-api@0.27.0?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.grpc/grpc-util@1.66.0?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-netty@1.66.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.google.guava/failureaccess@1.0.2.redhat-00001?type=jar", + "pkg:maven/com.google.guava/listenablefuture@9999.0.0.empty-to-avoid-conflict-with-guava-redhat-00004?type=jar", + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar", + "pkg:maven/org.checkerframework/checker-qual@3.41.0?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar" + ], + "ref": "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.guava/failureaccess@1.0.2.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.guava/listenablefuture@9999.0.0.empty-to-avoid-conflict-with-guava-redhat-00004?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.checkerframework/checker-qual@3.41.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "pkg:maven/com.google.code.gson/gson@2.10.1?type=jar", + "pkg:maven/com.google.android/annotations@4.1.1.4?type=jar", + "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.24?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/io.perfmark/perfmark-api@0.27.0?type=jar", + "pkg:maven/io.grpc/grpc-context@1.66.0?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-core@1.66.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.code.gson/gson@2.10.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.android/annotations@4.1.1.4?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.24?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.perfmark/perfmark-api@0.27.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-context@1.66.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-socks@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-codec-socks@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "pkg:maven/io.grpc/grpc-core@1.66.0?type=jar", + "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.24?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-util@1.66.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar", + "pkg:maven/com.google.protobuf/protobuf-java@3.25.5?type=jar", + "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.41.0?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/io.grpc/grpc-protobuf-lite@1.66.0?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-protobuf@1.66.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.protobuf/protobuf-java@3.25.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.google.protobuf/protobuf-java@3.25.5?type=jar" + ], + "ref": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.41.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-protobuf-lite@1.66.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-stub@1.66.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.avro/avro@1.12.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar", + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar" + ], + "ref": "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.avro/avro@1.12.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/tech.allegro.schema.json2avro/converter@0.2.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-arangodb-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-arangodb@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-arangodb@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-arangodb-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.arangodb/arangodb-java-driver@7.7.1?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-arangodb@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.arangodb/core@7.7.1?type=jar", + "pkg:maven/com.arangodb/http-protocol@7.7.1?type=jar", + "pkg:maven/com.arangodb/jackson-serde-json@7.7.1?type=jar" + ], + "ref": "pkg:maven/com.arangodb/arangodb-java-driver@7.7.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.arangodb/core@7.7.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.vertx/vertx-web-client@4.5.7?type=jar" + ], + "ref": "pkg:maven/com.arangodb/http-protocol@7.7.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.vertx/vertx-uri-template@4.5.7?type=jar", + "pkg:maven/io.vertx/vertx-web-common@4.5.7?type=jar", + "pkg:maven/io.vertx/vertx-auth-common@4.5.7?type=jar", + "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar" + ], + "ref": "pkg:maven/io.vertx/vertx-web-client@4.5.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar" + ], + "ref": "pkg:maven/io.vertx/vertx-uri-template@4.5.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-dns@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-codec-dns@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar" + ], + "ref": "pkg:maven/io.vertx/vertx-web-common@4.5.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.5.7?type=jar" + ], + "ref": "pkg:maven/io.vertx/vertx-auth-common@4.5.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.arangodb/jackson-serde-json@7.7.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-artemis@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-server@2.33.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-artemis@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-jms@6.1.15?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-artemis@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-selector@2.33.0?type=jar", + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.jgroups/jgroups@5.3.2.Final?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final?classifier=osx-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-socks@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/de.dentrassi.crypto/pem-keystore@2.3.0?type=jar", + "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar", + "pkg:maven/org.bouncycastle/bcpkix-jdk18on@1.77?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jgroups/jgroups@5.3.2.Final?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/commons-logging/commons-logging@1.2?type=jar", + "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar" + ], + "ref": "pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/commons-logging/commons-logging@1.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final?classifier=osx-x86_64&type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar", + "pkg:maven/org.bouncycastle/bcpkix-jdk18on@1.77?type=jar" + ], + "ref": "pkg:maven/de.dentrassi.crypto/pem-keystore@2.3.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar", + "pkg:maven/org.bouncycastle/bcutil-jdk18on@1.77?type=jar" + ], + "ref": "pkg:maven/org.bouncycastle/bcpkix-jdk18on@1.77?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar" + ], + "ref": "pkg:maven/org.bouncycastle/bcutil-jdk18on@1.77?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-selector@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-server@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-journal@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-service-extensions@2.33.0?type=jar", + "pkg:maven/jakarta.jms/jakarta.jms-api@3.1.0?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-jakarta-server@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/com.github.ben-manes.caffeine/caffeine@3.1.8?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-selector@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-journal@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-jdbc-store@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-lockmanager-api@2.33.0?type=jar", + "pkg:maven/org.jctools/jctools-core@4.0.2?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final?classifier=osx-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-classes-kqueue@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/org.apache.commons/commons-configuration2@2.9.0?type=jar", + "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar", + "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-server@2.33.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.github.ben-manes.caffeine/caffeine@3.1.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.jctools/jctools-core@4.0.2?type=jar", + "pkg:maven/org.apache.activemq/activemq-artemis-native@2.0.0?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-journal@2.33.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jctools/jctools-core@4.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.activemq/activemq-artemis-native@2.0.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-journal@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "pkg:maven/commons-beanutils/commons-beanutils@1.9.4?type=jar", + "pkg:maven/org.apache.commons/commons-dbcp2@2.12.0?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-jdbc-store@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-pool2@2.12.0?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/org.apache.commons/commons-dbcp2@2.12.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.activemq/artemis-lockmanager-api@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/org.apache.commons/commons-text@1.12.0.redhat-00001?type=jar", + "pkg:maven/commons-logging/commons-logging@1.2?type=jar" + ], + "ref": "pkg:maven/org.apache.commons/commons-configuration2@2.9.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar" + ], + "ref": "pkg:maven/org.apache.commons/commons-text@1.12.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.activemq/artemis-core-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.apache.activemq/artemis-commons@2.33.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar", + "pkg:maven/org.jgroups/jgroups@5.3.2.Final?type=jar" + ], + "ref": "pkg:maven/org.apache.activemq/artemis-jakarta-service-extensions@2.33.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-jms@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-aws2-s3-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-aws2-s3@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-aws2-s3@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-aws2-s3-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/software.amazon.awssdk/s3@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/apache-client@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-aws2-s3@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/aws-xml-protocol@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/protocol-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/arns@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/crt-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-aws@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/auth@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/regions@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/aws-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/json-utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/endpoints-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/apache-client@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/netty-nio-client@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/s3@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/aws-query-protocol@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/protocol-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/aws-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/aws-xml-protocol@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/protocol-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/aws-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/aws-query-protocol@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/protocol-core@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/endpoints-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-aws@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/retries@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/endpoints-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/http-auth-aws@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/checksums-spi@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/checksums@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/retries@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/regions@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/auth@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/endpoints-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/retries-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/retries@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.eventstream/eventstream@1.0.1.redhat-00002?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/aws-core@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/json-utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/regions@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/third-party-jackson-core@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/json-utils@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/software.amazon.awssdk/third-party-jackson-core@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/sdk-core@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/regions@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/profiles@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/json-utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-aws@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-aws-eventstream@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.eventstream/eventstream@1.0.1.redhat-00002?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/auth@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.eventstream/eventstream@1.0.1.redhat-00002?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/http-auth-aws-eventstream@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/software.amazon.eventstream/eventstream@1.0.1.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-auth-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/identity-spi@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/http-auth@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/arns@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/crt-core@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/apache-client@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar" + ], + "ref": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/software.amazon.awssdk/annotations@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/http-client-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/utils@2.27.19.redhat-00001?type=jar", + "pkg:maven/software.amazon.awssdk/metrics-spi@2.27.19.redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/software.amazon.awssdk/netty-nio-client@2.27.19.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-servicebus@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-eventhubs@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-azure-servicebus-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-endpointdsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-servicebus@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-azure-servicebus@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-azure-servicebus-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/com.azure/azure-messaging-servicebus@7.17.3?type=jar", + "pkg:maven/com.azure/azure-identity@1.13.2?type=jar", + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-azure-servicebus@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.azure/azure-xml@1.1.0?type=jar", + "pkg:maven/com.azure/azure-core-amqp@2.9.8?type=jar", + "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-messaging-servicebus@7.17.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-json@1.2.0?type=jar", + "pkg:maven/com.azure/azure-xml@1.1.0?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/io.projectreactor/reactor-core@3.6.12?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-core@1.51.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.azure/azure-json@1.2.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.azure/azure-xml@1.1.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/io.projectreactor/reactor-core@3.6.12?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.microsoft.azure/qpid-proton-j-extensions@1.2.5?type=jar", + "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-core-amqp@2.9.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.qpid/proton-j@0.34.1.redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/com.microsoft.azure/qpid-proton-j-extensions@1.2.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final?classifier=osx-x86_64&type=jar", + "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?type=jar", + "pkg:maven/io.projectreactor.netty/reactor-netty-http@1.1.22?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-tcnative-classes@2.0.66.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-x86_64&type=jar", + "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-aarch_64&type=jar", + "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-x86_64&type=jar", + "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-aarch_64&type=jar", + "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=windows-x86_64&type=jar" + ], + "ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-tcnative-classes@2.0.66.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-x86_64&type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=linux-aarch_64&type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-x86_64&type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=osx-aarch_64&type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.netty/netty-tcnative-boringssl-static@2.0.66.Final?classifier=windows-x86_64&type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-http@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns-native-macos@4.1.114.Final?classifier=osx-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.projectreactor.netty/reactor-netty-core@1.1.24?type=jar", + "pkg:maven/io.projectreactor/reactor-core@3.6.12?type=jar" + ], + "ref": "pkg:maven/io.projectreactor.netty/reactor-netty-http@1.1.22?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-resolver-dns-classes-macos@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-resolver-dns-native-macos@4.1.114.Final?classifier=osx-x86_64&type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-resolver-dns-classes-macos@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns-native-macos@4.1.114.Final?classifier=osx-x86_64&type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.projectreactor/reactor-core@3.6.12?type=jar" + ], + "ref": "pkg:maven/io.projectreactor.netty/reactor-netty-core@1.1.24?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar", + "pkg:maven/com.azure/azure-json@1.2.0?type=jar", + "pkg:maven/com.microsoft.azure/msal4j@1.17.1.redhat-00001?type=jar", + "pkg:maven/com.microsoft.azure/msal4j-persistence-extension@1.3.0?type=jar", + "pkg:maven/net.java.dev.jna/jna-platform@5.13.0?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-identity@1.13.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.nimbusds/oauth2-oidc-sdk@11.18?type=jar", + "pkg:maven/net.minidev/json-smart@2.5.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.microsoft.azure/msal4j@1.17.1.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar", + "pkg:maven/com.nimbusds/content-type@2.3?type=jar", + "pkg:maven/net.minidev/json-smart@2.5.1?type=jar", + "pkg:maven/com.nimbusds/lang-tag@1.7?type=jar", + "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.40?type=jar" + ], + "ref": "pkg:maven/com.nimbusds/oauth2-oidc-sdk@11.18?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.nimbusds/content-type@2.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/net.minidev/accessors-smart@2.5.1?type=jar" + ], + "ref": "pkg:maven/net.minidev/json-smart@2.5.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.ow2.asm/asm@9.7.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/net.minidev/accessors-smart@2.5.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.ow2.asm/asm@9.7.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.nimbusds/lang-tag@1.7?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.40?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.microsoft.azure/msal4j@1.17.1.redhat-00001?type=jar", + "pkg:maven/net.java.dev.jna/jna@5.13.0?type=jar", + "pkg:maven/net.java.dev.jna/jna-platform@5.13.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/com.microsoft.azure/msal4j-persistence-extension@1.3.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/net.java.dev.jna/jna@5.13.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/net.java.dev.jna/jna@5.13.0?type=jar" + ], + "ref": "pkg:maven/net.java.dev.jna/jna-platform@5.13.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel/camel-endpointdsl@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-endpointdsl-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-endpointdsl@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-azure-eventhubs-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-endpointdsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-azure-eventhubs@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-azure-eventhubs@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-azure-eventhubs-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/com.azure/azure-messaging-eventhubs@5.18.7?type=jar", + "pkg:maven/com.azure/azure-messaging-eventhubs-checkpointstore-blob@1.19.7?type=jar", + "pkg:maven/com.azure/azure-identity@1.13.2?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-azure-eventhubs@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.azure/azure-core-amqp@2.9.8?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-messaging-eventhubs@5.18.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-messaging-eventhubs@5.18.7?type=jar", + "pkg:maven/com.azure/azure-storage-blob@12.27.1?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-messaging-eventhubs-checkpointstore-blob@1.19.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar", + "pkg:maven/com.azure/azure-storage-common@12.26.1?type=jar", + "pkg:maven/com.azure/azure-storage-internal-avro@12.12.1?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-storage-blob@12.27.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.azure/azure-core-http-netty@1.15.3?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-storage-common@12.26.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1?type=jar", + "pkg:maven/com.fasterxml.woodstox/woodstox-core@7.0.0?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.codehaus.woodstox/stax2-api@4.2.1?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.woodstox/woodstox-core@7.0.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.azure/azure-core@1.51.0?type=jar", + "pkg:maven/com.azure/azure-storage-common@12.26.1?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-xml@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.azure/azure-storage-internal-avro@12.12.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-endpointdsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-endpointdsl@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-fhir-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-hl7-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/ca.uhn.hapi/hapi-structures-v24@2.5.1.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-fhir@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-fhir-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.commons/commons-text@1.12.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-client@7.4.5.redhat-00001?type=jar", + "pkg:maven/org.apache.camel/camel-fhir-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r5@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r4@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu3@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2.1@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-hl7org-dstu2@7.4.5.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-fhir@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar", + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.slf4j/jcl-over-slf4j@2.0.16?type=jar", + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00018?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00018?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.23.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.slf4j/jcl-over-slf4j@2.0.16?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-context@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-context@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-client@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.commons/commons-text@1.12.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-fhir-api@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r5@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-caching-api@7.4.5.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r5@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/com.ibm.icu/icu4j@72.1.0.redhat-00004?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.ibm.icu/icu4j@72.1.0.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.37.3.redhat-00001?type=jar", + "pkg:maven/net.sourceforge.plantuml/plantuml-mit@1.2023.9?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r5@6.4.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.nimbusds/nimbus-jose-jwt@9.37.3.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/net.sourceforge.plantuml/plantuml-mit@1.2023.9?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-caching-api@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r4@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-caching-api@7.4.5.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-r4@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.r4@6.4.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu3@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-caching-api@7.4.5.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu3@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu3@6.4.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2016may@6.4.0.redhat-00001?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-dstu2.1@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/org.ogce/xpp3@1.1.6?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2016may@6.4.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/junit/junit@4.13.2?type=jar", + "pkg:maven/jakarta-regexp/jakarta-regexp@1.4?type=jar" + ], + "ref": "pkg:maven/org.ogce/xpp3@1.1.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar" + ], + "ref": "pkg:maven/junit/junit@4.13.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar" + ], + "ref": "pkg:maven/org.hamcrest/hamcrest-core@2.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.hamcrest/hamcrest@2.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta-regexp/jakarta-regexp@1.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2@6.4.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@2.4.0?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-structures-hl7org-dstu2@7.4.5.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi.fhir/hapi-fhir-base@7.4.5.redhat-00001?type=jar", + "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.utilities@6.4.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi.fhir/org.hl7.fhir.dstu2@6.4.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-hl7@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel/camel-netty@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-hl7-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/ca.uhn.hapi/hapi-base@2.5.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-hl7@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi/hapi-base@2.5.1.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-kqueue@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-pool2@2.12.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-netty@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.114.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/ca.uhn.hapi/hapi-base@2.5.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/ca.uhn.hapi/hapi-structures-v24@2.5.1.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-fhir-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-csv-starter@4.8.0?type=jar", + "pkg:maven/ca.uhn.hapi/hapi-structures-v24@2.5.1.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-fhir-auth-tx@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-csv@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-csv-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.commons/commons-csv@1.11.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-csv@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar" + ], + "ref": "pkg:maven/org.apache.commons/commons-csv@1.11.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-netty-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-health-checks@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-netty@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-netty-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-server@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-client@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-camel-server@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-camel-server@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-client@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-server@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-platform-http@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-platform-http@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-client@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ssl-camel-server@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-base@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-undertow@4.8.0?type=jar", + "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-base@4.8.0?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0?type=jar", + "pkg:maven/org.apache.camel/camel-http-base@4.8.0?type=jar", + "pkg:maven/io.undertow/undertow-core@2.3.18.SP1-redhat-00001?type=jar", + "pkg:maven/io.undertow/undertow-servlet@2.3.18.SP1-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-undertow@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-attachments@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-http-base@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kubernetes-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-camel-server@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-kubernetes@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.hibernate.validator/hibernate-validator@8.0.1.Final?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-kubernetes-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.fabric8/kubernetes-client@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-client@6.13.3.redhat-00002?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-kubernetes@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client-api@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-client@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-events@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-node@6.13.3.redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7.0.redhat-00006?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-client-api@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-events@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-node@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7.0.redhat-00006?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.yaml/snakeyaml@2.3?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client-api@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "pkg:maven/com.squareup.okhttp3/logging-interceptor@4.12.0?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.squareup.okio/okio@3.6.0?type=jar", + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk8@1.9.25?type=jar" + ], + "ref": "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.squareup.okio/okio-jvm@3.6.0?type=jar" + ], + "ref": "pkg:maven/com.squareup.okio/okio@3.6.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk8@1.9.25?type=jar", + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-common@1.9.25?type=jar" + ], + "ref": "pkg:maven/com.squareup.okio/okio-jvm@3.6.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.9.25?type=jar", + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk7@1.9.25?type=jar" + ], + "ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk8@1.9.25?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jetbrains/annotations@13.0?type=jar" + ], + "ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.9.25?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jetbrains/annotations@13.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib@1.9.25?type=jar" + ], + "ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk7@1.9.25?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-common@1.9.25?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "pkg:maven/org.jetbrains.kotlin/kotlin-stdlib-jdk8@1.9.25?type=jar" + ], + "ref": "pkg:maven/com.squareup.okhttp3/logging-interceptor@4.12.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-client-api@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-client@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client-api@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-operator@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-machine@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-tuned@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-console@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-hive@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-installer@6.13.3.redhat-00002?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-client-api@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-operator@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-machine@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-tuned@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-console@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-operator@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-hive@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-machine@6.13.3.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.3.redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-installer@6.13.3.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar" + ], + "ref": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/com.fasterxml/classmate@1.7.0?type=jar" + ], + "ref": "pkg:maven/org.hibernate.validator/hibernate-validator@8.0.1.Final?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.fasterxml/classmate@1.7.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kubernetes-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-http-ocp-ssl-client@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-infinispan-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.testcontainers/testcontainers@1.19.8?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-infinispan@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-infinispan@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-infinispan-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-infinispan-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.sshd/sshd-common@2.13.2?type=jar", + "pkg:maven/org.infinispan/infinispan-client-hotrod@15.0.8.Final-redhat-00002?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-client@15.0.8.Final-redhat-00002?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-infinispan@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar", + "pkg:maven/org.infinispan/infinispan-query-dsl@15.0.8.Final-redhat-00002?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-infinispan-common@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@5.0.8.Final-redhat-00001?type=jar", + "pkg:maven/com.github.ben-manes.caffeine/caffeine@3.1.8?type=jar", + "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.9?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-processor@5.0.8.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.infinispan.protostream/protostream-types@5.0.8.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.infinispan.protostream/protostream-processor@5.0.8.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.9?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar" + ], + "ref": "pkg:maven/org.infinispan/infinispan-query-dsl@15.0.8.Final-redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.slf4j/jcl-over-slf4j@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.sshd/sshd-common@2.13.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.114.Final-redhat-00001?type=jar", + "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.9?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.114.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/org.infinispan/infinispan-client-hotrod@15.0.8.Final-redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-permission@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@2.4.2.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final?type=jar" + ], + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@2.4.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-commons@15.0.8.Final-redhat-00002?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@5.0.8.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@5.0.8.Final-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.infinispan/infinispan-remote-query-client@15.0.8.Final-redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/junit/junit@4.13.2?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar", + "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "pkg:maven/com.github.docker-java/docker-java-api@3.3.6?type=jar", + "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.testcontainers/testcontainers@1.19.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar" + ], + "ref": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/com.github.docker-java/docker-java-api@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-transport@3.3.6?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/net.java.dev.jna/jna@5.13.0?type=jar" + ], + "ref": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.3.6?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.github.docker-java/docker-java-transport@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jira-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jira@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-jira@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-jira-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar", + "pkg:maven/com.google.oauth-client/google-oauth-client@1.36.0?type=jar", + "pkg:maven/com.atlassian.sal/sal-api@5.1.4?type=jar", + "pkg:maven/com.atlassian.jira/jira-rest-java-client-api@6.0.1.redhat-00001?type=jar", + "pkg:maven/com.atlassian.jira/jira-rest-java-client-core@6.0.1.redhat-00001?type=jar", + "pkg:maven/io.atlassian.fugue/fugue@6.1.0.redhat-00002?type=jar", + "pkg:maven/org.codehaus.jettison/jettison@1.5.4?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jira@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.google.http-client/google-http-client@1.43.3?type=jar", + "pkg:maven/com.google.http-client/google-http-client-gson@1.43.3?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + ], + "ref": "pkg:maven/com.google.oauth-client/google-oauth-client@1.36.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.14.redhat-00012?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.23.0.redhat-00002?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "pkg:maven/io.opencensus/opencensus-api@0.31.1?type=jar", + "pkg:maven/io.opencensus/opencensus-contrib-http-util@0.31.1?type=jar" + ], + "ref": "pkg:maven/com.google.http-client/google-http-client@1.43.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-context@1.66.0?type=jar" + ], + "ref": "pkg:maven/io.opencensus/opencensus-api@0.31.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opencensus/opencensus-api@0.31.1?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + ], + "ref": "pkg:maven/io.opencensus/opencensus-contrib-http-util@0.31.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.google.http-client/google-http-client@1.43.3?type=jar", + "pkg:maven/com.google.code.gson/gson@2.10.1?type=jar" + ], + "ref": "pkg:maven/com.google.http-client/google-http-client-gson@1.43.3?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.atlassian.sal/sal-api@5.1.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.atlassian.util.concurrent/atlassian-util-concurrent@4.0.1?type=jar", + "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-api@4.0.1?type=jar", + "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar" + ], + "ref": "pkg:maven/com.atlassian.jira/jira-rest-java-client-api@6.0.1.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.atlassian.util.concurrent/atlassian-util-concurrent@4.0.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-api@4.0.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.atlassian.jira/jira-rest-java-client-api@6.0.1.redhat-00001?type=jar", + "pkg:maven/org.glassfish.jersey.core/jersey-client@3.1.9?type=jar", + "pkg:maven/org.glassfish.jersey.media/jersey-media-json-jettison@3.1.9?type=jar", + "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar", + "pkg:maven/com.atlassian.event/atlassian-event@6.0.0?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-library@4.0.1?type=jar", + "pkg:maven/io.atlassian.util.concurrent/atlassian-util-concurrent@4.0.1?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar" + ], + "ref": "pkg:maven/com.atlassian.jira/jira-rest-java-client-core@6.0.1.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@3.1.0?type=jar", + "pkg:maven/org.glassfish.jersey.core/jersey-common@3.1.9?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/org.glassfish.jersey.core/jersey-client@3.1.9?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@3.1.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@3.1.0?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar", + "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar" + ], + "ref": "pkg:maven/org.glassfish.jersey.core/jersey-common@3.1.9?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "pkg:maven/org.glassfish.jersey.core/jersey-common@3.1.9?type=jar", + "pkg:maven/org.glassfish.jersey.media/jersey-media-jaxb@3.1.9?type=jar" + ], + "ref": "pkg:maven/org.glassfish.jersey.media/jersey-media-json-jettison@3.1.9?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.glassfish.jersey.core/jersey-common@3.1.9?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar", + "pkg:maven/org.glassfish.hk2/osgi-resource-locator@1.0.3?type=jar" + ], + "ref": "pkg:maven/org.glassfish.jersey.media/jersey-media-jaxb@3.1.9?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.atlassian.event/atlassian-event@6.0.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-api@4.0.1?type=jar", + "pkg:maven/org.apache.httpcomponents/httpasyncclient-cache@4.1.5?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient-cache@4.5.14.redhat-00012?type=jar", + "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar", + "pkg:maven/org.apache.httpcomponents/httpmime@4.5.14?type=jar" + ], + "ref": "pkg:maven/com.atlassian.httpclient/atlassian-httpclient-library@4.0.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient-cache@4.5.14.redhat-00012?type=jar" + ], + "ref": "pkg:maven/org.apache.httpcomponents/httpasyncclient-cache@4.1.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.16?type=jar" + ], + "ref": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.16?type=jar" + ], + "ref": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.16?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.httpcomponents/httpclient-cache@4.5.14.redhat-00012?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.httpcomponents/httpmime@4.5.14?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.atlassian.fugue/fugue@6.1.0.redhat-00002?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.codehaus.jettison/jettison@1.5.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jolokia-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-jolokia@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-stream@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-stream@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.jolokia/jolokia-support-spring@2.1.2?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-jolokia-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-agent-jvm@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-support-jmx@2.1.2?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-support-spring@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-server-detector@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-serializer@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-jmx@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-discovery@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-history@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-jsr160@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-notif-pull@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-notif-sse@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-agent-jvm@2.1.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-server-detector@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-serializer@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-jmx@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-discovery@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-history@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-jmx@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-jsr160@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-notif-pull@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-service-notif-sse@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-json@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.1.2?type=jar", + "pkg:maven/org.jolokia/jolokia-service-serializer@2.1.2?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-support-jmx@2.1.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io-dsl@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xml-io-dsl@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.github.javafaker/javafaker@1.0.2?type=jar", + "pkg:maven/io.apicurio/apicurio-registry-serdes-avro-serde@2.4.3.Final-redhat-00006?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-avro@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-kafka@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-console@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.7.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-kafka@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-console@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.github.luben/zstd-jni@1.5.6-3?type=jar", + "pkg:maven/org.lz4/lz4-java@1.8.0?type=jar", + "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.kafka/kafka-clients@3.7.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.github.luben/zstd-jni@1.5.6-3?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.lz4/lz4-java@1.8.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/org.yaml/snakeyaml@1.23?classifier=android&type=jar", + "pkg:maven/com.github.mifmif/generex@1.0.2?type=jar" + ], + "ref": "pkg:maven/com.github.javafaker/javafaker@1.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.yaml/snakeyaml@1.23?classifier=android&type=jar" + }, + { + "dependsOn": [ + "pkg:maven/dk.brics.automaton/automaton@1.11-8?type=jar" + ], + "ref": "pkg:maven/com.github.mifmif/generex@1.0.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/dk.brics.automaton/automaton@1.11-8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.apicurio/apicurio-registry-serde-common@2.4.3.Final-redhat-00006?type=jar", + "pkg:maven/org.apache.avro/avro@1.12.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-registry-serdes-avro-serde@2.4.3.Final-redhat-00006?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.apicurio/apicurio-registry-schema-resolver@2.4.3.Final-redhat-00006?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.7.1?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-registry-serde-common@2.4.3.Final-redhat-00006?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.apicurio/apicurio-registry-client@2.4.3.Final-redhat-00006?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-registry-schema-resolver@2.4.3.Final-redhat-00006?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.apicurio/apicurio-registry-common@2.4.3.Final-redhat-00006?type=jar", + "pkg:maven/io.apicurio/apicurio-common-rest-client-jdk@0.1.17.Final-redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-registry-client@2.4.3.Final-redhat-00006?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.projectlombok/lombok@1.18.36?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-registry-common@2.4.3.Final-redhat-00006?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.projectlombok/lombok@1.18.36?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.apicurio/apicurio-common-rest-client-common@0.1.17.Final-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-common-rest-client-jdk@0.1.17.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.apicurio/apicurio-common-rest-client-common@0.1.17.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kafka-offsetrepository@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kamelet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-yaml-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jsonpath-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-kamelet-chucknorris@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-kamelet@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-kamelet-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-reifier@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-kamelet@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-yaml-dsl@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-yaml-dsl-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-yaml-dsl-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-yaml-dsl-deserializers@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-yaml-dsl@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7.0.redhat-00006?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-yaml-dsl-common@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-yaml-dsl-common@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-yaml-dsl-deserializers@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-jsonpath@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-jsonpath-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-file@4.8.0.redhat-00017?type=jar", + "pkg:maven/net.minidev/json-smart@2.5.1?type=jar", + "pkg:maven/com.jayway.jsonpath/json-path@2.9.0.redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jsonpath@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/net.minidev/json-smart@2.5.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/com.jayway.jsonpath/json-path@2.9.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-load-balancer-eip@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-validation@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel/camel-mail-microsoft-oauth@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-mail-exchange-oauth2@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@10.1.33?type=jar", + "pkg:maven/org.hibernate.validator/hibernate-validator@8.0.1.Final?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-validation@3.3.6?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-mail@4.8.0.redhat-00017?type=jar", + "pkg:maven/com.microsoft.azure/msal4j@1.17.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-mail-microsoft-oauth@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.eclipse.angus/angus-mail@2.0.3.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-mail@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar", + "pkg:maven/jakarta.mail/jakarta.mail-api@2.1.3?type=jar", + "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar" + ], + "ref": "pkg:maven/org.eclipse.angus/angus-mail@2.0.3.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/jakarta.mail/jakarta.mail-api@2.1.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-master-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-file-cluster-service-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-master@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-master@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-master-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-master@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-file-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-file-cluster-service-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-metrics-starter@4.8.0?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.0.1?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar", + "pkg:maven/io.dropwizard.metrics/metrics-graphite@4.2.27?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-metrics@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-metrics@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-metrics-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar", + "pkg:maven/io.dropwizard.metrics/metrics-jmx@4.2.27?type=jar", + "pkg:maven/io.dropwizard.metrics/metrics-json@4.2.27?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-metrics@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.dropwizard.metrics/metrics-jmx@4.2.27?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar" + ], + "ref": "pkg:maven/io.dropwizard.metrics/metrics-json@4.2.27?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.googlecode.json-simple/json-simple@1.1.1?type=jar" + ], + "ref": "pkg:maven/org.jolokia/jolokia-server-core@2.0.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.googlecode.json-simple/json-simple@1.1.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.dropwizard.metrics/metrics-core@4.2.27?type=jar", + "pkg:maven/com.rabbitmq/amqp-client@5.21.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.dropwizard.metrics/metrics-graphite@4.2.27?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.rabbitmq/amqp-client@5.21.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.jolokia/jolokia-server-core@2.0.1?type=jar", + "pkg:maven/io.prometheus.jmx/collector@1.0.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-tracer-initializer@1.2.1?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-metrics-starter@4.8.0?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-monitoring@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.prometheus/prometheus-metrics-core@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-model@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-exposition-formats@1.2.1?type=jar", + "pkg:maven/org.yaml/snakeyaml@2.3?type=jar" + ], + "ref": "pkg:maven/io.prometheus.jmx/collector@1.0.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel@1.2.1?type=jar", + "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel-agent@1.2.1?type=jar" + ], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-initializer@1.2.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar" + ], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel@1.2.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.prometheus/prometheus-metrics-tracer-common@1.2.1?type=jar" + ], + "ref": "pkg:maven/io.prometheus/prometheus-metrics-tracer-otel-agent@1.2.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-jdbc-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/dev.snowdrop/narayana-spring-boot-starter@3.2.0.redhat-00021?type=jar", + "pkg:maven/io.agroal/agroal-spring-boot-starter@2.5?type=jar", + "pkg:maven/org.postgresql/postgresql@42.7.4?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-muti-datasources-2pc@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@10.1.33?type=jar", + "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@10.1.33?type=jar", + "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@10.1.33?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@3.3.6?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@10.1.33?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@10.1.33?type=jar" + ], + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@10.1.33?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/com.zaxxer/HikariCP@5.1.0?type=jar", + "pkg:maven/org.springframework/spring-jdbc@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/com.zaxxer/HikariCP@5.1.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-jdbc@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-spring-jdbc@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-jdbc-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-jdbc@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework/spring-jdbc@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-spring-jdbc@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jdbc@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/dev.snowdrop/narayana-spring-boot-core@3.2.0.redhat-00021?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar" + ], + "ref": "pkg:maven/dev.snowdrop/narayana-spring-boot-starter@3.2.0.redhat-00021?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jboss.narayana.jta/narayana-jta@7.0.2.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@7.0.2.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar" + ], + "ref": "pkg:maven/dev.snowdrop/narayana-spring-boot-core@3.2.0.redhat-00021?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@4.0.0.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.lang-model@4.0.0.redhat-00001?type=jar", + "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@2.1.0.redhat-00002?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar", + "pkg:maven/org.jboss/jboss-transaction-spi@8.0.0.Final?type=jar", + "pkg:maven/jakarta.resource/jakarta.resource-api@2.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar", + "pkg:maven/org.jboss.invocation/jboss-invocation@2.0.0.Final-redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@3.0.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.jboss.narayana.jta/narayana-jta@7.0.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.enterprise/jakarta.enterprise.lang-model@4.0.0.redhat-00001?type=jar", + "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@2.1.0.redhat-00002?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@4.0.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.enterprise/jakarta.enterprise.lang-model@4.0.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@2.1.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.resource/jakarta.resource-api@2.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/org.jboss/jboss-transaction-spi@8.0.0.Final?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar" + ], + "ref": "pkg:maven/jakarta.resource/jakarta.resource-api@2.0.0.redhat-00002?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jboss.invocation/jboss-invocation@2.0.0.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@3.0.0.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@7.0.2.Final-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@2.5?type=jar", + "pkg:maven/io.agroal/agroal-pool@2.5?type=jar", + "pkg:maven/io.agroal/agroal-narayana@2.5?type=jar" + ], + "ref": "pkg:maven/io.agroal/agroal-spring-boot-starter@2.5?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.agroal/agroal-api@2.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@2.5?type=jar" + ], + "ref": "pkg:maven/io.agroal/agroal-pool@2.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@2.5?type=jar", + "pkg:maven/org.jboss/jboss-transaction-spi@8.0.0.Final?type=jar" + ], + "ref": "pkg:maven/io.agroal/agroal-narayana@2.5?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.checkerframework/checker-qual@3.42.0?type=jar" + ], + "ref": "pkg:maven/org.postgresql/postgresql@42.7.4?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.checkerframework/checker-qual@3.42.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service2@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service1@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-client@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-observation-starter@4.8.0?type=jar", + "pkg:maven/io.micrometer/micrometer-tracing-bridge-otel@1.3.6?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-observation@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-observation-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-tracing@4.8.0?type=jar", + "pkg:maven/io.micrometer/micrometer-core@1.13.8?type=jar", + "pkg:maven/io.micrometer/micrometer-tracing@1.3.6?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-observation@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-tracing@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar", + "pkg:maven/io.micrometer/context-propagation@1.1.2?type=jar", + "pkg:maven/aopalliance/aopalliance@1.0?type=jar" + ], + "ref": "pkg:maven/io.micrometer/micrometer-tracing@1.3.6?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.micrometer/context-propagation@1.1.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/aopalliance/aopalliance@1.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-tracing@1.3.6?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.23.1-alpha?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.33.3-alpha?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-extension-trace-propagators@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.micrometer/micrometer-tracing-bridge-otel@1.3.6?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.23.1-alpha?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.23.1-alpha?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.33.3?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.33.3-alpha?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.33.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-extension-trace-propagators@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-exporter-sender-okhttp@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api-incubator@1.41.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.41.0.redhat-00001?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-sender-okhttp@1.41.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service2@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-service1@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-loggingtracer@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-observation-client@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-openapi-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-console-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cli-connector-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-openapi-contract-first@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-rest-openapi@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-rest-openapi-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-rest@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-platform-http@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.parser.v3/swagger-parser-v3@2.1.22?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-rest-openapi@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-annotations-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/org.yaml/snakeyaml@2.3?type=jar", + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.swagger.core.v3/swagger-annotations-jakarta@2.2.23.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.swagger.parser.v3/swagger-parser-core@2.1.22?type=jar", + "pkg:maven/io.swagger.parser.v3/swagger-parser-safe-url-resolver@2.1.22?type=jar", + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar", + "pkg:maven/org.yaml/snakeyaml@2.3?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.swagger.parser.v3/swagger-parser-v3@2.1.22?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.swagger.parser.v3/swagger-parser-core@2.1.22?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.swagger.parser.v3/swagger-parser-safe-url-resolver@2.1.22?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-console@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-console-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-console@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-cli-connector@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-cli-connector-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-console@4.8.0?type=jar", + "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cli-connector@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-carbooking@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-flightbooking@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-hotelbooking@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-tripbooking@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-carbooking@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-opentelemetry@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-tracing@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.grpc/grpc-netty-shaded@1.66.0?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-context@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.23.1.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-opentelemetry@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-tracing@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.grpc/grpc-util@1.66.0?type=jar", + "pkg:maven/io.grpc/grpc-core@1.66.0?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.28.0?type=jar", + "pkg:maven/io.perfmark/perfmark-api@0.27.0?type=jar", + "pkg:maven/io.grpc/grpc-api@1.66.0?type=jar" + ], + "ref": "pkg:maven/io.grpc/grpc-netty-shaded@1.66.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.23.1.alpha-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-flightbooking@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-hotelbooking@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-seda-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-opentelemetry-tripbooking@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-paho-mqtt5-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-paho-mqtt5-shared-subscriptions@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-paho-mqtt5@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-paho-mqtt5-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.eclipse.paho/org.eclipse.paho.mqttv5.client@1.2.5.redhat-00003?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-paho-mqtt5@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.eclipse.paho/org.eclipse.paho.mqttv5.client@1.2.5.redhat-00003?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-platform-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-platform-http@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-pojo@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-quartz-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-quartz@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-quartz@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-quartz-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.quartz-scheduler/quartz@2.3.2?type=jar", + "pkg:maven/com.mchange/c3p0@0.10.1?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-quartz@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.mchange/mchange-commons-java@0.2.15?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.quartz-scheduler/quartz@2.3.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.mchange/mchange-commons-java@0.2.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.mchange/mchange-commons-java@0.2.15?type=jar" + ], + "ref": "pkg:maven/com.mchange/c3p0@0.10.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator-autoconfigure@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-amqp@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-rabbitmq-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rabbitmq@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-messaging@6.1.15?type=jar", + "pkg:maven/org.springframework.amqp/spring-rabbit@3.1.8?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-amqp@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.amqp/spring-amqp@3.1.8?type=jar", + "pkg:maven/com.rabbitmq/amqp-client@5.21.0?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-messaging@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "pkg:maven/io.micrometer/micrometer-observation@1.13.8?type=jar" + ], + "ref": "pkg:maven/org.springframework.amqp/spring-rabbit@3.1.8?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework.retry/spring-retry@2.0.10?type=jar" + ], + "ref": "pkg:maven/org.springframework.amqp/spring-amqp@3.1.8?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.springframework.retry/spring-retry@2.0.10?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-spring-rabbitmq@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-rabbitmq-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework.amqp/spring-rabbit@3.1.8?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-spring-rabbitmq@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-reactive-streams-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE-redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-reactive-streams@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-reactive-streams@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-reactive-streams-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-reactive-streams@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.4?type=jar" + ], + "ref": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-client@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service1@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service2@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-resilience4j-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-client@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-resilience4j@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-resilience4j-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-reifier@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.github.resilience4j/resilience4j-circuitbreaker@2.2.0.redhat-00002?type=jar", + "pkg:maven/io.github.resilience4j/resilience4j-bulkhead@2.2.0.redhat-00002?type=jar", + "pkg:maven/io.github.resilience4j/resilience4j-timelimiter@2.2.0.redhat-00002?type=jar", + "pkg:maven/io.vavr/vavr@0.10.4?type=jar", + "pkg:maven/io.vavr/vavr-match@0.10.4?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-resilience4j@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.github.resilience4j/resilience4j-core@2.2.0.redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.github.resilience4j/resilience4j-circuitbreaker@2.2.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.github.resilience4j/resilience4j-core@2.2.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.github.resilience4j/resilience4j-core@2.2.0.redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.github.resilience4j/resilience4j-bulkhead@2.2.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.github.resilience4j/resilience4j-core@2.2.0.redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/io.github.resilience4j/resilience4j-timelimiter@2.2.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.vavr/vavr-match@0.10.4?type=jar" + ], + "ref": "pkg:maven/io.vavr/vavr@0.10.4?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.vavr/vavr-match@0.10.4?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-resilience4j-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service1@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-resilience4j-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-resilience4j-service2@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-random@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-even@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-odd@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-opentelemetry@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-bean-validator@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.hibernate.validator/hibernate-validator@8.0.1.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar", + "pkg:maven/org.glassfish.expressly/expressly@5.0.0.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-bean-validator@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.el/jakarta.el-api@6.0.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.glassfish.expressly/expressly@5.0.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-spring-rest@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?classifier=tests&type=test-jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-cxf-rest@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-spring-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring-xml@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-spring-rest@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-client@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-features-logging@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-rest@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar", + "pkg:maven/com.fasterxml.woodstox/woodstox-core@7.0.0?type=jar", + "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.3.1?type=jar", + "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar", + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.3.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.activation/jakarta.activation-api@2.1.3?type=jar" + ], + "ref": "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@3.1.0?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-security@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-security@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-rs-client@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.ws/jakarta.xml.ws-api@4.0.2?type=jar", + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-features-logging@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar" + ], + "ref": "pkg:maven/jakarta.xml.ws/jakarta.xml.ws-api@4.0.2?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring-xml@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-spring-common@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxb@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-xml@4.8.0.redhat-00017?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-spring-xml@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar", + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xml-jaxb@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-xml@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.cxf/cxf-spring-boot-autoconfigure@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-client@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-validation@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxrs@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-spring-boot-autoconfigure@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxp@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?classifier=tests&type=test-jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-management@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-api@1.41.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.26.0.alpha-redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv-incubating@1.26.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-management@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.26.0.alpha-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv@1.26.0.alpha-redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.opentelemetry.semconv/opentelemetry-semconv-incubating@1.26.0.alpha-redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-minio-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-random@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-minio@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-minio-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.minio/minio@8.5.12.redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-minio@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.carrotsearch.thirdparty/simple-xml-safe@2.7.1?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.bouncycastle/bcprov-jdk18on@1.78?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.27.1.redhat-00001?type=jar", + "pkg:maven/commons-codec/commons-codec@1.16.1?type=jar", + "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5?type=jar" + ], + "ref": "pkg:maven/io.minio/minio@8.5.12.redhat-00001?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.carrotsearch.thirdparty/simple-xml-safe@2.7.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-even@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-common@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cxf-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-opentelemetry-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.cxf/cxf-integration-tracing-opentelemetry@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-rs-service-description@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-cxf-otel-odd@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-openapi-java-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.swagger.parser.v3/swagger-parser-v3@2.1.22?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-openapi-java-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0.redhat-00017?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.parser.v3/swagger-parser@2.1.22?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-joda@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.swagger.parser.v3/swagger-parser-v3@2.1.22?type=jar", + "pkg:maven/org.yaml/snakeyaml@2.3?type=jar", + "pkg:maven/commons-io/commons-io@2.16.1.redhat-00001?type=jar" + ], + "ref": "pkg:maven/io.swagger.parser.v3/swagger-parser@2.1.22?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/joda-time/joda-time@2.12.7.redhat-00002?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-joda@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-openapi-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-simple@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-rest@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-tooling-model@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util-json@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-platform-http@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-springdoc-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-rest-openapi-springdoc@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0?type=jar", + "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-ui@2.2.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-springdoc-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-models-jakarta@2.2.23.redhat-00001?type=jar", + "pkg:maven/io.swagger.parser.v3/swagger-parser@2.1.22?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-joda@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.jakarta.rs/jackson-jakarta-rs-json-provider@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-openapi-java@4.8.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.camel/camel-tooling-util@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-api@2.2.0?type=jar", + "pkg:maven/org.webjars/swagger-ui@5.2.0?type=jar" + ], + "ref": "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-ui@2.2.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springdoc/springdoc-openapi-starter-common@2.2.0?type=jar", + "pkg:maven/org.springframework/spring-webmvc@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springdoc/springdoc-openapi-starter-webmvc-api@2.2.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@3.3.6?type=jar", + "pkg:maven/io.swagger.core.v3/swagger-core-jakarta@2.2.23.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.springdoc/springdoc-openapi-starter-common@2.2.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.webjars/swagger-ui@5.2.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-route-reload@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel/camel-spring-xml@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-jaxb-dsl@4.8.0?type=jar", + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-xml-jaxb@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-xml-jaxb-dsl@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-engine-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-log-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-timer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-yaml-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-debug-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routes-configuration@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-spring-boot-engine-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-debug@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-debug-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-management@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-xml-io@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-debug@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-quartz-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-quartz-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-routetemplate-xml@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-app@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-flight@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-payment@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-train@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-util@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-management-api@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-model@4.8.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cloud@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-processor@4.8.0?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-model@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-api@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-util@4.8.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-core-processor@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-lra@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-core-engine@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-saga@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-lra@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-app@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-flight@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-payment@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-lra-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.activemq/artemis-jakarta-client@2.33.0?type=jar", + "pkg:maven/org.messaginghub/pooled-jms@3.1.7?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-saga-train@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-consumer@4.8.0.redhat-00001?type=jar", + "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-services@4.8.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall@4.8.0.redhat-00001?type=pom" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-consul-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-http-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-yaml-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-consumer@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-consul@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-consul-starter@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cloud@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cluster@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-health@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.kiwiproject/consul-client@1.4.1?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-consul@4.8.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.checkerframework/checker-qual@3.46.0?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/com.squareup.retrofit2/converter-jackson@2.11.0?type=jar", + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-guava@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.squareup.retrofit2/retrofit@2.11.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar" + ], + "ref": "pkg:maven/org.kiwiproject/consul-client@1.4.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.checkerframework/checker-qual@3.46.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.squareup.retrofit2/retrofit@2.11.0?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.squareup.retrofit2/converter-jackson@2.11.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar" + ], + "ref": "pkg:maven/com.squareup.retrofit2/retrofit@2.11.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.google.guava/guava@33.0.0.jre-redhat-00002?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-guava@2.17.2.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-servicecall-services@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-bean-validator-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-cxf-soap-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jackson-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-soap-cxf@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-spring-soap@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-cxf-soap-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-cxf-spring-transport@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-soap@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-spring-soap@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-cxf-spring-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-transport@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-spring-transport@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-transport@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.soap/jakarta.xml.soap-api@3.0.2?type=jar", + "pkg:maven/jakarta.jws/jakarta.jws-api@3.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.xml.ws/jakarta.xml.ws-api@4.0.2?type=jar", + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-wsdl@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.jws/jakarta.jws-api@3.0.0.redhat-00002?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar", + "pkg:maven/org.ow2.asm/asm@9.7.0.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-wsdl@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-wsdl@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-attachments@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-common@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-cxf-transport@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-http-base@4.8.0.redhat-00017?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@6.0.0?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-features-logging@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-cxf-soap@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/xml-resolver/xml-resolver@1.2.0.redhat-12?type=jar", + "pkg:maven/org.ow2.asm/asm@9.7.0.redhat-00001?type=jar", + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.eclipse.angus/angus-activation@2.0.2?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/xml-resolver/xml-resolver@1.2.0.redhat-12?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-wsdl@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.eclipse.angus/angus-mail@2.0.3.redhat-00001?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar", + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.neethi/neethi@3.2.0.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.neethi/neethi@3.2.0.redhat-00004?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.apache.cxf/cxf-spring-boot-autoconfigure@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-transports-http@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/org.apache.cxf/cxf-rt-features-metrics@4.0.5.fuse-redhat-00019?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@3.0.2?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-validation@3.3.6?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-spring-boot-starter-jaxws@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.xml.ws/jakarta.xml.ws-api@4.0.2?type=jar", + "pkg:maven/org.apache.cxf/cxf-core@4.0.5.fuse-redhat-00019?type=jar" + ], + "ref": "pkg:maven/org.apache.cxf/cxf-rt-features-metrics@4.0.5.fuse-redhat-00019?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-splitter-eip@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@3.3.6?type=jar", + "pkg:maven/dev.snowdrop/narayana-spring-boot-starter@3.2.0.redhat-00021?type=jar", + "pkg:maven/dev.snowdrop/narayana-spring-boot-recovery-controller@3.2.0.redhat-00021?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jpa-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/com.mysql/mysql-connector-j@8.3.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-artemis@3.3.6?type=jar", + "pkg:maven/io.agroal/agroal-spring-boot-starter@2.5?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-autoconfigure@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-aop@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "pkg:maven/org.hibernate.orm/hibernate-core@6.5.3.Final?type=jar", + "pkg:maven/org.springframework.data/spring-data-jpa@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-aspects@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "pkg:maven/org.aspectj/aspectjweaver@1.9.22.1?type=jar" + ], + "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-aop@3.3.6?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.aspectj/aspectjweaver@1.9.22.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/jakarta.persistence/jakarta.persistence-api@3.1.0?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@2.0.1?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.3.Final?type=jar", + "pkg:maven/org.hibernate.common/hibernate-commons-annotations@6.0.6.Final?type=jar", + "pkg:maven/io.smallrye/jandex@3.1.2?type=jar", + "pkg:maven/com.fasterxml/classmate@1.7.0?type=jar", + "pkg:maven/net.bytebuddy/byte-buddy@1.14.19?type=jar", + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@4.0.2?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@4.0.5?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@2.0.1?type=jar", + "pkg:maven/org.antlr/antlr4-runtime@4.13.0?type=jar" + ], + "ref": "pkg:maven/org.hibernate.orm/hibernate-core@6.5.3.Final?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/jakarta.persistence/jakarta.persistence-api@3.1.0?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@6.0.6.Final?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/io.smallrye/jandex@3.1.2?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/net.bytebuddy/byte-buddy@1.14.19?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.antlr/antlr4-runtime@4.13.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.data/spring-data-commons@3.3.6?type=jar", + "pkg:maven/org.springframework/spring-orm@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-context@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-aop@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.antlr/antlr4-runtime@4.13.0?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@2.1.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.springframework.data/spring-data-jpa@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar" + ], + "ref": "pkg:maven/org.springframework.data/spring-data-commons@3.3.6?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-core@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-jdbc@6.1.15?type=jar", + "pkg:maven/org.springframework/spring-tx@6.1.15?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-orm@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.aspectj/aspectjweaver@1.9.22.1?type=jar" + ], + "ref": "pkg:maven/org.springframework/spring-aspects@6.1.15?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/openshift-client@6.13.1?type=jar" + ], + "ref": "pkg:maven/dev.snowdrop/narayana-spring-boot-recovery-controller@3.2.0.redhat-00021?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-client-api@6.13.1?type=jar", + "pkg:maven/com.github.mifmif/generex@1.0.2?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-client@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client-api@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.1?type=jar", + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-client@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-events@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-node@6.13.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-client-api@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.slf4j/slf4j-api@2.0.16?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-gatewayapi@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-resource@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-batch@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-certificates@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-coordination@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-discovery@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-events@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-extensions@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-networking@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-metrics@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-policy@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-scheduling@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-storageclass@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-model-node@6.13.1?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.snakeyaml/snakeyaml-engine@2.7?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client-api@6.13.1?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp@4.12.0?type=jar", + "pkg:maven/com.squareup.okhttp3/logging-interceptor@4.12.0?type=jar" + ], + "ref": "pkg:maven/io.fabric8/kubernetes-httpclient-okhttp@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client-api@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-operator@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-machine@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-tuned@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-console@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-hive@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-installer@6.13.1?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-client-api@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-operator@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apps@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-operatorhub@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-machine@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-whereabouts@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-monitoring@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-tuned@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-console@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-machineconfig@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-operator@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-miscellaneous@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-hive@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apiextensions@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-config@6.13.1?type=jar", + "pkg:maven/io.fabric8/openshift-model-machine@6.13.1?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@6.13.1?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/io.fabric8/openshift-model-installer@6.13.1?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-jpa@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-jpa-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-languages@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-spring@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.springframework/spring-orm@6.1.15?type=jar", + "pkg:maven/jakarta.persistence/jakarta.persistence-api@3.1.0?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-jpa@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/com.mysql/mysql-connector-j@8.3.0?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-data-jpa@3.3.6?type=jar", + "pkg:maven/dev.snowdrop/narayana-spring-boot-starter@3.2.0.redhat-00021?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jpa-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/com.mysql/mysql-connector-j@8.3.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jms-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-artemis@3.3.6?type=jar", + "pkg:maven/io.agroal/agroal-spring-boot-starter@2.5?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/spring-boot-jta-jpa-xml@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-rest-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-jdbc-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-direct-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.postgresql/postgresql@42.7.4?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-spring-jdbc@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-kafka-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-strimzi@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.jolokia/jolokia-server-core@2.0.1?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-undertow-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-supervising-route-controller@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-jdbc@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@3.3.6?type=jar", + "pkg:maven/org.apache.tomcat/tomcat-jdbc@10.1.33?type=jar", + "pkg:maven/org.postgresql/postgresql@42.7.4?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-jdbc-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-tomcat-jdbc@4.8.0.redhat-00001?type=war" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.tomcat/tomcat-juli@10.1.33?type=jar" + ], + "ref": "pkg:maven/org.apache.tomcat/tomcat-jdbc@10.1.33?type=jar" + }, + { + "dependsOn": [], + "ref": "pkg:maven/org.apache.tomcat/tomcat-juli@10.1.33?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-type-converter@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-validator@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-telegram-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-webhook-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-servlet-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-webhook@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-telegram@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-telegram-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-webhook@4.8.0.redhat-00017?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.17.2.redhat-00004?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.14.0?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.17.2.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.17.2.redhat-00004?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-telegram@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-webhook@4.8.0.redhat-00017?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter@3.3.6?type=jar", + "pkg:maven/org.apache.camel/camel-webhook@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-core-starter@4.8.0.redhat-00022?type=jar" + ], + "ref": "pkg:maven/org.apache.camel.springboot/camel-webhook-starter@4.8.0.redhat-00022?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-amqp-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-jsonpath-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-widget-gadget@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-xml-io-dsl-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.springframework.boot/spring-boot-starter-web@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-undertow@3.3.6?type=jar", + "pkg:maven/org.springframework.boot/spring-boot-starter-actuator@3.3.6?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-spring-boot-xml-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-stream-starter@4.8.0?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-management-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/org.apache.camel.springboot/camel-micrometer-starter@4.8.0.redhat-00022?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.13.8?type=jar", + "pkg:maven/org.apache.camel.springboot/spring-boot@4.8.0.redhat-00022?type=pom" + ], + "ref": "pkg:maven/org.apache.camel.springboot.example/camel-example-spring-boot-xml-import@4.8.0.redhat-00001?type=jar" + }, + { + "dependsOn": [ + "pkg:maven/org.apache.camel/camel-support@4.8.0.redhat-00017?type=jar", + "pkg:maven/org.apache.camel/camel-core-model@4.8.0.redhat-00017?type=jar" + ], + "ref": "pkg:maven/org.apache.camel/camel-dsl-support@4.8.0?type=jar" + } + ], + "metadata": { + "component": { + "bom-ref": "pkg:maven/org.apache.camel.springboot.example/examples@4.8.0.redhat-00001?type=pom", + "description": "Camel Examples", + "externalReferences": [ + { + "type": "website", + "url": "https://camel.apache.org/examples" + }, + { + "type": "distribution", + "url": "https://repository.apache.org/service/local/staging/deploy/maven2" + }, + { + "type": "issue-tracker", + "url": "https://issues.apache.org/jira/browse/CAMEL" + }, + { + "type": "mailing-list", + "url": "dev-subscribe@camel.apache.org" + }, + { + "type": "vcs", + "url": "https://gitbox.apache.org/repos/asf?p=camel-spring-boot.git;a=summary/examples" + } + ], + "group": "org.apache.camel.springboot.example", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "name": "examples", + "publisher": "The Apache Software Foundation", + "purl": "pkg:maven/org.apache.camel.springboot.example/examples@4.8.0.redhat-00001?type=pom", + "type": "library", + "version": "4.8.0.redhat-00001" + }, + "properties": [ + { + "name": "maven.goal", + "value": "makeAggregateBom" + }, + { + "name": "maven.scopes", + "value": "compile,provided,runtime,system" + }, + { + "name": "maven.reproducible", + "value": "enabled" + } + ], + "timestamp": "2024-12-02T15:28:14Z", + "tools": [ + { + "hashes": [ + { + "alg": "MD5", + "content": "8e595cdb67f17e4b41e046456970591d" + }, + { + "alg": "SHA-1", + "content": "69e8ca804520d09ce4657e7235bae84d01cbffa6" + }, + { + "alg": "SHA-256", + "content": "aa09074fe5aa403c008cd4fc7ef8ce41cd244489337f16b3e91a3914158a4db8" + }, + { + "alg": "SHA-512", + "content": "1488a8112da8e675813d7585f57c5efb178aed32901118186ee12d0e4ae3d19c53774c7f860bf70d17d70f050119b69443a2637cf641675b4b5d9cdcdd69b89b" + }, + { + "alg": "SHA-384", + "content": "b097295dfbf10887abc6eec58d4d0822cde5a73d1f5c1cf183a57bf569016ad5ced9d34efae3e574d82bb62837540c6c" + }, + { + "alg": "SHA3-384", + "content": "289f9520bd73a2031276248a6ef8f0891c691062c2d1ea86a2bc9ea8db2c52377d92a53be9957179e71aee3deda26a8c" + }, + { + "alg": "SHA3-256", + "content": "32b50a7efe5d491a4039c0017eca3cf49d98b55fc66d06b3dd06209487323474" + }, + { + "alg": "SHA3-512", + "content": "1daf813da53e5d5cda4d0302ff3a5e388aa45d96ebe6dcbe240f35d33f14b1e6390f6bbe7f21f3ed8cf96ebd9f5516a08b18487b7339715109c81cebfc1563df" + } + ], + "name": "CycloneDX Maven plugin", + "vendor": "OWASP Foundation", + "version": "2.7.9" + } + ] + }, + "serialNumber": "urn:uuid:81ca43fe-07a1-35d2-b18d-ee52ad97342e", + "specVersion": "1.4", + "version": 1 +} \ No newline at end of file diff --git a/e2e/tests/common/assets/sbom/exhort_mvn.json.bz2 b/e2e/tests/common/assets/sbom/exhort_mvn.json.bz2 new file mode 100644 index 00000000..3281817c Binary files /dev/null and b/e2e/tests/common/assets/sbom/exhort_mvn.json.bz2 differ diff --git a/e2e/tests/common/assets/sbom/quarkus-bom-3.8.3.redhat-00003.json.bz2 b/e2e/tests/common/assets/sbom/quarkus-bom-3.8.3.redhat-00003.json.bz2 new file mode 100644 index 00000000..90086928 Binary files /dev/null and b/e2e/tests/common/assets/sbom/quarkus-bom-3.8.3.redhat-00003.json.bz2 differ diff --git a/e2e/tests/common/constants.ts b/e2e/tests/common/constants.ts index 8d203bf3..ad7dfcf2 100644 --- a/e2e/tests/common/constants.ts +++ b/e2e/tests/common/constants.ts @@ -68,8 +68,10 @@ export const ADVISORY_FILES = [ "cve-2022-45787.json.bz2", "CVE-2023-0044-cve.json.bz2", "cve-2023-0044.json.bz2", - "CVE-2023-0481-cve.json.bz2", - "cve-2023-0481.json.bz2", + "GHSA-j75r-vf64-6rrh.json.bz2", + "RHSA-2023_3809.json.bz2", + "RHSA-CVE-2023-0481.json.bz2", + "CVE-2023-0481.json.bz2", "CVE-2023-0482-cve.json.bz2", "cve-2023-0482.json.bz2", "CVE-2023-1108-cve.json.bz2", @@ -124,4 +126,33 @@ export const ADVISORY_FILES = [ "cve-2023-4853.json.bz2", "CVE-2024-26308-cve.json.bz2", "cve-2024-26308.json.bz2", + "GHSA-5jpm-x58v-624v.json.bz2", + "RHSA-2024_2106.json.bz2", + "RHSA-CVE-2024-29025.json.bz2", + "RHSA-2024_2705.json.bz2", + "CVE-2024-29025.json.bz2", + "CVE-2025-48795.json.bz2", + "CVE-2025-49574.json.bz2", + "CVE-2025-55668.json.bz2", + "GHSA-7v6m-28jr-rg84.json.bz2", + "GHSA-j288-q9x7-2f5v.json.bz2", + "GHSA-wxr5-93ph-8wr9.json.bz2", + "CVE-2025-35036.json.bz2", + "CVE-2025-48924.json.bz2", + "CVE-2025-52520.json.bz2", + "GHSA-23hv-mwm6-g8jf.json.bz2", + "GHSA-9623-mj7j-p9v4.json.bz2", + "GHSA-prj3-ccx8-p6x4.json.bz2", + "CVE-2025-41242.json.bz2", + "CVE-2025-48988.json.bz2", + "CVE-2025-53506.json.bz2", + "GHSA-25xr-qj8w-c4vf.json.bz2", + "GHSA-gqp3-2cvr-x8m3.json.bz2", + "GHSA-wf8f-6423-gfxg.json.bz2", + "CVE-2025-48734.json.bz2", + "CVE-2025-48989.json.bz2", + "CVE-2025-55163.json.bz2", + "GHSA-36wv-v2qp-v4g4.json.bz2", + "GHSA-h3gc-qfqq-6h8f.json.bz2", + "GHSA-wr62-c79q-cv37.json.bz2", ]; diff --git a/e2e/tests/ui/features/@sbom-scan/scan-sbom.feature b/e2e/tests/ui/features/@sbom-scan/scan-sbom.feature new file mode 100644 index 00000000..639a883a --- /dev/null +++ b/e2e/tests/ui/features/@sbom-scan/scan-sbom.feature @@ -0,0 +1,214 @@ +Feature: Scan SBOM - To Generate Vulnerability Report for SBOM + As an RHTPA user + I want to be able to scan an SBOM so that I can review the vulnerabilities within the SBOM without having to ingest + +Background: Authentication + Given User is authenticated + +Scenario: Verify Generate Vulnerability Report option + When User Navigates to SBOMs List page + When User Clicks Generate Vulnerability Button + Then The Application should navigate to Generate Vulnerability Report screen + Then The Page should contain Browse files option and instruction to Drag and drop files + +Scenario: Generate Vulnerability Report For SBOM without any vulnerabilities + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then "No Vulnerabilities found" header should be displayed + #Bug: TC-2985 + #Then "The "" was analyzed and found no vulnerabilities report" message should be displayed + Then "Try another file" button should be displayed + When User Clicks on "Try another file" button + Then Application navigates to Generate Vulnerability Report screen + Examples: + | fileName | filePath | + | example_product_quarkus.json.bz2 | /tests/common/assets/sbom/ | + | ubi9-minimal-9.3-1361.json.bz2 | /tests/common/assets/sbom/ | + +Scenario: Cancel Generate vulnerability report + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then The Page should have a spinner with "
" message and "" option while processing the SBOM + When User Clicks on "" link + Then Application navigates to Generate Vulnerability Report screen + Examples: + | fileName | filePath | header | cancelLabel | + | example_component_quarkus.json.bz2 | /tests/common/assets/sbom/ | Generating vulnerability report | Cancel Report | + +Scenario: Generate Vulnerability Report for supported SBOM file extensions + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + Examples: + | fileName | filePath | + | examples_sbom.json | /tests/common/assets/sbom/ | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | + +Scenario: Verify Generate Vulnerability Report Screen + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + Then The title should be Vulnerability report with text "This is a temporary vulnerability report" + Then Filtering drop down should be visible with drop down values "" + Then Tooltip on the "Published" column should display "The date when information about this vulnerability was first made available" + Then Tooltip on the "Updated" column should display "The date when information about this vulnerability was most recently revised" + Then "Actions" button should be visible with dropdown options "" + Examples: + | fileName | filePath | filters | ActionsOptions | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | Vulnerability ID, Importer, Severity | Generate new report, Download as CSV | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | Vulnerability ID, Importer, Severity | Generate new report, Download as CSV | + +Scenario: Verify Vulnerabilities on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + Then The Vulnerabilities on the Vulnerability ID column should match with "" + Examples: + | fileName | filePath | Vulnerabilities | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | CVE-2024-2700,CVE-2024-29025,CVE-2025-48924,CVE-2025-49574,CVE-2025-55163 | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | CVE-2022-45787,CVE-2023-0481,CVE-2023-1584,CVE-2023-4853,CVE-2024-2700,CVE-2024-29025,CVE-2025-48924,CVE-2025-48988,CVE-2025-48989,CVE-2025-49128,CVE-2025-49574,CVE-2025-52520,CVE-2025-53506,CVE-2025-55163,CVE-2025-55668 | + +Scenario: Verify Vulnerability Details on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + When User Applies "Vulnerability ID" filter with "" on the Vulnerability Report + When User Enters "" in the Vulnerability ID Textbox + When User Clicks on More option if visible on Severity column of the "" + # Bug: TC-3002 Importer value to Unknown + Then The Severity column of the "" should match with "" + Then The "Description" column of the "" should match with "" + Then The "Status" column of the "" should match with "" + Then The "Affected packages" column of the "" should match with "" + Then The "Published" column of the "" should match with "" + Then The "Updated" column of the "" should match with "" + Examples: + | fileName | filePath | Vulnerability | Description | severity:Importer | status | affectedcount | Published | Updated | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | CVE-2024-29025 | Netty HttpPostRequestDecoder can OOM | Medium(5.3): Unknown,Medium(5.3): Unknown,Medium(5.3): Unknown,Medium(5.3): Unknown | Affected | 1 | Mar 25, 2024 | Feb 13, 2025 | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | CVE-2023-0481 | In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() | Medium(5.3): Unknown,Low(3.3): Unknown,Medium(5.3): Unknown | Affected | 1 | Feb 24, 2023 | Mar 12, 2025 | + +Scenario: Verify Affected package list on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + When User Applies "Vulnerability ID" filter with "" on the Vulnerability Report + When User Enters "" in the Vulnerability ID Textbox + When User Clicks on Affected package count button of the "" + Then Affected Package table should expand + Then The "Type" column of the "" affected package should match with "" + Then The "Namespace" column of the "" affected package should match with "" + Then The "Name" column of the "" affected package should match with "" + Then The "Version" column of the "" affected package should match with "" + Then The "Path" column of the "" affected package should match with "" + Then The "Qualifiers" column of the "" affected package should match with "" + Examples: + | fileName | filePath | Vulnerability | Type | Namespace | Name | Version | Path | Qualifiers | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | CVE-2024-29025 | maven | io.netty | netty-codec-http | 4.1.107.Final-redhat-00001| |repository_url=https://maven.repository.redhat.com/ga/,type=jar | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | CVE-2023-0481 | maven | io.quarkus.resteasy.reactive | resteasy-reactive-common | 2.13.7.Final | | | + +Scenario: Verify Actions on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + When User Clicks on "Actions" button + Then The Actions dropdown should have options "Generate new report" and "Download as CSV" + When User Clicks on "Generate new report" option from the Actions dropdown + Then Application navigates to Generate Vulnerability Report screen + Examples: + | fileName | filePath | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | + + +Scenario: Verify Download as CSV on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + When User Clicks on "Actions" button + Then The Actions dropdown should have options "Generate new report" and "Download as CSV" + Then User Downloads CSV with default filename "" by clicking on "Download as CSV" option + Examples: + | fileName | filePath | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | + +Scenario: Verify Download and Leave on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + When User Enters "" in the Vulnerability ID Textbox + When User Clicks on "" from the Vulnerability ID column + Then A modal window should open with "Leave Vulnerability Report?" message + When User Downloads CSV with default filename "" and Leaves by clicking on "Download and Leave" button from the modal window + Then Application navigates to Vulnerability Explorer screen of "" + Examples: + | fileName | filePath | Vulnerability | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | CVE-2025-48924 | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | CVE-2023-1584 | + +Scenario: Verify Leave without Downloading on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + When User Enters "" in the Vulnerability ID Textbox + When User Clicks on "" from the Vulnerability ID column + Then A modal window should open with "Leave Vulnerability Report?" message + When User Clicks on "Leave without Downloading" button from the modal window + Then Application navigates to Vulnerability Explorer screen of "" + Examples: + | fileName | filePath | Vulnerability | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | CVE-2025-48924 | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | CVE-2023-1584 | + +Scenario: Verify Cancel on Leave Vulnerability Report modal window + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + When User Enters "" in the Vulnerability ID Textbox + When User Clicks on "" from the Vulnerability ID column + Then A modal window should open with "Leave Vulnerability Report?" message + When User Clicks on "Cancel" button from the modal window + Then Application should remain on the Generate Vulnerability Report screen + Examples: + | fileName | filePath | Vulnerability | + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | CVE-2025-48924 | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | CVE-2023-1584 | + +Scenario: Verify Filtering on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + When User Applies "" filter with "" on the Vulnerability Report + Then Applied "" should be visible with "" on the filter bar + Then The Vulnerabilities on the Vulnerability ID column should match with "" + When User Applies "Vulnerability ID" filter with "" on the Vulnerability Report + When User Enters "" in the Vulnerability ID Textbox + Then The "Severity" of the "" should match with "" + Examples: + | fileName | filePath | filter | value | Vulnerabilities | Vulnerability | severity:importer | + | examples_sbom.json | /tests/common/assets/sbom/ | Severity | Medium | CVE-2025-48795,CVE-2025-48924 | CVE-2025-48924 | Medium(6.5): Unknown | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | Severity | Medium |CVE-2022-45787,CVE-2023-0481,CVE-2024-29025,CVE-2025-48924,CVE-2025-49128,CVE-2025-49574,CVE-2025-55668 | CVE-2023-0481 | Medium(5.3): Unknown,Low(3.3): Unknown,Medium(5.3): Unknown| + | quarkus-bom-3.8.3.redhat-00003.json.bz2 | /tests/common/assets/sbom/ | Severity | High | CVE-2024-2700,CVE-2025-55163 | CVE-2024-2700 | High(7): Unknown | + +Scenario: Verify Pagination on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then Pagination of Vulnerability list works + Examples: + | fileName | filePath | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | + +Scenario: Verify Sorting on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + Then Sorting of "" Columns Works + Examples: + | fileName | filePath | sortableColumns | + | exhort_mvn.json.bz2 | /tests/common/assets/sbom/ | Vulnerability ID,Affected packages,Published,Updated | \ No newline at end of file diff --git a/e2e/tests/ui/features/@sbom-scan/scan-sbom.step.ts b/e2e/tests/ui/features/@sbom-scan/scan-sbom.step.ts new file mode 100644 index 00000000..c12ba045 --- /dev/null +++ b/e2e/tests/ui/features/@sbom-scan/scan-sbom.step.ts @@ -0,0 +1,519 @@ +import { createBdd } from "playwright-bdd"; +import { expect } from "playwright/test"; + +import { test } from "../../fixtures"; +import { SbomListPage } from "../../pages/sbom-list/SbomListPage"; +import { SbomScanPage } from "../../pages/sbom-scan/SbomScanPage"; +import { Table } from "../../pages/Table"; +import { ToolbarTable } from "../../helpers/ToolbarTable"; +import { + clickAndVerifyDownload, + verifyChildElementsText, +} from "../../pages/Helpers"; + +export const { Given, When, Then } = createBdd(test); + +When("User Navigates to SBOMs List page", async ({ page }) => { + await SbomListPage.build(page); +}); + +When("User Clicks Generate Vulnerability Button", async ({ page }) => { + // The toolbar button label comes from client/src/app/pages/sbom-list/sbom-toolbar.tsx + await page + .getByRole("button", { name: "Generate vulnerability report" }) + .click(); +}); + +Then( + "The Application should navigate to Generate Vulnerability Report screen", + async ({ page }) => { + await expect(page).toHaveURL(/\/sboms\/scan$/); + await expect( + page.locator( + `xpath=//h1[contains(text(),'Generate vulnerability report')]`, + ), + ).toBeVisible(); + }, +); + +Then( + "The Page should contain Browse files option and instruction to Drag and drop files", + async ({ page }) => { + // From UploadFileForAnalysis.tsx browseButtonText="Browse Files" and titleText="Drag and drop files here" + await expect( + page.getByRole("button", { name: "Browse Files" }), + ).toBeVisible(); + await expect(page.getByText("Drag and drop files here")).toBeVisible(); + }, +); + +Given( + "User Navigated to Generate Vulnerability Report screen", + async ({ page }) => { + // Direct navigation via sidebar to SBOMs then click action button + await SbomListPage.build(page); + await page + .getByRole("button", { name: "Generate vulnerability report" }) + .click(); + await expect(page).toHaveURL(/\/sboms\/scan$/); + }, +); + +When("User Clicks on Browse files Button", async ({ page }) => { + await page.getByRole("button", { name: "Browse Files" }).click(); +}); + +When( + "User Selects SBOM {string} from {string} on the file explorer dialog window", + async ({ page }, fileName: string, filePath: string) => { + const scanPage = await SbomScanPage.build(page); + await scanPage.uploadFileFromDialog(filePath, fileName); + }, +); + +Then( + "The Page should have a spinner with {string} message and {string} option while processing the SBOM", + async ({ page }, header: string, cancelLabel: string) => { + const scanPage = await SbomScanPage.build(page); + await scanPage.expectProcessingSpinner(header, cancelLabel); + }, +); + +Then( + "On the successful report generation the Application should render Vulnerability Report for the SBOM", + async ({ page }) => { + const scanPage = await SbomScanPage.build(page); + await expect(scanPage.heading).toHaveText("Generate vulnerability report"); + }, +); + +Then( + "Filtering drop down should be visible with drop down values {string}", + async ({ page }, filterOptions: string) => { + const scanPage = await SbomScanPage.build(page); + const filters = filterOptions.split(",").map((filter) => filter.trim()); + await expect(scanPage.filterDropdown).toBeVisible(); + await scanPage.filterDropdown.click(); + for (const filter of filters) { + await expect(page.getByRole("menuitem", { name: filter })).toBeVisible(); + } + }, +); + +Then( + "Tooltip on the {string} column should display {string}", + async ({ page }, column: string, tooltipMessage: string) => { + const table = await Table.build(page, "Vulnerability table"); + const tooltipButton = table.getColumnTooltipButton(column, tooltipMessage); + await tooltipButton.hover(); + await page.waitForTimeout(500); + }, +); + +Then( + '"Actions" button should be visible with dropdown options {string}', + async ({ page }, actionsOptions: string) => { + const scanPage = await SbomScanPage.build(page); + await expect(scanPage.actionsButton).toBeVisible(); + const actions = actionsOptions.split(",").map((action) => action.trim()); + await scanPage.actionsButton.click(); + for (const action of actions) { + await expect(page.getByRole("menuitem", { name: action })).toBeVisible(); + } + }, +); + +Then( + 'The title should be Vulnerability report with text "This is a temporary vulnerability report"', + async ({ page }) => { + const scanPage = await SbomScanPage.build(page); + await expect(scanPage.heading).toHaveText("Vulnerability report"); + await expect(scanPage.headerDescription).toBeVisible(); + }, +); + +Then( + "{string} button should be displayed", + async ({ page }, buttonName: string) => { + await expect(page.getByRole("button", { name: buttonName })).toBeVisible(); + }, +); + +When("User Clicks on {string} button", async ({ page }, buttonName: string) => { + await page.getByRole("button", { name: buttonName }).click(); +}); + +When("User Clicks on {string} link", async ({ page }, cancelLabel: string) => { + const scanPage = await SbomScanPage.build(page); + await scanPage.clickCancelProcessing(cancelLabel); +}); + +Then( + "Application navigates to Generate Vulnerability Report screen", + async ({ page }) => { + await expect(page).toHaveURL(/\/sboms\/scan$/); + await expect( + page.locator( + `xpath=//h1[contains(text(),'Generate vulnerability report')]`, + ), + ).toBeVisible(); + }, +); + +Then("{string} message should be displayed", async ({ page }, body: string) => { + const scanPage = await SbomScanPage.build(page); + await scanPage.errorVulnerabilitiesBody(body); +}); + +Then( + "{string} header should be displayed", + async ({ page }, header: string) => { + const scanPage = await SbomScanPage.build(page); + scanPage.errorVulnerabilitiesHeading(header); + }, +); + +Then( + "The Vulnerabilities on the Vulnerability ID column should match with {string}", + async ({ page }, vulnerabilitiesCsv: string) => { + const parentElem = `xpath=//div[@id="vulnerability-table-pagination-top"]`; + const toolbarTable = new ToolbarTable(page, "Vulnerability table"); + await toolbarTable.selectPerPage(parentElem, "100 per page"); + await toolbarTable.waitForTableContent(); + + const expectedIds = vulnerabilitiesCsv + .split(",") + .map((v) => v.trim()) + .filter((v) => v.length > 0); + + const collectedIds: string[] = []; + + // Collect IDs from current page using the reusable method + const collectPage = async () => { + const table = page.locator('table[aria-label="Vulnerability table"]'); + const cells = table.locator('td[data-label="Vulnerability ID"]'); + const count = await cells.count(); + for (let i = 0; i < count; i++) { + const txt = (await cells.nth(i).textContent())?.trim(); + if (txt) collectedIds.push(txt); + } + }; + + const nextButton = page.locator(parentElem).getByLabel("Go to next page"); + + await toolbarTable.goToFirstPage(parentElem); + await collectPage(); + + // Move through all pages to collect all IDs + while (await nextButton.isEnabled()) { + await nextButton.click(); + await toolbarTable.waitForTableContent(); + await collectPage(); + } + + // Verify each expected ID is present at least once + for (const id of expectedIds) { + await expect + .soft(collectedIds, `Missing expected id: ${id}`) + .toContain(id); + } + }, +); + +When( + "User Applies {string} filter with {string} on the Vulnerability Report", + async ({ page }, filter: string, value: string) => { + // Click the filter dropdown and select the filter type + await page.getByLabel("filtered-by").click(); + await page.getByRole("menuitem", { name: filter }).click(); + + const toolbarTable = new ToolbarTable(page, "Vulnerability table"); + + // For multi-select filters (Severity, Importer), select the value + // For text filters (Vulnerability ID), this step only selects the filter type + // and a subsequent step handles the text entry + if (filter.toLowerCase() !== "vulnerability id") { + // For multi-select filters: type in the search box and click the option + const inputText = page.locator("input[aria-label='Type to filter']"); + await inputText.clear(); + await inputText.fill(value); + + const dropdownOption = page.getByRole("menuitem", { name: value }); + await expect(dropdownOption).toBeVisible(); + await dropdownOption.click(); + + await toolbarTable.waitForTableContent(); + } + }, +); + +When( + "User Enters {string} in the Vulnerability ID Textbox", + async ({ page }, value: string) => { + const input = page.getByPlaceholder("Search by Vulnerability ID"); + await input.fill(value); + await input.press("Enter"); + const toolbarTable = new ToolbarTable(page, "Vulnerability table"); + await toolbarTable.waitForTableContent(); + await expect( + page.locator( + `xpath=//span[contains(@class,'label-group') and (.='Vulnerability ID')]/following-sibling::ul/li/span[contains(.,'${value}')]`, + ), + ).toBeVisible(); + }, +); + +Then( + "The {string} column of the {string} should match with {string}", + async ({ page }, column: string, vulnerability: string, expected: string) => { + const scanPage = await SbomScanPage.build(page); + const row = scanPage.getVulnerabilityRow(vulnerability); + const cell = row.locator(`td[data-label="${column}"]`); + await expect(cell).toContainText(expected); + }, +); + +Then( + "The Severity column of the {string} should match with {string}", + async ({ page }, vulnerability: string, expected: string) => { + const scanPage = await SbomScanPage.build(page); + const row = scanPage.getVulnerabilityRow(vulnerability); + const cell = row.locator('td[data-label="Severity"]'); + const severityElements = cell.locator( + 'xpath=//ul[@aria-label="Label group category"]//li', + ); + + await verifyChildElementsText(severityElements, expected); + }, +); + +When( + "User Clicks on More option if visible on Severity column of the {string}", + async ({ page }, vulnerability: string) => { + const scanPage = await SbomScanPage.build(page); + const row = scanPage.getVulnerabilityRow(vulnerability); + const moreButton = row + .locator('td[data-label="Severity"]') + .getByRole("button", { name: "More" }); + if (await moreButton.isVisible()) { + await moreButton.click(); + } + }, +); + +When( + "User Clicks on Affected package count button of the {string}", + async ({ page }, vulnerability: string) => { + const scanPage = await SbomScanPage.build(page); + const row = scanPage.getVulnerabilityRow(vulnerability); + const affectedPackagesCell = row.locator( + 'td[data-label="Affected packages"]', + ); + const expandButton = affectedPackagesCell.getByRole("button"); + await expandButton.click(); + }, +); + +Then("Affected Package table should expand", async ({ page }) => { + // Wait for the expanded content to appear + await page.waitForTimeout(500); + // Look for the nested grid with column headers Type, Namespace, etc. + // The expanded table has columnheader elements + const typeHeader = page.locator('role=columnheader[name="Type"]'); + await expect(typeHeader).toBeVisible(); +}); + +Then( + "The {string} column of the {string} affected package should match with {string}", + async ({ page }, column: string, vulnerability: string, expected: string) => { + const scanPage = await SbomScanPage.build(page); + const vulnerabilityRow = scanPage.getVulnerabilityRow(vulnerability); + const packageTable = vulnerabilityRow.locator( + `xpath=/following-sibling::tr[contains(@class,'expandable')]/td[@data-label='Affected packages']//table`, + ); + await expect(packageTable).toBeVisible(); + + const headerElements = packageTable.locator(`xpath=//th`); + const headerElemCount = await headerElements.count(); + let columnIndex = -1; + for (let i = 0; i < headerElemCount; i++) { + const headerText = await headerElements.nth(i).textContent(); + if (headerText?.trim() === column) { + columnIndex = i; + break; + } + } + if (columnIndex === -1) { + throw new Error( + `Column "${column}" not found in affected packages table`, + ); + } + + const rows = packageTable.locator(`xpath=//tbody/tr`); + const rowCount = await rows.count(); + for (let i = 1; i <= rowCount; i++) { + const cell = packageTable.locator( + `xpath=//tbody/tr[${i}]//td[${columnIndex + 1}]`, + ); + if (column === "Qualifiers") { + const qualifierElements = cell.locator("xpath=//span"); + await verifyChildElementsText(qualifierElements, expected); + } else { + if (expected === "") { + const cellText = await cell.textContent(); + await expect(cellText?.trim() || "").toBe(""); + } else { + await expect(cell).toContainText(expected); + } + } + } + }, +); + +Then( + "The Actions dropdown should have options {string} and {string}", + async ({ page }, option1: string, option2: string) => { + // The dropdown should already be open from the previous step + await expect(page.getByRole("menuitem", { name: option1 })).toBeVisible(); + await expect(page.getByRole("menuitem", { name: option2 })).toBeVisible(); + }, +); + +When( + "User Clicks on {string} option from the Actions dropdown", + async ({ page }, optionName: string) => { + // Just click for non-download actions + await page.getByRole("menuitem", { name: optionName }).click(); + }, +); + +Then( + "User Downloads CSV with default filename {string} by clicking on {string} option", + async ({ page }, fileName: string, optionName: string) => { + // Use the reusable helper for click + download verification + const downloadedFileName = await clickAndVerifyDownload(page, () => + page.getByRole("menuitem", { name: optionName }).click(), + ); + await expect(downloadedFileName).toContain(fileName); + await expect(downloadedFileName.endsWith(".csv")).toBeTruthy(); + }, +); + +Then( + "A modal window should open with {string} message", + async ({ page }, message: string) => { + // Wait for modal dialog to appear + await page.waitForTimeout(500); + // Check for modal with the message + const modal = page.locator('[role="dialog"]'); + await expect(modal).toBeVisible(); + await expect(modal.getByText(message)).toBeVisible(); + }, +); + +When( + "User Clicks on {string} button from the modal window", + async ({ page }, buttonName: string) => { + const modal = page.locator('[role="dialog"]'); + // Just click for non-download actions + await modal.getByRole("button", { name: buttonName }).click(); + }, +); + +When( + "User Downloads CSV with default filename {string} and Leaves by clicking on {string} button from the modal window", + async ({ page }, fileName: string, buttonName: string) => { + const modal = page.locator('[role="dialog"]'); + // Use the reusable helper for click + download verification + const downloadedFileName = await clickAndVerifyDownload(page, () => + modal.getByRole("button", { name: buttonName }).click(), + ); + await expect(downloadedFileName).toContain(fileName); + await expect(downloadedFileName.endsWith(".csv")).toBeTruthy(); + }, +); + +Then( + "Application navigates to Vulnerability Explorer screen of {string}", + async ({ page }, vulnerabilityId: string) => { + // Wait for navigation to vulnerability details page + await expect(page).toHaveURL( + new RegExp(`/vulnerabilities/${vulnerabilityId}`), + ); + }, +); + +Then( + "Application should remain on the Generate Vulnerability Report screen", + async ({ page }) => { + await expect(page).toHaveURL(/\/sboms\/scan$/); + // After canceling the modal, we're still viewing the vulnerability report (not the generate screen) + const scanPage = await SbomScanPage.build(page); + await expect(scanPage.heading).toHaveText("Vulnerability report"); + }, +); + +When( + "User Clicks on {string} from the Vulnerability ID column", + async ({ page }, vulnerabilityId: string) => { + const scanPage = await SbomScanPage.build(page); + const row = scanPage.getVulnerabilityRow(vulnerabilityId); + const link = row + .locator('td[data-label="Vulnerability ID"]') + .getByRole("link"); + await link.click(); + }, +); + +Then( + "Applied {string} should be visible with {string} on the filter bar", + async ({ page }, filter: string, value: string) => { + // Verify the filter chip is visible with the correct label + const filterChip = page.locator( + `xpath=//span[contains(@class,'label-group') and (.='${filter}')]/following-sibling::ul/li/span[contains(.,'${value}')]`, + ); + await expect(filterChip).toBeVisible(); + }, +); + +Then( + "The {string} of the {string} should match with {string}", + async ( + { page }, + columnName: string, + vulnerability: string, + expected: string, + ) => { + const scanPage = await SbomScanPage.build(page); + const row = scanPage.getVulnerabilityRow(vulnerability); + const cell = row.locator(`td[data-label="${columnName}"]`); + + // Special handling for Severity column which has multiple severity values + if (columnName === "Severity") { + const severityElements = cell.locator( + 'xpath=//ul[@aria-label="Label group category"]//li', + ); + await verifyChildElementsText(severityElements, expected); + } else { + await expect(cell).toContainText(expected); + } + }, +); + +Then("Pagination of Vulnerability list works", async ({ page }) => { + const parentElem = `xpath=//div[@id="vulnerability-table-pagination-top"]`; + const toolbarTable = new ToolbarTable(page, "Vulnerability table"); + await toolbarTable.verifyPagination(parentElem); +}); + +Then( + "Sorting of {string} Columns Works", + async ({ page }, columnHeaders: string) => { + const headers = columnHeaders + .split(",") + .map((column: string) => column.trim()); + const toolbarTable = new ToolbarTable(page, "Vulnerability table"); + const vulnTableTopPagination = `xpath=//div[@id="vulnerability-table-pagination-top"]`; + await toolbarTable.verifySorting(vulnTableTopPagination, headers); + }, +); diff --git a/e2e/tests/ui/features/scan-sbom.feature b/e2e/tests/ui/features/scan-sbom.feature new file mode 100644 index 00000000..2896086a --- /dev/null +++ b/e2e/tests/ui/features/scan-sbom.feature @@ -0,0 +1,85 @@ +Feature: Scan SBOM - To Generate Vulnerability Report for SBOM + As an RHTPA user + I want to be able to scan an SBOM so that I can review the vulnerabilities within the SBOM without having to ingest + +Background: Authentication + Given User is authenticated + + +#Bug TC-2985 +Scenario: Generate Vulnerability Report for unsupported SBOM file extensions + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then The report generation failed with error "Report failed" + Then "The "" file could not be analyzed. The file might be corrupted or an unsupported format" message should be displayed + Then "Try another file" button should be displayed + When User Clicks on "Try another file" button + Then Application navigates to Generate Vulnerability Report screen + Examples: + | fileName | filePath| + | | | + +#Bug TC-2985 +Scenario: Generate Vulnerability Report for unsupported SBOM format + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then The report generation failed with error "Report failed" + Then "The "" file could not be analyzed. The file might be corrupted or an unsupported format" message should displayed + Then "Try another file" button should be displayed + Examples: + | fileName | filePath| + | | | + | | | + | | | + +#Bug TC-2985 +Scenario: Generate Vulnerability Report for SBOM with License issues + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then The report generation failed with error "Report failed" + Then "The "" file could not be analyzed. The file might be corrupted or an unsupported format" message should displayed + Then "" message should be displayed under "Show details" section + Then "Try another file" button should be displayed + Examples: + | fileName | filePath | Error Message | + | quarkus-bom-2.13.8.Final-redhat-00004.json.bz2 | /tests/common/assets/sbom/ | error parsing the expression: Parsing for expression `Parsing for expression `ORACLE-FREE-USE-TERMS AND CONDITIONS-(FUTC)` failed.` failed. | + +Scenario: Verify Multiple filtering on Generate Vulnerability Report for an SBOM + Given User Navigated to Generate Vulnerability Report screen + When User Clicks on Browse files Button + When User Selects SBOM "" from "" on the file explorer dialog window + When User Applies "" filter with "" on the Vulnerability Report + When User Applies "" filter with "" on the Vulnerability Report + Then Applied "" should be visible with "" on the filter bar + Then Applied "" should be visible with "" on the filter bar + Then The Vulnerabilities on the Vulnerability ID column should match with "" + Then The "Severity" of the "" should match with "" + Examples: + | fileName | filePath| filter1 | value1 | filter2 | value2 | Vulnerabilities | Vulnerability | severity:importer | + | | | Severity | Low | Status | Affected | | | | + | | | Severity | Medium | Importer | OSV | | | | + | | | Severity | High | Status | Fixed | | | | + | | | Severity | Critical | Importer | CVE | | | | + + +Scenario: Generate Vulnerability Report for BigSBOMFile + Given User Navigated to Generate Vulnerability Report screen + When User Selects SBOM "" from "" on the file explorer dialog window + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + Examples: + | fileName | filePath| + | | | + +Scenario: Generate Vulnerability Report with Drag and Drop + Given User Navigated to Generate Vulnerability Report screen + When User Drags and Drops SBOM "" from "" to the Drop area + Then On the successful report generation the Application should render Vulnerability Report for the SBOM + Examples: + | fileName | filePath| + | | | + | | | + | | | + | | | + | | | + +# Placeholders like , , , and should be replaced in the Examples table above \ No newline at end of file diff --git a/e2e/tests/ui/helpers/ToolbarTable.ts b/e2e/tests/ui/helpers/ToolbarTable.ts index 00cddb1f..3907d1cf 100644 --- a/e2e/tests/ui/helpers/ToolbarTable.ts +++ b/e2e/tests/ui/helpers/ToolbarTable.ts @@ -313,10 +313,10 @@ export class ToolbarTable { fail("Given header not found"); } for (const data of dataRow) { - if (data[index] !== ``) { - row += 1; + if (data[index] != null && data[index] !== ``) { break; } + row += 1; } const isDate = this.isValidDate(dataRow[row][index]); const isCVSS = this.isCVSS(dataRow[row][index]); @@ -419,7 +419,8 @@ export class ToolbarTable { if (sort === sortOrder) { return true; } else { - await headerElem.getByRole("button").click(); + await headerElem.getByRole("button", { name: columnHeader }).click(); + await this.waitForTableContent(); } } return false; diff --git a/e2e/tests/ui/pages/Helpers.ts b/e2e/tests/ui/pages/Helpers.ts index 338ffacf..3672f522 100644 --- a/e2e/tests/ui/pages/Helpers.ts +++ b/e2e/tests/ui/pages/Helpers.ts @@ -1,4 +1,9 @@ -import { expect } from "@playwright/test"; +import { + expect, + type Download, + type Locator, + type Page, +} from "@playwright/test"; export const sortArray = (arr: string[], asc: boolean) => { let sorted = [...arr].sort((a, b) => @@ -21,3 +26,103 @@ export const expectSort = (arr: string[], asc: boolean) => { `Received: ${arr.join(", ")} \nExpected: ${sorted.join(", ")}`, ).toBe(true); }; + +/** + * Resolves asset path by normalizing leading slash and ensuring proper path joining + * @param filePath The directory path (may or may not start with /) + * @param fileName The file name to append + * @returns The normalized path + */ +export const resolveAssetPath = ( + filePath: string, + fileName: string, +): string => { + // Normalize leading slash coming from feature examples and ensure single slash join + const normalizedPath = filePath.startsWith("/") + ? filePath.slice(1) + : filePath; + const needsSlash = normalizedPath.endsWith("/") ? "" : "/"; + return `${normalizedPath}${needsSlash}${fileName}`; +}; + +/** + * Verifies a download was successful + * @param download The Playwright Download object + * @returns The suggested filename + */ +export const verifyDownload = async (download: Download): Promise => { + // Verify download completed successfully by checking if path exists + let filename = ""; + try { + filename = download.suggestedFilename(); + } catch (error) { + throw new Error(`Download verification failed: ${error}`); + } + // Return the suggested filename for further assertions + return filename; +}; + +/** + * Handles click action that triggers a download and verifies it + * @param page The Playwright Page object + * @param clickAction The async function that performs the click + * @returns The downloaded filename + */ +export const clickAndVerifyDownload = async ( + page: Page, + clickAction: () => Promise, +): Promise => { + // Set up download listener and perform click simultaneously + const [download] = await Promise.all([ + page.waitForEvent("download"), + clickAction(), + ]); + // Verify the download + return await verifyDownload(download); +}; + +/** + * Verifies comma-delimited expected values against child elements + * Useful for comparing lists like qualifiers, tags, labels, severity values, etc. + * @param elements The locator for child elements to verify + * @param expectedCsv Comma-delimited string of expected values + */ +export const verifyChildElementsText = async ( + elements: Locator, + expectedCsv: string, +) => { + // Parse comma-delimited expected values + const expectedValues = expectedCsv + .split(",") + .map((v) => v.trim()) + .filter((v) => v.length > 0); + + // Collect actual values text + const actualValues: string[] = []; + const elementCount = await elements.count(); + for (let i = 0; i < elementCount; i++) { + const text = await elements.nth(i).textContent(); + if (text?.trim()) { + actualValues.push(text.trim()); + } + } + + // Check which expected values are missing + const missing: string[] = []; + for (const expectedVal of expectedValues) { + const found = actualValues.some((actual) => actual.includes(expectedVal)); + if (!found) { + missing.push(expectedVal); + } + } + + // Verify all expected values are present + expect + .soft( + missing.length === 0, + missing.length > 0 + ? `Missing expected values: ${missing.join(", ")}. Actual values: [${actualValues.join(", ")}]` + : "Values did not match expected pattern", + ) + .toBeTruthy(); +}; diff --git a/e2e/tests/ui/pages/Table.ts b/e2e/tests/ui/pages/Table.ts index 5371ce0b..bbbb8ead 100644 --- a/e2e/tests/ui/pages/Table.ts +++ b/e2e/tests/ui/pages/Table.ts @@ -95,4 +95,46 @@ export class Table { await expect.poll(() => rows.count()).toBeLessThan(expectedRows.lessThan); } } + + /** + * Gets the tooltip button for a column header + * @param columnName The name of the column + * @param tooltipMessage The tooltip text (used as the accessible name of the button) + * @returns The tooltip button locator + */ + getColumnTooltipButton(columnName: string, tooltipMessage: string): Locator { + const columnHeader = this._table.getByRole("columnheader", { + name: new RegExp(columnName), + }); + return columnHeader.getByRole("button", { + name: tooltipMessage, + }); + } + + /** + * Gets table rows that match specific cell value(s) + * @param cellValues An object mapping column names to expected values + * @returns A locator for all matching rows + * @example + * // Get rows where Name column contains "curl" + * const rows = table.getRowsByCellValue({ "Name": "curl" }); + * + * // Get rows matching multiple criteria + * const rows = table.getRowsByCellValue({ "Name": "curl", "Version": "7.29.0" }); + */ + getRowsByCellValue(cellValues: Record): Locator { + // Start with all table rows + let rowLocator = this._table.locator("tbody tr"); + + // Filter rows based on each column-value pair + for (const [columnName, value] of Object.entries(cellValues)) { + rowLocator = rowLocator.filter({ + has: this._page.locator(`td[data-label="${columnName}"]`, { + hasText: value, + }), + }); + } + + return rowLocator; + } } diff --git a/e2e/tests/ui/pages/package-details/PackageDetailsPage.ts b/e2e/tests/ui/pages/package-details/PackageDetailsPage.ts index 90a248df..130207c1 100644 --- a/e2e/tests/ui/pages/package-details/PackageDetailsPage.ts +++ b/e2e/tests/ui/pages/package-details/PackageDetailsPage.ts @@ -10,7 +10,10 @@ export class PackageDetailsPage { this._layout = layout; } - static async build(page: Page, packageName: string) { + static async build( + page: Page, + packageDetail: { Name: string; Version?: string }, + ) { const navigation = await Navigation.build(page); await navigation.goToSidebar("Packages"); @@ -18,14 +21,15 @@ export class PackageDetailsPage { const toolbar = await listPage.getToolbar(); const table = await listPage.getTable(); - await toolbar.applyTextFilter("Filter text", packageName); + await toolbar.applyTextFilter("Filter text", packageDetail.Name); await table.waitUntilDataIsLoaded(); - await table.verifyColumnContainsText("Name", packageName); - - await page.getByRole("link", { name: packageName, exact: true }).click(); - + // Get rows matching the package name + const matchingRows = table.getRowsByCellValue(packageDetail); + await matchingRows + .getByRole("link", { name: packageDetail.Name, exact: true }) + .click(); const layout = await DetailsPageLayout.build(page); - await layout.verifyPageHeader(packageName); + await layout.verifyPageHeader(packageDetail.Name); return new PackageDetailsPage(page, layout); } diff --git a/e2e/tests/ui/pages/package-details/info/info.spec.ts b/e2e/tests/ui/pages/package-details/info/info.spec.ts index 5690703f..f1753ab1 100644 --- a/e2e/tests/ui/pages/package-details/info/info.spec.ts +++ b/e2e/tests/ui/pages/package-details/info/info.spec.ts @@ -10,7 +10,10 @@ test.describe("Info Tab validations", { tag: "@tier1" }, () => { }); test("Info", async ({ page }) => { - await PackageDetailsPage.build(page, "keycloak-core"); + await PackageDetailsPage.build(page, { + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); // Verify version await expect(page.getByText("version: 18.0.6.redhat-00001")).toHaveCount(1); diff --git a/e2e/tests/ui/pages/package-details/sboms/SbomsTab.ts b/e2e/tests/ui/pages/package-details/sboms/SbomsTab.ts index cc956cbb..50d780ab 100644 --- a/e2e/tests/ui/pages/package-details/sboms/SbomsTab.ts +++ b/e2e/tests/ui/pages/package-details/sboms/SbomsTab.ts @@ -13,8 +13,11 @@ export class SbomsTab { this._detailsPage = layout; } - static async build(page: Page, packageName: string) { - const detailsPage = await PackageDetailsPage.build(page, packageName); + static async build(page: Page, packageDetail: Record) { + const detailsPage = await PackageDetailsPage.build(page, { + Name: packageDetail.Name, + Version: packageDetail.Version, + }); await detailsPage._layout.selectTab("SBOMs using package"); return new SbomsTab(page, detailsPage); diff --git a/e2e/tests/ui/pages/package-details/sboms/columns.spec.ts b/e2e/tests/ui/pages/package-details/sboms/columns.spec.ts index 933419cb..be54ae3e 100644 --- a/e2e/tests/ui/pages/package-details/sboms/columns.spec.ts +++ b/e2e/tests/ui/pages/package-details/sboms/columns.spec.ts @@ -12,7 +12,10 @@ test.describe("Columns validations", { tag: "@tier1" }, () => { }); test("Columns", async ({ page }) => { - const sbomTab = await SbomsTab.build(page, "keycloak-core"); + const sbomTab = await SbomsTab.build(page, { + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); const table = await sbomTab.getTable(); const ids = await table._table diff --git a/e2e/tests/ui/pages/package-details/sboms/pagination.spec.ts b/e2e/tests/ui/pages/package-details/sboms/pagination.spec.ts index 757c2f08..fc65899b 100644 --- a/e2e/tests/ui/pages/package-details/sboms/pagination.spec.ts +++ b/e2e/tests/ui/pages/package-details/sboms/pagination.spec.ts @@ -11,14 +11,18 @@ test.describe.skip("Pagination validations", { tag: "@tier1" }, () => { }); test("Navigation button validations", async ({ page }) => { - const sbomTab = await SbomsTab.build(page, "keycloak-core"); + const sbomTab = await SbomsTab.build(page, { + Name: "keycloak-core", + }); const pagination = await sbomTab.getPagination(); await pagination.validatePagination(); }); test("Items per page validations", async ({ page }) => { - const sbomTab = await SbomsTab.build(page, "keycloak-core"); + const sbomTab = await SbomsTab.build(page, { + Name: "keycloak-core", + }); const pagination = await sbomTab.getPagination(); const table = await sbomTab.getTable(); diff --git a/e2e/tests/ui/pages/package-details/sboms/sort.spec.ts b/e2e/tests/ui/pages/package-details/sboms/sort.spec.ts index 835c9a6e..df307e31 100644 --- a/e2e/tests/ui/pages/package-details/sboms/sort.spec.ts +++ b/e2e/tests/ui/pages/package-details/sboms/sort.spec.ts @@ -11,7 +11,10 @@ test.describe("Sort validations", { tag: "@tier1" }, () => { }); test("Sort", async ({ page }) => { - const sbomTab = await SbomsTab.build(page, "keycloak-core"); + const sbomTab = await SbomsTab.build(page, { + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); const table = await sbomTab.getTable(); const columnNameSelector = table._table.locator(`td[data-label="Name"]`); diff --git a/e2e/tests/ui/pages/package-details/vulnerabilities/VulnerabilitiesTab.ts b/e2e/tests/ui/pages/package-details/vulnerabilities/VulnerabilitiesTab.ts index 7c41ea60..bbd176ed 100644 --- a/e2e/tests/ui/pages/package-details/vulnerabilities/VulnerabilitiesTab.ts +++ b/e2e/tests/ui/pages/package-details/vulnerabilities/VulnerabilitiesTab.ts @@ -13,8 +13,11 @@ export class VulnerabilitiesTab { this._detailsPage = layout; } - static async build(page: Page, packageName: string) { - const detailsPage = await PackageDetailsPage.build(page, packageName); + static async build(page: Page, packageDetail: Record) { + const detailsPage = await PackageDetailsPage.build(page, { + Name: packageDetail.Name, + Version: packageDetail.Version, + }); await detailsPage._layout.selectTab("Vulnerabilities"); return new VulnerabilitiesTab(page, detailsPage); diff --git a/e2e/tests/ui/pages/package-details/vulnerabilities/columns.spec.ts b/e2e/tests/ui/pages/package-details/vulnerabilities/columns.spec.ts index cb4c6dea..bf140744 100644 --- a/e2e/tests/ui/pages/package-details/vulnerabilities/columns.spec.ts +++ b/e2e/tests/ui/pages/package-details/vulnerabilities/columns.spec.ts @@ -12,10 +12,10 @@ test.describe("Columns validations", { tag: "@tier1" }, () => { }); test("Columns", async ({ page }) => { - const vulnerabilitiesTab = await VulnerabilitiesTab.build( - page, - "keycloak-core", - ); + const vulnerabilitiesTab = await VulnerabilitiesTab.build(page, { + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); const table = await vulnerabilitiesTab.getTable(); const ids = await table._table diff --git a/e2e/tests/ui/pages/package-details/vulnerabilities/pagination.spec.ts b/e2e/tests/ui/pages/package-details/vulnerabilities/pagination.spec.ts index e2bc25a9..facba3cd 100644 --- a/e2e/tests/ui/pages/package-details/vulnerabilities/pagination.spec.ts +++ b/e2e/tests/ui/pages/package-details/vulnerabilities/pagination.spec.ts @@ -11,20 +11,18 @@ test.describe.skip("Pagination validations", { tag: "@tier1" }, () => { }); test("Navigation button validations", async ({ page }) => { - const vulnerabilitiesTab = await VulnerabilitiesTab.build( - page, - "keycloak-core", - ); + const vulnerabilitiesTab = await VulnerabilitiesTab.build(page, { + Name: "keycloak-core", + }); const pagination = await vulnerabilitiesTab.getPagination(); await pagination.validatePagination(); }); test("Items per page validations", async ({ page }) => { - const vulnerabilitiesTab = await VulnerabilitiesTab.build( - page, - "keycloak-core", - ); + const vulnerabilitiesTab = await VulnerabilitiesTab.build(page, { + Name: "keycloak-core", + }); const pagination = await vulnerabilitiesTab.getPagination(); const table = await vulnerabilitiesTab.getTable(); diff --git a/e2e/tests/ui/pages/package-details/vulnerabilities/sort.spec.ts b/e2e/tests/ui/pages/package-details/vulnerabilities/sort.spec.ts index edf65349..0e822756 100644 --- a/e2e/tests/ui/pages/package-details/vulnerabilities/sort.spec.ts +++ b/e2e/tests/ui/pages/package-details/vulnerabilities/sort.spec.ts @@ -11,10 +11,10 @@ test.describe("Sort validations", { tag: "@tier1" }, () => { }); test("Sort", async ({ page }) => { - const vulnerabilitiesTab = await VulnerabilitiesTab.build( - page, - "keycloak-core", - ); + const vulnerabilitiesTab = await VulnerabilitiesTab.build(page, { + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); const table = await vulnerabilitiesTab.getTable(); const columnNameSelector = table._table.locator(`td[data-label="ID"]`); diff --git a/e2e/tests/ui/pages/package-list/columns.spec.ts b/e2e/tests/ui/pages/package-list/columns.spec.ts index 12feea2d..a0928fca 100644 --- a/e2e/tests/ui/pages/package-list/columns.spec.ts +++ b/e2e/tests/ui/pages/package-list/columns.spec.ts @@ -20,39 +20,42 @@ test.describe("Columns validations", { tag: "@tier1" }, () => { // Full search await toolbar.applyTextFilter("Filter text", "keycloak-core"); await table.waitUntilDataIsLoaded(); - await table.verifyColumnContainsText("Name", "keycloak-core"); + const tableRow = table.getRowsByCellValue({ + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); // Namespace - await expect( - table._table.locator(`td[data-label="Namespace"]`), - ).toContainText("org.keycloak"); + await expect(tableRow.locator(`td[data-label="Namespace"]`)).toContainText( + "org.keycloak", + ); // Version - await expect( - table._table.locator(`td[data-label="Version"]`), - ).toContainText("18.0.6.redhat-00001"); + await expect(tableRow.locator(`td[data-label="Version"]`)).toContainText( + "18.0.6.redhat-00001", + ); // Type - await expect(table._table.locator(`td[data-label="Type"]`)).toContainText( + await expect(tableRow.locator(`td[data-label="Type"]`)).toContainText( "maven", ); // Qualifiers - await expect( - table._table.locator(`td[data-label="Qualifiers"]`), - ).toContainText("type=jar"); - await expect( - table._table.locator(`td[data-label="Qualifiers"]`), - ).toContainText("repository_url=https://maven.repository.redhat.com/ga/"); + await expect(tableRow.locator(`td[data-label="Qualifiers"]`)).toContainText( + "type=jar", + ); + await expect(tableRow.locator(`td[data-label="Qualifiers"]`)).toContainText( + "repository_url=https://maven.repository.redhat.com/ga/", + ); // Vulnerabilities await expect( - table._table + tableRow .locator(`td[data-label="Vulnerabilities"]`) .locator("div[aria-label='total']"), ).toContainText("1"); await expect( - table._table + tableRow .locator(`td[data-label="Vulnerabilities"]`) .locator("div[aria-label='medium']"), ).toContainText("1"); diff --git a/e2e/tests/ui/pages/package-list/filter.spec.ts b/e2e/tests/ui/pages/package-list/filter.spec.ts index 332f4e94..6e7e9d4c 100644 --- a/e2e/tests/ui/pages/package-list/filter.spec.ts +++ b/e2e/tests/ui/pages/package-list/filter.spec.ts @@ -3,6 +3,7 @@ import { test } from "../../fixtures"; import { login } from "../../helpers/Auth"; import { PackageListPage } from "./PackageListPage"; +import { expect } from "@playwright/test"; test.describe("Filter validations", { tag: "@tier1" }, () => { test.beforeEach(async ({ page }) => { @@ -18,12 +19,20 @@ test.describe("Filter validations", { tag: "@tier1" }, () => { // Full search await toolbar.applyTextFilter("Filter text", "keycloak-core"); await table.waitUntilDataIsLoaded(); - await table.verifyColumnContainsText("Name", "keycloak-core"); + let tableRow = table.getRowsByCellValue({ + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); + await expect(await tableRow.count()).toBeGreaterThan(0); // Type filter await toolbar.applyMultiSelectFilter("Type", ["Maven", "RPM"]); await table.waitUntilDataIsLoaded(); - await table.verifyColumnContainsText("Name", "keycloak-core"); + tableRow = table.getRowsByCellValue({ + Name: "keycloak-core", + Version: "18.0.6.redhat-00001", + }); + await expect(await tableRow.count()).toBeGreaterThan(0); // Architecture await toolbar.applyMultiSelectFilter("Architecture", ["S390", "No Arch"]); diff --git a/e2e/tests/ui/pages/sbom-details/vulnerabilities/donutchart.spec.ts b/e2e/tests/ui/pages/sbom-details/vulnerabilities/donutchart.spec.ts index 4922cb46..0e601a2e 100644 --- a/e2e/tests/ui/pages/sbom-details/vulnerabilities/donutchart.spec.ts +++ b/e2e/tests/ui/pages/sbom-details/vulnerabilities/donutchart.spec.ts @@ -15,8 +15,8 @@ test.describe("DonutChart validations", { tag: "@tier1" }, () => { await VulnerabilitiesTab.build(page, "quarkus-bom"); await expect(page.locator("#legend-labels-0")).toContainText("Critical: 0"); - await expect(page.locator("#legend-labels-1")).toContainText("High: 1"); - await expect(page.locator("#legend-labels-2")).toContainText("Medium: 10"); + await expect(page.locator("#legend-labels-1")).toContainText("High: 2"); + await expect(page.locator("#legend-labels-2")).toContainText("Medium: 14"); await expect(page.locator("#legend-labels-3")).toContainText("Low: 0"); await expect(page.locator("#legend-labels-4")).toContainText("None: 0"); await expect(page.locator("#legend-labels-5")).toContainText("Unknown: 0"); diff --git a/e2e/tests/ui/pages/sbom-list/columns.spec.ts b/e2e/tests/ui/pages/sbom-list/columns.spec.ts index 7fe5780a..b3217420 100644 --- a/e2e/tests/ui/pages/sbom-list/columns.spec.ts +++ b/e2e/tests/ui/pages/sbom-list/columns.spec.ts @@ -26,18 +26,18 @@ test.describe("Columns validations", { tag: "@tier1" }, () => { await expect( table._table .locator(`td[data-label="Vulnerabilities"]`) - .locator("div[aria-label='total']", { hasText: "11" }), + .locator("div[aria-label='total']", { hasText: "16" }), ).toHaveCount(1); // Severities const expectedVulnerabilities = [ { severity: "high", - count: 1, + count: 2, }, { severity: "medium", - count: 10, + count: 14, }, ]; diff --git a/e2e/tests/ui/pages/sbom-scan/SbomScanPage.ts b/e2e/tests/ui/pages/sbom-scan/SbomScanPage.ts new file mode 100644 index 00000000..bb8bf659 --- /dev/null +++ b/e2e/tests/ui/pages/sbom-scan/SbomScanPage.ts @@ -0,0 +1,74 @@ +import { expect, type Locator, type Page } from "@playwright/test"; +import { resolveAssetPath } from "../Helpers"; + +export class SbomScanPage { + private readonly _page: Page; + + private constructor(page: Page) { + this._page = page; + } + + static async build(page: Page) { + return new SbomScanPage(page); + } + + get heading(): Locator { + return this._page.getByRole("heading", { level: 1 }); + } + + get browseFilesButton(): Locator { + return this._page.getByRole("button", { name: "Browse Files" }); + } + + get actionsButton(): Locator { + return this._page.getByRole("button", { name: "Actions" }); + } + + get headerDescription(): Locator { + return this._page.getByText("This is a temporary vulnerability report."); + } + + get filterDropdown(): Locator { + return this._page.getByLabel("filtered-by"); + } + + async errorVulnerabilitiesHeading(header: string) { + await this._page.getByRole("heading", { name: header }).isVisible(); + } + + async errorVulnerabilitiesBody(body: string) { + await this._page.getByText(body).isVisible(); + } + + async uploadFileFromDialog(filePath: string, fileName: string) { + const relativePath = resolveAssetPath(filePath, fileName); + const fileChooserPromise = this._page.waitForEvent("filechooser"); + await this.browseFilesButton.click(); + const fileChooser = await fileChooserPromise; + await fileChooser.setFiles(relativePath); + } + + // Processing state and cancel + async expectProcessingSpinner(headerText: string, cancelLabel: string) { + await expect(this._page.getByText(headerText)).toBeVisible(); + await expect( + this._page.getByRole("button", { name: cancelLabel }), + ).toBeVisible(); + } + + async clickCancelProcessing(cancelLabel: string) { + await this._page.getByRole("button", { name: cancelLabel }).click(); + } + + /** + * Gets the vulnerability row from the vulnerability table by vulnerability ID + * @param vulnerabilityId The vulnerability ID to search for (e.g., "CVE-2024-29025") + * @returns The row locator + */ + getVulnerabilityRow(vulnerabilityId: string): Locator { + const table = this._page.locator('table[aria-label="Vulnerability table"]'); + return table.locator( + `xpath=//td[@data-label="Vulnerability ID" and contains (.,"${vulnerabilityId}")]/parent::tr`, + ); + } +}