From 0f67346d044e1843bef0610137d68d79f8c563e2 Mon Sep 17 00:00:00 2001 From: kahboom Date: Fri, 22 Nov 2024 12:47:04 +0000 Subject: [PATCH 1/5] feat(storybook): search page refactor, allow overrides + new story --- .storybook/preview.tsx | 5 + .../search/components/SearchTabs.stories.tsx | 24 ++ .../pages/search/components/SearchTabs.tsx | 172 +++++++++ client/src/app/pages/search/search.tsx | 167 ++------ ...A03bb16dc-3cff-4a7d-8393-9a6a7124ecc2.json | 41 ++ ...A32600b15-f2c1-4115-bcfb-0d0e1786f86d.json | 41 ++ ...A459c504b-7e09-4ea9-9cbb-baa8ce040e83.json | 41 ++ ...A671dd85b-409f-4509-9a50-c4b2404ac10a.json | 41 ++ ...A673acfc8-ea7d-4c6d-aff9-20cf70caade0.json | 41 ++ ...A87aa81c3-2aa5-438e-b5d4-d67ca4e321a9.json | 41 ++ ...A88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c.json | 41 ++ ...Ad99d1421-e2fd-49c2-b2dd-82fe848fff48.json | 41 ++ ...Aea257645-f52f-4723-9c73-a4ed589f67ac.json | 41 ++ ...Aee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6.json | 41 ++ .../14c5c61d-c4cc-56fb-9db6-f62541076b80.json | 358 ++++++++++++++++++ .../25ddc770-5fde-53a8-8451-41091d5fcb3b.json | 358 ++++++++++++++++++ .../62c9cfab-997b-5126-ad5c-90bc277e048f.json | 358 ++++++++++++++++++ .../81293bba-1ab5-5524-8444-0bd55d19b9b3.json | 358 ++++++++++++++++++ .../b9a43108-525d-59ea-bc31-ff217d4c7925.json | 54 +++ .../d6dea366-e8a6-5500-9aef-14464b717295.json | 54 +++ .../{v1 => v1.2.x}/cve-details.stories.tsx | 0 .../stories/{v1 => v1.2.x}/home.stories.tsx | 0 .../stories/{v1 => v1.2.x}/search.stories.tsx | 12 +- 23 files changed, 2185 insertions(+), 145 deletions(-) create mode 100644 client/src/app/pages/search/components/SearchTabs.stories.tsx create mode 100644 client/src/app/pages/search/components/SearchTabs.tsx create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A03bb16dc-3cff-4a7d-8393-9a6a7124ecc2.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A32600b15-f2c1-4115-bcfb-0d0e1786f86d.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A459c504b-7e09-4ea9-9cbb-baa8ce040e83.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A671dd85b-409f-4509-9a50-c4b2404ac10a.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A673acfc8-ea7d-4c6d-aff9-20cf70caade0.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A87aa81c3-2aa5-438e-b5d4-d67ca4e321a9.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3A88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3Ad99d1421-e2fd-49c2-b2dd-82fe848fff48.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3Aea257645-f52f-4723-9c73-a4ed589f67ac.json create mode 100644 client/src/mocks/data/advisory/details/urn%3Auuid%3Aee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6.json create mode 100644 client/src/mocks/data/purl/details/14c5c61d-c4cc-56fb-9db6-f62541076b80.json create mode 100644 client/src/mocks/data/purl/details/25ddc770-5fde-53a8-8451-41091d5fcb3b.json create mode 100644 client/src/mocks/data/purl/details/62c9cfab-997b-5126-ad5c-90bc277e048f.json create mode 100644 client/src/mocks/data/purl/details/81293bba-1ab5-5524-8444-0bd55d19b9b3.json create mode 100644 client/src/mocks/data/purl/details/b9a43108-525d-59ea-bc31-ff217d4c7925.json create mode 100644 client/src/mocks/data/purl/details/d6dea366-e8a6-5500-9aef-14464b717295.json rename client/src/stories/{v1 => v1.2.x}/cve-details.stories.tsx (100%) rename client/src/stories/{v1 => v1.2.x}/home.stories.tsx (100%) rename client/src/stories/{v1 => v1.2.x}/search.stories.tsx (76%) diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 66b5e9e1..fbe39298 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -46,6 +46,11 @@ const preview: Preview = { msw: { handlers: [...handlers], }, + options: { + storySort: { + order: ["v1.2x", "v2.1", "v2.x"], + }, + }, }, }; diff --git a/client/src/app/pages/search/components/SearchTabs.stories.tsx b/client/src/app/pages/search/components/SearchTabs.stories.tsx new file mode 100644 index 00000000..c2729afd --- /dev/null +++ b/client/src/app/pages/search/components/SearchTabs.stories.tsx @@ -0,0 +1,24 @@ +import React from "react"; + +import type { Meta, StoryObj } from "@storybook/react"; +import { SearchTabs } from "./SearchTabs"; +import { AxiosError } from "axios"; + +type StoryArgs = { + fetchError?: AxiosError; + isFetching?: boolean; + vulnerabilityId: string; +}; + +const meta: Meta = { + title: "Components/Search/SearchTabs", + component: SearchTabs, +}; + +export default meta; + +type Story = StoryObj; + +export const DefaultState: Story = {}; + +export const ErrorState: Story = {}; diff --git a/client/src/app/pages/search/components/SearchTabs.tsx b/client/src/app/pages/search/components/SearchTabs.tsx new file mode 100644 index 00000000..f31c8892 --- /dev/null +++ b/client/src/app/pages/search/components/SearchTabs.tsx @@ -0,0 +1,172 @@ +import React from "react"; + +import { + Badge, + Card, + CardBody, + Popover, + Split, + SplitItem, + Tab, + TabAction, + Tabs, + TabTitleText, +} from "@patternfly/react-core"; + +import { PackageTable } from "@app/pages/package-list/package-table"; +import { AdvisoryTable } from "@app/pages/advisory-list/advisory-table"; +import { SbomTable } from "@app/pages/sbom-list/sbom-table"; +import { VulnerabilityTable } from "@app/pages/vulnerability-list/vulnerability-table"; +import HelpIcon from "@patternfly/react-icons/dist/esm/icons/help-icon"; +import { FilterPanel } from "@app/components/FilterPanel"; + +interface SearchTabsProps { + filterPanelProps: { + advisoryFilterPanelProps?: any; + packageFilterPanelProps?: any; + sbomFilterPanelProps?: any; + vulnerabilityFilterPanelProps?: any; + }; + packageTotalCount: number; + sbomTotalCount: number; + vulnerabilityTotalCount: number; +} + +export const SearchTabs: React.FC = ({ + filterPanelProps, + packageTotalCount, + sbomTotalCount, + vulnerabilityTotalCount, +}) => { + const [activeTabKey, setActiveTabKey] = React.useState(0); + const { + advisoryFilterPanelProps, + packageFilterPanelProps, + sbomFilterPanelProps, + vulnerabilityFilterPanelProps, + } = filterPanelProps; + + const handleTabClick = ( + _event: React.MouseEvent | React.KeyboardEvent | MouseEvent, + tabIndex: string | number + ) => { + setActiveTabKey(tabIndex); + }; + + const sbomPopoverRef = React.createRef(); + + const sbomPopover = (popoverRef: React.RefObject) => ( + Software Bill of Materials for Products and Containers. + } + position={"right"} + triggerRef={popoverRef} + /> + ); + + return ( + + + + + {activeTabKey === 0 ? ( + + ) : activeTabKey === 1 ? ( + + ) : activeTabKey === 2 ? ( + + ) : activeTabKey === 3 ? ( + + ) : null} + + + + + + + SBOMs{" "} + + {sbomTotalCount} + + + } + actions={ + <> + + + + {sbomPopover(sbomPopoverRef)} + + } + > + + + + Packages{" "} + + {packageTotalCount} + + + } + > + + + + CVEs{" "} + + {vulnerabilityTotalCount} + + + } + > + + + + Advisories{" "} + + {vulnerabilityTotalCount} + + + } + > + + + + + + ); +}; diff --git a/client/src/app/pages/search/search.tsx b/client/src/app/pages/search/search.tsx index f026b3ec..132c3ee9 100644 --- a/client/src/app/pages/search/search.tsx +++ b/client/src/app/pages/search/search.tsx @@ -1,19 +1,9 @@ import React from "react"; import { - Badge, - Card, - CardBody, PageSection, PageSectionVariants, - Popover, SearchInput, - Split, - SplitItem, - Tab, - TabAction, - TabTitleText, - Tabs, Text, TextContent, Toolbar, @@ -21,31 +11,32 @@ import { ToolbarGroup, ToolbarItem, } from "@patternfly/react-core"; -import HelpIcon from "@patternfly/react-icons/dist/esm/icons/help-icon"; -import { FilterPanel } from "@app/components/FilterPanel"; import { FILTER_TEXT_CATEGORY_KEY } from "@app/Constants"; import { SearchProvider } from "./search-context"; import { AdvisorySearchContext } from "../advisory-list/advisory-context"; -import { AdvisoryTable } from "../advisory-list/advisory-table"; import { PackageSearchContext } from "../package-list/package-context"; -import { PackageTable } from "../package-list/package-table"; import { SbomSearchContext } from "../sbom-list/sbom-context"; -import { SbomTable } from "../sbom-list/sbom-table"; import { VulnerabilitySearchContext } from "../vulnerability-list/vulnerability-context"; -import { VulnerabilityTable } from "../vulnerability-list/vulnerability-table"; +import { SearchTabs } from "./components/SearchTabs"; -export const SearchPage: React.FC = () => { +type SearchPageProps = { + searchBodyOverride?: React.ReactNode; +}; + +export const SearchPage: React.FC = ({ + searchBodyOverride, +}) => { return ( - + ); }; -export const Search: React.FC = () => { +export const Search: React.FC = ({ searchBodyOverride }) => { const { tableControls: sbomTableControls } = React.useContext(SbomSearchContext); const { tableControls: packageTableControls } = @@ -85,6 +76,13 @@ export const Search: React.FC = () => { }, } = React.useContext(AdvisorySearchContext); + const filterPanelProps = { + advisoryFilterPanelProps, + packageFilterPanelProps, + sbomFilterPanelProps, + vulnerabilityFilterPanelProps, + }; + // Search const [searchValue, setSearchValue] = React.useState( @@ -119,26 +117,12 @@ export const Search: React.FC = () => { }); }; - // Tabs - - const [activeTabKey, setActiveTabKey] = React.useState(0); - - const handleTabClick = ( - _event: React.MouseEvent | React.KeyboardEvent | MouseEvent, - tabIndex: string | number - ) => { - setActiveTabKey(tabIndex); - }; - - const sbomPopoverRef = React.createRef(); - - const sbomPopover = (popoverRef: React.RefObject) => ( - Software Bill of Materials for Products and Containers. - } - position={"right"} - triggerRef={popoverRef} + const searchTabs = ( + ); @@ -174,110 +158,7 @@ export const Search: React.FC = () => { - - - - - - {activeTabKey === 0 ? ( - - ) : activeTabKey === 1 ? ( - - ) : activeTabKey === 2 ? ( - - ) : activeTabKey === 3 ? ( - - ) : null} - - - - - - - SBOMs{" "} - - {sbomTotalCount} - - - } - actions={ - <> - - - - {sbomPopover(sbomPopoverRef)} - - } - > - - - - Packages{" "} - - {packageTotalCount} - - - } - > - - - - CVEs{" "} - - {vulnerabilityTotalCount} - - - } - > - - - - Advisories{" "} - - {vulnerabilityTotalCount} - - - } - > - - - - - - + {searchBodyOverride || searchTabs} ); }; diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A03bb16dc-3cff-4a7d-8393-9a6a7124ecc2.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A03bb16dc-3cff-4a7d-8393-9a6a7124ecc2.json new file mode 100644 index 00000000..edd23b04 --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A03bb16dc-3cff-4a7d-8393-9a6a7124ecc2.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:03bb16dc-3cff-4a7d-8393-9a6a7124ecc2", + "identifier": "CVE-2023-1664", + "issuer": { + "id": "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", + "name": "redhat", + "cpe_key": null, + "website": null + }, + "published": "2023-05-26T00:00:00Z", + "modified": "2024-08-02T05:57:24.969Z", + "withdrawn": null, + "title": "A flaw was found in Keycloak. This flaw depends on a non-default configuration \"Revalidate Client Certificate\" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of \"Cannot validate client certificate trust: Truststore not available\". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use \"Revalidate Client Certificate\" this flaw is avoidable.", + "labels": { + "type": "cve" + }, + "sha256": "sha256:72b745cfcceed4e905de9d15f6826bf70fd5429fcb5bb31147522f7b7e6389cd", + "sha384": "sha384:f559a4d9e893291384e6acaae203d590c979786311cc19351e89e1467baf1d95870f7783d189922e955b15683e36fc48", + "sha512": "sha512:b536afb9cde0e25a3294c7cb3d72371453dc42dca2a732b34fafe7ce8a75a893a4a4822908eadaad9e75e182f1a4b0b31a92a0b104df3485d0541d050e8fc2ab", + "size": 3162, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-1664", + "title": "A flaw was found in Keycloak. This flaw depends on a non-default configuration \"Revalidate Client Certificate\" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of \"Cannot validate client certificate trust: Truststore not available\". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use \"Revalidate Client Certificate\" this flaw is avoidable.", + "description": "A flaw was found in Keycloak. This flaw depends on a non-default configuration \"Revalidate Client Certificate\" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of \"Cannot validate client certificate trust: Truststore not available\". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use \"Revalidate Client Certificate\" this flaw is avoidable.", + "reserved": "2023-03-27T00:00:00Z", + "published": "2023-05-26T00:00:00Z", + "modified": "2024-08-02T05:57:24.969Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-295"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A32600b15-f2c1-4115-bcfb-0d0e1786f86d.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A32600b15-f2c1-4115-bcfb-0d0e1786f86d.json new file mode 100644 index 00000000..686b7b7d --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A32600b15-f2c1-4115-bcfb-0d0e1786f86d.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:32600b15-f2c1-4115-bcfb-0d0e1786f86d", + "identifier": "CVE-2023-0044", + "issuer": { + "id": "d20006a8-1d58-4de7-91ac-7a1aa012324a", + "name": "redhat", + "cpe_key": null, + "website": null + }, + "published": "2023-02-23T00:00:00Z", + "modified": "2024-08-02T04:54:32.575Z", + "withdrawn": null, + "title": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "labels": { + "type": "cve" + }, + "sha256": "sha256:df2918bec606d2607d81ae18e985f8cd146918f91bc73793c0cc419e65a5fd35", + "sha384": "sha384:113316052f6c46547767d40d82b8d3afc38f43f22b47e5909f8d4951232c369c1406d30ae318827e03c982be2028c0e0", + "sha512": "sha512:3d7e89cdf6fa8183e5a1dbc7538db4ef4b3f48a215611a37e2149595a74c503b905b46dcd569ec67b44f9c8d3a11d4c70f04542f5e77b2bf0c7774a56394d1bf", + "size": 2892, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-0044", + "title": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "description": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "reserved": "2023-01-04T00:00:00Z", + "published": "2023-02-23T00:00:00Z", + "modified": "2024-08-02T04:54:32.575Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A459c504b-7e09-4ea9-9cbb-baa8ce040e83.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A459c504b-7e09-4ea9-9cbb-baa8ce040e83.json new file mode 100644 index 00000000..46902d5c --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A459c504b-7e09-4ea9-9cbb-baa8ce040e83.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:459c504b-7e09-4ea9-9cbb-baa8ce040e83", + "identifier": "CVE-2023-1436", + "issuer": { + "id": "bb1dc009-4428-4163-8dee-ddac5823f1fb", + "name": "JFROG", + "cpe_key": null, + "website": null + }, + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "labels": { + "type": "cve" + }, + "sha256": "sha256:dfe61f4eabad4795e6bbc9074fc0f51024275809128410cd803fc8d5cfde89b4", + "sha384": "sha384:d35fd9015b35864544b11e53bf8cc923da6facd641fed4d99152e06f0fabc83e2b4eb7f2b062597d91fbbe98dd177b67", + "sha512": "sha512:b905135296652ff7b27620150fe12e67908ad7b0b5299ba9974735f7fc2608ebf2a7188c30570f627a3c0646cd614b54c727a3d7b37e90b0e122a1ff5c81fffc", + "size": 4531, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A671dd85b-409f-4509-9a50-c4b2404ac10a.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A671dd85b-409f-4509-9a50-c4b2404ac10a.json new file mode 100644 index 00000000..4e6f2fa8 --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A671dd85b-409f-4509-9a50-c4b2404ac10a.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:671dd85b-409f-4509-9a50-c4b2404ac10a", + "identifier": "CVE-2023-0481", + "issuer": { + "id": "8e0a1182-9579-4ab2-8913-9a1c37b224e3", + "name": "redhat", + "cpe_key": null, + "website": null + }, + "published": "2023-02-24T00:00:00Z", + "modified": "2024-08-02T05:10:56.412Z", + "withdrawn": null, + "title": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "labels": { + "type": "cve" + }, + "sha256": "sha256:9453778b1ff60cff4d9bf1455615dc5035889e225ece201781001f29255aa779", + "sha384": "sha384:b2d77c3560c861da161af3ab5bd20775298e39d014b5d43b0be81147c2de5ecb02844fefcebe179d54c6313278e7e0dd", + "sha512": "sha512:2953fb9855e78a9a59addc6a0337d0755efb5347a653556e1f7f08eb260814bc7104bb26f89dc16ffeef56a4f1084898b98c6c0864db5f6d924cde3acdf6fd18", + "size": 2530, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-0481", + "title": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-24T00:00:00Z", + "modified": "2024-08-02T05:10:56.412Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A673acfc8-ea7d-4c6d-aff9-20cf70caade0.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A673acfc8-ea7d-4c6d-aff9-20cf70caade0.json new file mode 100644 index 00000000..768334b0 --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A673acfc8-ea7d-4c6d-aff9-20cf70caade0.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:673acfc8-ea7d-4c6d-aff9-20cf70caade0", + "identifier": "CVE-2023-0482", + "issuer": { + "id": "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", + "name": "redhat", + "cpe_key": null, + "website": null + }, + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "labels": { + "type": "cve" + }, + "sha256": "sha256:0f6262e341bdebc54c48d65342bcbfd8c941b661c0291d4fde3cf724fdda741a", + "sha384": "sha384:8cc216134f63b18debfb447d0669b786db108b7cc8b1d19b262d32c48d9e0d306cbbf884dad0e1acf0983b71640569f4", + "sha512": "sha512:9a56d4e4de0225274022953ba8f4df1e3eb16cfd3bee96ee459b14398d8b075247427fa1882771cbb05fb3fa86f44797a25dd7912183d9878d8de7c096a5d9b1", + "size": 3009, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A87aa81c3-2aa5-438e-b5d4-d67ca4e321a9.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A87aa81c3-2aa5-438e-b5d4-d67ca4e321a9.json new file mode 100644 index 00000000..abca095e --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A87aa81c3-2aa5-438e-b5d4-d67ca4e321a9.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:87aa81c3-2aa5-438e-b5d4-d67ca4e321a9", + "identifier": "CVE-2023-1584", + "issuer": { + "id": "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", + "name": "redhat", + "cpe_key": null, + "website": null + }, + "published": "2023-10-04T10:47:37.831Z", + "modified": "2024-08-02T05:57:23.278Z", + "withdrawn": null, + "title": "Quarkus-oidc: id and access tokens leak via the authorization code flow", + "labels": { + "type": "cve" + }, + "sha256": "sha256:b0d46c1f88f3edc59ace6252b3e5a7efad091934e1efd5fc24b0da7ef70375c1", + "sha384": "sha384:8a21b85944b6ead2d35df69691a28040b4b5ba280f1c195045792445214dc400d140a7748c62e385a3beb7647006c54a", + "sha512": "sha512:0c7ed4fb25fc88a12218aa4f979615793825c38750b040be063130921f8def0e7d130d69393637c1e265801b7a9526a9ff0b622014c72a3fd295bcebddb683aa", + "size": 9029, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-1584", + "title": "Quarkus-oidc: id and access tokens leak via the authorization code flow", + "description": "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", + "reserved": "2023-03-22T20:15:15.323Z", + "published": "2023-10-04T10:47:37.831Z", + "modified": "2024-08-02T05:57:23.278Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-200"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3A88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3A88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c.json new file mode 100644 index 00000000..e4cfbf3c --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3A88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c", + "identifier": "CVE-2023-20860", + "issuer": { + "id": "34973ac6-8ad3-4c55-8aa7-03d53cd11d39", + "name": "vmware", + "cpe_key": null, + "website": null + }, + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "labels": { + "type": "cve" + }, + "sha256": "sha256:6f64b679d476a078b010f57868566ea62aef3e6e80967d967e711f60f80bda19", + "sha384": "sha384:c1499294f85347ef96fbfa55e0958dea8aa8d25f66ea9bf221e664cf93d576db32f2d12860933e7b3c49acdb535f6f81", + "sha512": "sha512:42abb7521389736a011790cdb0b303cff269f6cc00b7eaae1cfe878ee88d4f7eafb209b9ff355b93a9cd5ebbb4bb68b18a6286230a6a69b058606291c3a8d338", + "size": 3022, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3Ad99d1421-e2fd-49c2-b2dd-82fe848fff48.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3Ad99d1421-e2fd-49c2-b2dd-82fe848fff48.json new file mode 100644 index 00000000..624ee707 --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3Ad99d1421-e2fd-49c2-b2dd-82fe848fff48.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:d99d1421-e2fd-49c2-b2dd-82fe848fff48", + "identifier": "CVE-2023-1370", + "issuer": { + "id": "5b88a47d-03d5-4117-8657-d611a0ce432b", + "name": "JFROG", + "cpe_key": null, + "website": null + }, + "published": "2023-03-13T09:04:36.365Z", + "modified": "2024-08-02T05:49:10.25Z", + "withdrawn": null, + "title": "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", + "labels": { + "type": "cve" + }, + "sha256": "sha256:cf24f4f6a00bb7af358f026ffcaaf89a0f55f44c93f5bb8b717d48b0a7bcb527", + "sha384": "sha384:55c10b2e628574cf1102903fbe48faa164a09f70837d15221d86b9de637eee1d319db54a48c5d3402ed9261a23188849", + "sha512": "sha512:4fb885b39a5c34f935ea7a5736eb054df1db402368a89e0199299a2930c5195b4e54591a233e9339400cce8a085de6064944d19aeee8b480a6cbd5ce636cb90b", + "size": 5555, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-1370", + "title": "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", + "description": "[Json-smart](https://netplex.github.io/json-smart/) is a performance focused, JSON processor lib.\n\nWhen reaching a ‘[‘ or ‘{‘ character in the JSON input, the code parses an array or an object respectively.\n\nIt was discovered that the code does not have any limit to the nesting of such arrays or objects. Since the parsing of nested arrays and objects is done recursively, nesting too many of them can cause a stack exhaustion (stack overflow) and crash the software.\n\n", + "reserved": "2023-03-13T08:35:00.695Z", + "published": "2023-03-13T09:04:36.365Z", + "modified": "2024-08-02T05:49:10.25Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3Aea257645-f52f-4723-9c73-a4ed589f67ac.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3Aea257645-f52f-4723-9c73-a4ed589f67ac.json new file mode 100644 index 00000000..ecac8d2d --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3Aea257645-f52f-4723-9c73-a4ed589f67ac.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:ea257645-f52f-4723-9c73-a4ed589f67ac", + "identifier": "CVE-2023-1108", + "issuer": { + "id": "64c20c61-472a-4259-bfde-b62ac7396343", + "name": "redhat", + "cpe_key": null, + "website": null + }, + "published": "2023-09-14T14:48:58.869Z", + "modified": "2024-08-02T05:32:46.37Z", + "withdrawn": null, + "title": "Undertow: infinite loop in sslconduit during close", + "labels": { + "type": "cve" + }, + "sha256": "sha256:584614c4ed0621fc17e58d2f9e4467ed54b7e8d4681ca62056d9e547529b4878", + "sha384": "sha384:5e01e71ec6b1022bcad12905a57eeeebfe8a2d1470ec6a6cd67f97755a55e3dd1ad16ee2fc217fa05efda7788efd5fd0", + "sha512": "sha512:d5b8d4b5b395f5a4bf9eb3fb55e68d071a092621b7a0633f6c980c0ee0879b76c4e195372d3f11f12ef028349faabdcbc1d7a32f198b21b2da5da9294455d8fc", + "size": 38300, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2023-1108", + "title": "Undertow: infinite loop in sslconduit during close", + "description": "A flaw was found in undertow. This issue makes achieving a denial of service possible due to an unexpected handshake status updated in SslConduit, where the loop never terminates.", + "reserved": "2023-03-01T00:27:23.587Z", + "published": "2023-09-14T14:48:58.869Z", + "modified": "2024-08-02T05:32:46.37Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-835"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/advisory/details/urn%3Auuid%3Aee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6.json b/client/src/mocks/data/advisory/details/urn%3Auuid%3Aee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6.json new file mode 100644 index 00000000..05a795cf --- /dev/null +++ b/client/src/mocks/data/advisory/details/urn%3Auuid%3Aee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6.json @@ -0,0 +1,41 @@ +{ + "uuid": "urn:uuid:ee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6", + "identifier": "CVE-2022-45787", + "issuer": { + "id": "1f998387-0fdc-403b-a492-418b22f76f69", + "name": "apache", + "cpe_key": null, + "website": null + }, + "published": "2023-01-06T09:31:40.118Z", + "modified": "2024-08-03T14:17:04.186Z", + "withdrawn": null, + "title": "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "labels": { + "type": "cve" + }, + "sha256": "sha256:9905eaad399e6d47e5aceae07a1f271ff878332118f613197fb959fbca0a0895", + "sha384": "sha384:6b43007cb7e13ee46160500fee9f35de731db6fd4e713a9a8bcf2f65885d0a9c05a7a95558090ee0e657c1602b03eb07", + "sha512": "sha512:b80f8db0e845a0f2a0b84583efd2c90935e3653e31beba06e1eb1011db0c49bab6a925d3c2d84dc35ebe8a900a704611b5e76724e6cf16b19b13946897fc5b71", + "size": 4360, + "vulnerabilities": [ + { + "normative": true, + "identifier": "CVE-2022-45787", + "title": "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "description": "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", + "reserved": "2022-11-22T08:49:26.227Z", + "published": "2023-01-06T09:31:40.118Z", + "modified": "2024-08-03T14:17:04.186Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-312"], + "severity": "none", + "score": 0.0, + "cvss3_scores": [] + } + ], + "average_severity": null, + "average_score": null +} diff --git a/client/src/mocks/data/purl/details/14c5c61d-c4cc-56fb-9db6-f62541076b80.json b/client/src/mocks/data/purl/details/14c5c61d-c4cc-56fb-9db6-f62541076b80.json new file mode 100644 index 00000000..cb44e47c --- /dev/null +++ b/client/src/mocks/data/purl/details/14c5c61d-c4cc-56fb-9db6-f62541076b80.json @@ -0,0 +1,358 @@ +{ + "uuid": "14c5c61d-c4cc-56fb-9db6-f62541076b80", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2?arch=x86_64", + "version": { + "uuid": "002058a4-84e7-50f2-ab86-48459a573a24", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2", + "version": "13.11-1.el9_2" + }, + "base": { + "uuid": "330091eb-120d-5b2a-983f-f75036dfd57e", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo" + }, + "advisories": [ + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + } + ], + "licenses": [] +} diff --git a/client/src/mocks/data/purl/details/25ddc770-5fde-53a8-8451-41091d5fcb3b.json b/client/src/mocks/data/purl/details/25ddc770-5fde-53a8-8451-41091d5fcb3b.json new file mode 100644 index 00000000..b1532f53 --- /dev/null +++ b/client/src/mocks/data/purl/details/25ddc770-5fde-53a8-8451-41091d5fcb3b.json @@ -0,0 +1,358 @@ +{ + "uuid": "25ddc770-5fde-53a8-8451-41091d5fcb3b", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2?arch=aarch64", + "version": { + "uuid": "002058a4-84e7-50f2-ab86-48459a573a24", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2", + "version": "13.11-1.el9_2" + }, + "base": { + "uuid": "330091eb-120d-5b2a-983f-f75036dfd57e", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo" + }, + "advisories": [ + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + } + ], + "licenses": [] +} diff --git a/client/src/mocks/data/purl/details/62c9cfab-997b-5126-ad5c-90bc277e048f.json b/client/src/mocks/data/purl/details/62c9cfab-997b-5126-ad5c-90bc277e048f.json new file mode 100644 index 00000000..9817c0cd --- /dev/null +++ b/client/src/mocks/data/purl/details/62c9cfab-997b-5126-ad5c-90bc277e048f.json @@ -0,0 +1,358 @@ +{ + "uuid": "62c9cfab-997b-5126-ad5c-90bc277e048f", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2?arch=ppc64le", + "version": { + "uuid": "002058a4-84e7-50f2-ab86-48459a573a24", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2", + "version": "13.11-1.el9_2" + }, + "base": { + "uuid": "330091eb-120d-5b2a-983f-f75036dfd57e", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo" + }, + "advisories": [ + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + } + ], + "licenses": [] +} diff --git a/client/src/mocks/data/purl/details/81293bba-1ab5-5524-8444-0bd55d19b9b3.json b/client/src/mocks/data/purl/details/81293bba-1ab5-5524-8444-0bd55d19b9b3.json new file mode 100644 index 00000000..adb9e495 --- /dev/null +++ b/client/src/mocks/data/purl/details/81293bba-1ab5-5524-8444-0bd55d19b9b3.json @@ -0,0 +1,358 @@ +{ + "uuid": "81293bba-1ab5-5524-8444-0bd55d19b9b3", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2?arch=s390x", + "version": { + "uuid": "002058a4-84e7-50f2-ab86-48459a573a24", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo@13.11-1.el9_2", + "version": "13.11-1.el9_2" + }, + "base": { + "uuid": "330091eb-120d-5b2a-983f-f75036dfd57e", + "purl": "pkg:rpm/redhat/postgresql-pltcl-debuginfo" + }, + "advisories": [ + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + } + }, + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + } + } + ] + } + ], + "licenses": [] +} diff --git a/client/src/mocks/data/purl/details/b9a43108-525d-59ea-bc31-ff217d4c7925.json b/client/src/mocks/data/purl/details/b9a43108-525d-59ea-bc31-ff217d4c7925.json new file mode 100644 index 00000000..d9a57fb1 --- /dev/null +++ b/client/src/mocks/data/purl/details/b9a43108-525d-59ea-bc31-ff217d4c7925.json @@ -0,0 +1,54 @@ +{ + "uuid": "b9a43108-525d-59ea-bc31-ff217d4c7925", + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=3.74.7-3", + "version": { + "uuid": "001776b0-c8f7-5bdd-ad82-936ff42dc1d8", + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f", + "version": "sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f" + }, + "base": { + "uuid": "39082781-f0ba-56c3-86c5-4e7c843bbc94", + "purl": "pkg:oci/rhacs-roxctl-rhel8" + }, + "advisories": [ + { + "uuid": "urn:uuid:5b98f727-1145-4eca-8176-d3f2a32e0fce", + "identifier": "https://www.redhat.com/#CVE-2023-44487", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-10-10T00:00:00Z", + "modified": "2023-11-21T11:59:10Z", + "withdrawn": null, + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [] + }, + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:advanced_cluster_security:3.74:*:el8:*" + } + } + ] + } + ], + "licenses": [] +} diff --git a/client/src/mocks/data/purl/details/d6dea366-e8a6-5500-9aef-14464b717295.json b/client/src/mocks/data/purl/details/d6dea366-e8a6-5500-9aef-14464b717295.json new file mode 100644 index 00000000..1f7124c4 --- /dev/null +++ b/client/src/mocks/data/purl/details/d6dea366-e8a6-5500-9aef-14464b717295.json @@ -0,0 +1,54 @@ +{ + "uuid": "d6dea366-e8a6-5500-9aef-14464b717295", + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.2.9-5", + "version": { + "uuid": "001fe136-dcb0-5395-8ad2-86183e8483ad", + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20", + "version": "sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20" + }, + "base": { + "uuid": "159b129e-138a-53fe-8f74-b4efeccbf06c", + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8" + }, + "advisories": [ + { + "uuid": "urn:uuid:5b98f727-1145-4eca-8176-d3f2a32e0fce", + "identifier": "https://www.redhat.com/#CVE-2023-44487", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-10-10T00:00:00Z", + "modified": "2023-11-21T11:59:10Z", + "withdrawn": null, + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "vulnerability": { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [] + }, + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:multicluster_engine:2.2:*:el8:*" + } + } + ] + } + ], + "licenses": [] +} diff --git a/client/src/stories/v1/cve-details.stories.tsx b/client/src/stories/v1.2.x/cve-details.stories.tsx similarity index 100% rename from client/src/stories/v1/cve-details.stories.tsx rename to client/src/stories/v1.2.x/cve-details.stories.tsx diff --git a/client/src/stories/v1/home.stories.tsx b/client/src/stories/v1.2.x/home.stories.tsx similarity index 100% rename from client/src/stories/v1/home.stories.tsx rename to client/src/stories/v1.2.x/home.stories.tsx diff --git a/client/src/stories/v1/search.stories.tsx b/client/src/stories/v1.2.x/search.stories.tsx similarity index 76% rename from client/src/stories/v1/search.stories.tsx rename to client/src/stories/v1.2.x/search.stories.tsx index b09d9f8e..e16640d1 100644 --- a/client/src/stories/v1/search.stories.tsx +++ b/client/src/stories/v1.2.x/search.stories.tsx @@ -5,6 +5,10 @@ import { MemoryRouter } from "react-router"; import { NotificationsProvider } from "@app/components/NotificationsContext"; import { DefaultLayout } from "@app/layout"; +const CustomBody: React.FC = () => { + return
Custom body for search page
; +}; + const meta = { title: "v1/Search", component: SearchPage, @@ -24,6 +28,10 @@ const meta = { export default meta; type Story = StoryObj; -export const Primary: Story = { - args: {}, +export const Primary: Story = {}; + +export const WithCustomBody: Story = { + args: { + searchBodyOverride: , + }, }; From c1bcfb8378a0175abe69836e313431a7dee2b4f3 Mon Sep 17 00:00:00 2001 From: kahboom Date: Fri, 22 Nov 2024 17:06:58 +0000 Subject: [PATCH 2/5] feat(story): advisory table --- .../pages/advisory-list/advisory-context.tsx | 2 +- .../advisory-list/advisory-table.stories.tsx | 263 ++++++++ .../search/components/SearchTabs.stories.tsx | 198 +++++- .../pages/search/components/SearchTabs.tsx | 2 +- .../mocks/data/advisory-context-data.mock.ts | 610 ++++++++++++++++++ 5 files changed, 1063 insertions(+), 12 deletions(-) create mode 100644 client/src/app/pages/advisory-list/advisory-table.stories.tsx create mode 100644 client/src/mocks/data/advisory-context-data.mock.ts diff --git a/client/src/app/pages/advisory-list/advisory-context.tsx b/client/src/app/pages/advisory-list/advisory-context.tsx index 5dce3580..197a548c 100644 --- a/client/src/app/pages/advisory-list/advisory-context.tsx +++ b/client/src/app/pages/advisory-list/advisory-context.tsx @@ -17,7 +17,7 @@ import { import { useSelectionState } from "@app/hooks/useSelectionState"; import { useFetchAdvisories } from "@app/queries/advisories"; -interface IAdvisorySearchContext { +export interface IAdvisorySearchContext { tableControls: ITableControls< AdvisorySummary, "identifier" | "title" | "severity" | "modified" | "vulnerabilities", diff --git a/client/src/app/pages/advisory-list/advisory-table.stories.tsx b/client/src/app/pages/advisory-list/advisory-table.stories.tsx new file mode 100644 index 00000000..e1f0c3a6 --- /dev/null +++ b/client/src/app/pages/advisory-list/advisory-table.stories.tsx @@ -0,0 +1,263 @@ +import React from "react"; +import type { Meta, StoryObj } from "@storybook/react"; +import { BrowserRouter } from "react-router-dom"; +import { AdvisoryTable } from "./advisory-table"; +import { AdvisorySearchContext } from "./advisory-context"; +import listResponse from "@mocks/data/advisory/list.json"; + +const tableControlsCustom = { + tableName: "advisory", + persistenceKeyPrefix: "vn", + columnNames: { + identifier: "ID", + title: "Description", + severity: "CVSS", + published: "Date published", + sboms: "Related documents", + }, + isPaginationEnabled: true, + isSortEnabled: true, + sortableColumns: ["published", "sboms"], + isFilterEnabled: true, + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + ], + isExpansionEnabled: true, + expandableVariant: "compound", + filterState: { + filterValues: {}, + }, + sortState: { + activeSort: { + columnKey: "modified", + direction: "asc", + }, + }, + paginationState: { + pageNumber: 1, + itemsPerPage: 10, + }, + expansionState: { + expandedCells: {}, + }, + activeItemState: { + activeItemId: null, + }, + columnState: { + columns: [ + { + id: "identifier", + label: "ID", + isVisible: true, + }, + { + id: "title", + label: "Description", + isVisible: true, + }, + { + id: "severity", + label: "CVSS", + isVisible: true, + }, + { + id: "published", + label: "Date published", + isVisible: true, + }, + { + id: "sboms", + label: "Related documents", + isVisible: true, + }, + ], + }, + idProperty: "identifier", + currentPageItems: listResponse.items, + totalItemCount: listResponse.total, + isLoading: false, + selectionState: { + selectedItems: [], + areAllSelected: false, + }, + numColumnsBeforeData: 0, + numColumnsAfterData: 0, + numRenderedColumns: 5, + expansionDerivedState: { + isCellExpanded: jest.fn(), + }, + activeItemDerivedState: { + activeItem: null, + }, + propHelpers: { + toolbarProps: { + collapseListedFiltersBreakpoint: "xl", + clearFiltersButtonText: "Clear all filters", + }, + tableProps: { + isExpandable: false, + }, + filterToolbarProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + ], + filterValues: {}, + }, + filterPanelProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + ], + filterValues: {}, + }, + getThProps: () => {}, + getTrProps: () => {}, + getTdProps: () => {}, + }, +}; + +const meta = { + title: "Components/AdvisoryList/AdvisoryTable", + component: AdvisoryTable, + tags: ["autodocs"], + decorators: [ + (Story, { parameters }) => { + const { contextDefaultValue } = parameters; + return ( + + + + + + ); + }, + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const PrimaryState: Story = { + parameters: { + contextDefaultValue: { + isFetching: false, + fetchError: "", + tableControls: { ...tableControlsCustom }, + totalItemCount: 3, + currentPageItems: 10, + numRenderedColumns: 3, + }, + }, +}; + +// export const EmptyState: Story = { +// args: { +// isFetching: false, +// fetchError: "", +// tableControls: customTableControls, +// totalItemCount: 3, +// currentPageItems: 10, +// numRenderedColumns: 3, +// }, +// parameters: { +// contextDefaultValue: dummyContextData, +// }, +// }; diff --git a/client/src/app/pages/search/components/SearchTabs.stories.tsx b/client/src/app/pages/search/components/SearchTabs.stories.tsx index c2729afd..7b5c1b93 100644 --- a/client/src/app/pages/search/components/SearchTabs.stories.tsx +++ b/client/src/app/pages/search/components/SearchTabs.stories.tsx @@ -1,24 +1,202 @@ import React from "react"; - +import { AdvisorySearchContext } from "@app/pages/advisory-list/advisory-context"; import type { Meta, StoryObj } from "@storybook/react"; -import { SearchTabs } from "./SearchTabs"; -import { AxiosError } from "axios"; +import { SearchTabs, SearchTabsProps } from "./SearchTabs"; +import { IAdvisorySearchContext } from "@app/pages/advisory-list/advisory-context"; -type StoryArgs = { - fetchError?: AxiosError; - isFetching?: boolean; - vulnerabilityId: string; -}; +const mockContextValue: IAdvisorySearchContext = {} as IAdvisorySearchContext; const meta: Meta = { title: "Components/Search/SearchTabs", component: SearchTabs, + decorators: [ + (Story) => ( + + + + ), + ], }; export default meta; -type Story = StoryObj; +type Story = StoryObj; -export const DefaultState: Story = {}; +const customFilterPanelProps = { + advisoryFilterPanelProps: mockContextValue.tableControls.filterState, + // advisoryFilterPanelProps: { + // filterCategories: [ + // { + // categoryKey: "", + // title: "Filter text", + // placeholderText: "Search", + // type: "search", + // }, + // { + // categoryKey: "average_severity", + // title: "Severity", + // placeholderText: "Severity", + // type: "multiselect", + // selectOptions: [ + // { + // value: "none", + // label: "None", + // }, + // { + // value: "low", + // label: "Low", + // }, + // { + // value: "medium", + // label: "Medium", + // }, + // { + // value: "high", + // label: "High", + // }, + // { + // value: "critical", + // label: "Critical", + // }, + // ], + // }, + // { + // categoryKey: "modified", + // title: "Revision", + // type: "dateRange", + // }, + // ], + // filterValues: {}, + // }, + packageFilterPanelProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "type", + title: "Type", + placeholderText: "Type", + type: "multiselect", + selectOptions: [ + { + value: "maven", + label: "Maven", + }, + { + value: "rpm", + label: "RPM", + }, + { + value: "npm", + label: "NPM", + }, + { + value: "oci", + label: "OCI", + }, + ], + }, + { + categoryKey: "arch", + title: "Architecture", + placeholderText: "Architecture", + type: "multiselect", + selectOptions: [ + { + value: "x86_64", + label: "AMD 64bit", + }, + { + value: "aarch64", + label: "ARM 64bit", + }, + { + value: "ppc64le", + label: "PowerPC", + }, + { + value: "s390x", + label: "S390", + }, + { + value: "noarch", + label: "No Arch", + }, + ], + }, + ], + filterValues: {}, + }, + sbomFilterPanelProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "published", + title: "Created on", + type: "dateRange", + }, + ], + filterValues: {}, + }, + vulnerabilityFilterPanelProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + { + categoryKey: "published", + title: "Created on", + type: "dateRange", + }, + ], + filterValues: {}, + }, +}; + +export const DefaultState: Story = { + args: { + filterPanelProps: customFilterPanelProps, + }, +}; export const ErrorState: Story = {}; diff --git a/client/src/app/pages/search/components/SearchTabs.tsx b/client/src/app/pages/search/components/SearchTabs.tsx index f31c8892..4dbefe8a 100644 --- a/client/src/app/pages/search/components/SearchTabs.tsx +++ b/client/src/app/pages/search/components/SearchTabs.tsx @@ -20,7 +20,7 @@ import { VulnerabilityTable } from "@app/pages/vulnerability-list/vulnerability- import HelpIcon from "@patternfly/react-icons/dist/esm/icons/help-icon"; import { FilterPanel } from "@app/components/FilterPanel"; -interface SearchTabsProps { +export interface SearchTabsProps { filterPanelProps: { advisoryFilterPanelProps?: any; packageFilterPanelProps?: any; diff --git a/client/src/mocks/data/advisory-context-data.mock.ts b/client/src/mocks/data/advisory-context-data.mock.ts new file mode 100644 index 00000000..2fc5c6e1 --- /dev/null +++ b/client/src/mocks/data/advisory-context-data.mock.ts @@ -0,0 +1,610 @@ +export default { + totalItemCount: 58, + isFetching: false, + fetchError: null, + tableControls: { + tableName: "advisory", + persistenceKeyPrefix: "ad", + persistTo: "urlParams", + columnNames: { + identifier: "ID", + title: "Title", + severity: "Aggregated Severity", + modified: "Revision", + vulnerabilities: "Vulnerabilities", + }, + isPaginationEnabled: true, + isSortEnabled: true, + sortableColumns: ["identifier", "severity", "modified"], + isFilterEnabled: true, + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "Severity", + placeholderText: "Severity", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + { + categoryKey: "modified", + title: "Revision", + type: "dateRange", + }, + ], + isExpansionEnabled: false, + filterState: { + filterValues: {}, + }, + sortState: { + activeSort: { + columnKey: "identifier", + direction: "asc", + }, + }, + paginationState: { + pageNumber: 1, + itemsPerPage: 10, + }, + expansionState: { + expandedCells: {}, + }, + activeItemState: { + activeItemId: null, + }, + columnState: { + columns: [ + { + id: "identifier", + label: "ID", + isVisible: true, + }, + { + id: "title", + label: "Title", + isVisible: true, + }, + { + id: "severity", + label: "Aggregated Severity", + isVisible: true, + }, + { + id: "modified", + label: "Revision", + isVisible: true, + }, + { + id: "vulnerabilities", + label: "Vulnerabilities", + isVisible: true, + }, + ], + }, + idProperty: "identifier", + currentPageItems: [ + { + uuid: "urn:uuid:ee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6", + identifier: "CVE-2022-45787", + issuer: { + id: "1f998387-0fdc-403b-a492-418b22f76f69", + name: "apache", + cpe_key: null, + website: null, + }, + published: "2023-01-06T09:31:40.118Z", + modified: "2024-08-03T14:17:04.186Z", + withdrawn: null, + title: + "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + labels: { + type: "cve", + }, + sha256: + "sha256:9905eaad399e6d47e5aceae07a1f271ff878332118f613197fb959fbca0a0895", + sha384: + "sha384:6b43007cb7e13ee46160500fee9f35de731db6fd4e713a9a8bcf2f65885d0a9c05a7a95558090ee0e657c1602b03eb07", + sha512: + "sha512:b80f8db0e845a0f2a0b84583efd2c90935e3653e31beba06e1eb1011db0c49bab6a925d3c2d84dc35ebe8a900a704611b5e76724e6cf16b19b13946897fc5b71", + size: 4360, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2022-45787", + title: + "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + description: + "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", + reserved: "2022-11-22T08:49:26.227Z", + published: "2023-01-06T09:31:40.118Z", + modified: "2024-08-03T14:17:04.186Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-312"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:32600b15-f2c1-4115-bcfb-0d0e1786f86d", + identifier: "CVE-2023-0044", + issuer: { + id: "d20006a8-1d58-4de7-91ac-7a1aa012324a", + name: "redhat", + cpe_key: null, + website: null, + }, + published: "2023-02-23T00:00:00Z", + modified: "2024-08-02T04:54:32.575Z", + withdrawn: null, + title: + "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + labels: { + type: "cve", + }, + sha256: + "sha256:df2918bec606d2607d81ae18e985f8cd146918f91bc73793c0cc419e65a5fd35", + sha384: + "sha384:113316052f6c46547767d40d82b8d3afc38f43f22b47e5909f8d4951232c369c1406d30ae318827e03c982be2028c0e0", + sha512: + "sha512:3d7e89cdf6fa8183e5a1dbc7538db4ef4b3f48a215611a37e2149595a74c503b905b46dcd569ec67b44f9c8d3a11d4c70f04542f5e77b2bf0c7774a56394d1bf", + size: 2892, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-0044", + title: + "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + description: + "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + reserved: "2023-01-04T00:00:00Z", + published: "2023-02-23T00:00:00Z", + modified: "2024-08-02T04:54:32.575Z", + withdrawn: null, + discovered: null, + released: null, + cwes: [], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:671dd85b-409f-4509-9a50-c4b2404ac10a", + identifier: "CVE-2023-0481", + issuer: { + id: "8e0a1182-9579-4ab2-8913-9a1c37b224e3", + name: "redhat", + cpe_key: null, + website: null, + }, + published: "2023-02-24T00:00:00Z", + modified: "2024-08-02T05:10:56.412Z", + withdrawn: null, + title: + "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + labels: { + type: "cve", + }, + sha256: + "sha256:9453778b1ff60cff4d9bf1455615dc5035889e225ece201781001f29255aa779", + sha384: + "sha384:b2d77c3560c861da161af3ab5bd20775298e39d014b5d43b0be81147c2de5ecb02844fefcebe179d54c6313278e7e0dd", + sha512: + "sha512:2953fb9855e78a9a59addc6a0337d0755efb5347a653556e1f7f08eb260814bc7104bb26f89dc16ffeef56a4f1084898b98c6c0864db5f6d924cde3acdf6fd18", + size: 2530, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-0481", + title: + "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + description: + "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + reserved: "2023-01-24T00:00:00Z", + published: "2023-02-24T00:00:00Z", + modified: "2024-08-02T05:10:56.412Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-378"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:673acfc8-ea7d-4c6d-aff9-20cf70caade0", + identifier: "CVE-2023-0482", + issuer: { + id: "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", + name: "redhat", + cpe_key: null, + website: null, + }, + published: "2023-02-17T00:00:00Z", + modified: "2024-08-02T05:10:56.348Z", + withdrawn: null, + title: + "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + labels: { + type: "cve", + }, + sha256: + "sha256:0f6262e341bdebc54c48d65342bcbfd8c941b661c0291d4fde3cf724fdda741a", + sha384: + "sha384:8cc216134f63b18debfb447d0669b786db108b7cc8b1d19b262d32c48d9e0d306cbbf884dad0e1acf0983b71640569f4", + sha512: + "sha512:9a56d4e4de0225274022953ba8f4df1e3eb16cfd3bee96ee459b14398d8b075247427fa1882771cbb05fb3fa86f44797a25dd7912183d9878d8de7c096a5d9b1", + size: 3009, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-0482", + title: + "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + description: + "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + reserved: "2023-01-24T00:00:00Z", + published: "2023-02-17T00:00:00Z", + modified: "2024-08-02T05:10:56.348Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-378"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:ea257645-f52f-4723-9c73-a4ed589f67ac", + identifier: "CVE-2023-1108", + issuer: { + id: "64c20c61-472a-4259-bfde-b62ac7396343", + name: "redhat", + cpe_key: null, + website: null, + }, + published: "2023-09-14T14:48:58.869Z", + modified: "2024-08-02T05:32:46.37Z", + withdrawn: null, + title: "Undertow: infinite loop in sslconduit during close", + labels: { + type: "cve", + }, + sha256: + "sha256:584614c4ed0621fc17e58d2f9e4467ed54b7e8d4681ca62056d9e547529b4878", + sha384: + "sha384:5e01e71ec6b1022bcad12905a57eeeebfe8a2d1470ec6a6cd67f97755a55e3dd1ad16ee2fc217fa05efda7788efd5fd0", + sha512: + "sha512:d5b8d4b5b395f5a4bf9eb3fb55e68d071a092621b7a0633f6c980c0ee0879b76c4e195372d3f11f12ef028349faabdcbc1d7a32f198b21b2da5da9294455d8fc", + size: 38300, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-1108", + title: "Undertow: infinite loop in sslconduit during close", + description: + "A flaw was found in undertow. This issue makes achieving a denial of service possible due to an unexpected handshake status updated in SslConduit, where the loop never terminates.", + reserved: "2023-03-01T00:27:23.587Z", + published: "2023-09-14T14:48:58.869Z", + modified: "2024-08-02T05:32:46.37Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-835"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:d99d1421-e2fd-49c2-b2dd-82fe848fff48", + identifier: "CVE-2023-1370", + issuer: { + id: "5b88a47d-03d5-4117-8657-d611a0ce432b", + name: "JFROG", + cpe_key: null, + website: null, + }, + published: "2023-03-13T09:04:36.365Z", + modified: "2024-08-02T05:49:10.25Z", + withdrawn: null, + title: + "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", + labels: { + type: "cve", + }, + sha256: + "sha256:cf24f4f6a00bb7af358f026ffcaaf89a0f55f44c93f5bb8b717d48b0a7bcb527", + sha384: + "sha384:55c10b2e628574cf1102903fbe48faa164a09f70837d15221d86b9de637eee1d319db54a48c5d3402ed9261a23188849", + sha512: + "sha512:4fb885b39a5c34f935ea7a5736eb054df1db402368a89e0199299a2930c5195b4e54591a233e9339400cce8a085de6064944d19aeee8b480a6cbd5ce636cb90b", + size: 5555, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-1370", + title: + "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", + description: + "[Json-smart](https://netplex.github.io/json-smart/) is a performance focused, JSON processor lib.\n\nWhen reaching a ‘[‘ or ‘{‘ character in the JSON input, the code parses an array or an object respectively.\n\nIt was discovered that the code does not have any limit to the nesting of such arrays or objects. Since the parsing of nested arrays and objects is done recursively, nesting too many of them can cause a stack exhaustion (stack overflow) and crash the software.\n\n", + reserved: "2023-03-13T08:35:00.695Z", + published: "2023-03-13T09:04:36.365Z", + modified: "2024-08-02T05:49:10.25Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-674"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:459c504b-7e09-4ea9-9cbb-baa8ce040e83", + identifier: "CVE-2023-1436", + issuer: { + id: "bb1dc009-4428-4163-8dee-ddac5823f1fb", + name: "JFROG", + cpe_key: null, + website: null, + }, + published: "2023-03-16T20:59:51.072Z", + modified: "2024-08-02T05:49:11.438Z", + withdrawn: null, + title: + "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + labels: { + type: "cve", + }, + sha256: + "sha256:dfe61f4eabad4795e6bbc9074fc0f51024275809128410cd803fc8d5cfde89b4", + sha384: + "sha384:d35fd9015b35864544b11e53bf8cc923da6facd641fed4d99152e06f0fabc83e2b4eb7f2b062597d91fbbe98dd177b67", + sha512: + "sha512:b905135296652ff7b27620150fe12e67908ad7b0b5299ba9974735f7fc2608ebf2a7188c30570f627a3c0646cd614b54c727a3d7b37e90b0e122a1ff5c81fffc", + size: 4531, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-1436", + title: + "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + description: + "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + reserved: "2023-03-16T20:44:44.527Z", + published: "2023-03-16T20:59:51.072Z", + modified: "2024-08-02T05:49:11.438Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-674"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:87aa81c3-2aa5-438e-b5d4-d67ca4e321a9", + identifier: "CVE-2023-1584", + issuer: { + id: "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", + name: "redhat", + cpe_key: null, + website: null, + }, + published: "2023-10-04T10:47:37.831Z", + modified: "2024-08-02T05:57:23.278Z", + withdrawn: null, + title: + "Quarkus-oidc: id and access tokens leak via the authorization code flow", + labels: { + type: "cve", + }, + sha256: + "sha256:b0d46c1f88f3edc59ace6252b3e5a7efad091934e1efd5fc24b0da7ef70375c1", + sha384: + "sha384:8a21b85944b6ead2d35df69691a28040b4b5ba280f1c195045792445214dc400d140a7748c62e385a3beb7647006c54a", + sha512: + "sha512:0c7ed4fb25fc88a12218aa4f979615793825c38750b040be063130921f8def0e7d130d69393637c1e265801b7a9526a9ff0b622014c72a3fd295bcebddb683aa", + size: 9029, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-1584", + title: + "Quarkus-oidc: id and access tokens leak via the authorization code flow", + description: + "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", + reserved: "2023-03-22T20:15:15.323Z", + published: "2023-10-04T10:47:37.831Z", + modified: "2024-08-02T05:57:23.278Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-200"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:03bb16dc-3cff-4a7d-8393-9a6a7124ecc2", + identifier: "CVE-2023-1664", + issuer: { + id: "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", + name: "redhat", + cpe_key: null, + website: null, + }, + published: "2023-05-26T00:00:00Z", + modified: "2024-08-02T05:57:24.969Z", + withdrawn: null, + title: + 'A flaw was found in Keycloak. This flaw depends on a non-default configuration "Revalidate Client Certificate" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of "Cannot validate client certificate trust: Truststore not available". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use "Revalidate Client Certificate" this flaw is avoidable.', + labels: { + type: "cve", + }, + sha256: + "sha256:72b745cfcceed4e905de9d15f6826bf70fd5429fcb5bb31147522f7b7e6389cd", + sha384: + "sha384:f559a4d9e893291384e6acaae203d590c979786311cc19351e89e1467baf1d95870f7783d189922e955b15683e36fc48", + sha512: + "sha512:b536afb9cde0e25a3294c7cb3d72371453dc42dca2a732b34fafe7ce8a75a893a4a4822908eadaad9e75e182f1a4b0b31a92a0b104df3485d0541d050e8fc2ab", + size: 3162, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-1664", + title: + 'A flaw was found in Keycloak. This flaw depends on a non-default configuration "Revalidate Client Certificate" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of "Cannot validate client certificate trust: Truststore not available". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use "Revalidate Client Certificate" this flaw is avoidable.', + description: + 'A flaw was found in Keycloak. This flaw depends on a non-default configuration "Revalidate Client Certificate" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of "Cannot validate client certificate trust: Truststore not available". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use "Revalidate Client Certificate" this flaw is avoidable.', + reserved: "2023-03-27T00:00:00Z", + published: "2023-05-26T00:00:00Z", + modified: "2024-08-02T05:57:24.969Z", + withdrawn: null, + discovered: null, + released: null, + cwes: ["CWE-295"], + severity: "none", + score: 0, + }, + ], + }, + { + uuid: "urn:uuid:88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c", + identifier: "CVE-2023-20860", + issuer: { + id: "34973ac6-8ad3-4c55-8aa7-03d53cd11d39", + name: "vmware", + cpe_key: null, + website: null, + }, + published: "2023-03-27T00:00:00Z", + modified: "2024-08-02T09:21:32.43Z", + withdrawn: null, + title: + 'Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using "**" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.', + labels: { + type: "cve", + }, + sha256: + "sha256:6f64b679d476a078b010f57868566ea62aef3e6e80967d967e711f60f80bda19", + sha384: + "sha384:c1499294f85347ef96fbfa55e0958dea8aa8d25f66ea9bf221e664cf93d576db32f2d12860933e7b3c49acdb535f6f81", + sha512: + "sha512:42abb7521389736a011790cdb0b303cff269f6cc00b7eaae1cfe878ee88d4f7eafb209b9ff355b93a9cd5ebbb4bb68b18a6286230a6a69b058606291c3a8d338", + size: 3022, + average_severity: null, + average_score: null, + vulnerabilities: [ + { + normative: true, + identifier: "CVE-2023-20860", + title: + 'Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using "**" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.', + description: + 'Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using "**" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.', + reserved: "2022-11-01T00:00:00Z", + published: "2023-03-27T00:00:00Z", + modified: "2024-08-02T09:21:32.43Z", + withdrawn: null, + discovered: null, + released: null, + cwes: [], + severity: "none", + score: 0, + }, + ], + }, + ], + totalItemCount: 58, + isLoading: false, + selectionState: { + selectedItems: [], + areAllSelected: false, + }, + numColumnsBeforeData: 0, + numColumnsAfterData: 0, + numRenderedColumns: 5, + expansionDerivedState: {}, + activeItemDerivedState: { + activeItem: null, + }, + propHelpers: { + toolbarProps: { + className: "", + collapseListedFiltersBreakpoint: "xl", + clearFiltersButtonText: "Clear all filters", + }, + tableProps: { + isExpandable: false, + }, + filterToolbarProps: {}, + paginationProps: { + itemCount: 58, + perPage: 10, + page: 1, + }, + paginationToolbarItemProps: { + variant: "pagination", + align: { + default: "alignRight", + }, + }, + toolbarBulkSelectorProps: { + areAllSelected: false, + }, + }, + }, +}; From fc7a09d1baac19a3d05b06f1bda3d9cb16ceb66d Mon Sep 17 00:00:00 2001 From: kahboom Date: Fri, 22 Nov 2024 21:05:54 +0000 Subject: [PATCH 3/5] load custom states for search page body --- .storybook/preview.tsx | 2 +- client/src/app/layout/header.stories.tsx | 9 - .../advisory-list/advisory-table.stories.tsx | 9 +- .../search/components/SearchTabs.stories.tsx | 340 ++++++++-- .../pages/search/components/SearchTabs.tsx | 18 +- .../advisories-by-vulnerability.stories.tsx | 2 +- .../sboms-by-vulnerability.stories.tsx | 26 +- .../vulnerability-details.stories.tsx | 3 +- .../vulnerability-list.stories.tsx | 12 +- .../vulnerability-table.stories.tsx | 201 +----- .../vulnerability-toolbar.stories.tsx | 42 +- .../mocks/data/advisory-context-data.mock.ts | 610 ------------------ .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 .../details.json} | 0 client/src/mocks/handlers.ts | 38 +- .../stories/v1.2.x/cve-details.stories.tsx | 5 +- 24 files changed, 386 insertions(+), 931 deletions(-) delete mode 100644 client/src/mocks/data/advisory-context-data.mock.ts rename client/src/mocks/data/vulnerability/{details/CVE-2022-45787.json => CVE-2022-45787/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-0044.json => CVE-2023-0044/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-0481.json => CVE-2023-0481/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-0482.json => CVE-2023-0482/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-1370.json => CVE-2023-1370/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-1436.json => CVE-2023-1436/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-20861.json => CVE-2023-20861/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-24815.json => CVE-2023-24815/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-24998.json => CVE-2023-24998/details.json} (100%) rename client/src/mocks/data/vulnerability/{details/CVE-2023-26464.json => CVE-2023-26464/details.json} (100%) diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index fbe39298..96b0a0e9 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -48,7 +48,7 @@ const preview: Preview = { }, options: { storySort: { - order: ["v1.2x", "v2.1", "v2.x"], + order: ["v1", "v1.2x", "v2", "v2.1", "v2.x"], }, }, }, diff --git a/client/src/app/layout/header.stories.tsx b/client/src/app/layout/header.stories.tsx index 8fad8230..f987d44a 100644 --- a/client/src/app/layout/header.stories.tsx +++ b/client/src/app/layout/header.stories.tsx @@ -1,7 +1,5 @@ import type { Meta, StoryObj } from "@storybook/react"; -import React from "react"; import { HeaderApp } from "@app/layout/header"; -import { MemoryRouter } from "react-router-dom"; import { fn } from "@storybook/test"; import * as actual from "@app/hooks/useBranding"; @@ -12,13 +10,6 @@ import { BrandingStrings } from "@trustify-ui/common"; const meta = { title: "Components/Layout/HeaderApp", component: HeaderApp, - decorators: [ - (Story) => ( - - - - ), - ], } satisfies Meta; export default meta; diff --git a/client/src/app/pages/advisory-list/advisory-table.stories.tsx b/client/src/app/pages/advisory-list/advisory-table.stories.tsx index e1f0c3a6..71b4ad90 100644 --- a/client/src/app/pages/advisory-list/advisory-table.stories.tsx +++ b/client/src/app/pages/advisory-list/advisory-table.stories.tsx @@ -1,6 +1,5 @@ import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; -import { BrowserRouter } from "react-router-dom"; import { AdvisoryTable } from "./advisory-table"; import { AdvisorySearchContext } from "./advisory-context"; import listResponse from "@mocks/data/advisory/list.json"; @@ -222,11 +221,9 @@ const meta = { (Story, { parameters }) => { const { contextDefaultValue } = parameters; return ( - - - - - + + + ); }, ], diff --git a/client/src/app/pages/search/components/SearchTabs.stories.tsx b/client/src/app/pages/search/components/SearchTabs.stories.tsx index 7b5c1b93..6b855f80 100644 --- a/client/src/app/pages/search/components/SearchTabs.stories.tsx +++ b/client/src/app/pages/search/components/SearchTabs.stories.tsx @@ -2,19 +2,235 @@ import React from "react"; import { AdvisorySearchContext } from "@app/pages/advisory-list/advisory-context"; import type { Meta, StoryObj } from "@storybook/react"; import { SearchTabs, SearchTabsProps } from "./SearchTabs"; -import { IAdvisorySearchContext } from "@app/pages/advisory-list/advisory-context"; +import listResponse from "@mocks/data/advisory/list.json"; +import { MemoryRouter } from "react-router-dom"; +import * as stories from "../../advisory-list/advisory-table.stories"; +import { composeStories } from "@storybook/react"; +const { PrimaryState } = composeStories(stories); -const mockContextValue: IAdvisorySearchContext = {} as IAdvisorySearchContext; +const tableControlsCustom = { + tableName: "advisory", + persistenceKeyPrefix: "vn", + columnNames: { + identifier: "ID", + title: "Description", + severity: "CVSS", + published: "Date published", + sboms: "Related documents", + }, + isPaginationEnabled: true, + isSortEnabled: true, + sortableColumns: ["published", "sboms"], + isFilterEnabled: true, + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + ], + isExpansionEnabled: true, + expandableVariant: "compound", + filterState: { + filterValues: {}, + }, + sortState: { + activeSort: { + columnKey: "modified", + direction: "asc", + }, + }, + paginationState: { + pageNumber: 1, + itemsPerPage: 10, + }, + expansionState: { + expandedCells: {}, + }, + activeItemState: { + activeItemId: null, + }, + columnState: { + columns: [ + { + id: "identifier", + label: "ID", + isVisible: true, + }, + { + id: "title", + label: "Description", + isVisible: true, + }, + { + id: "severity", + label: "CVSS", + isVisible: true, + }, + { + id: "published", + label: "Date published", + isVisible: true, + }, + { + id: "sboms", + label: "Related documents", + isVisible: true, + }, + ], + }, + idProperty: "identifier", + currentPageItems: listResponse.items, + totalItemCount: listResponse.total, + isLoading: false, + selectionState: { + selectedItems: [], + areAllSelected: false, + }, + numColumnsBeforeData: 0, + numColumnsAfterData: 0, + numRenderedColumns: 5, + expansionDerivedState: { + isCellExpanded: jest.fn(), + }, + activeItemDerivedState: { + activeItem: null, + }, + propHelpers: { + toolbarProps: { + collapseListedFiltersBreakpoint: "xl", + clearFiltersButtonText: "Clear all filters", + }, + tableProps: { + isExpandable: false, + }, + filterToolbarProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + ], + filterValues: {}, + }, + filterPanelProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "CVSS", + placeholderText: "CVSS", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + ], + filterValues: {}, + }, + getThProps: () => {}, + getTrProps: () => {}, + getTdProps: () => {}, + }, +}; const meta: Meta = { title: "Components/Search/SearchTabs", component: SearchTabs, decorators: [ - (Story) => ( - - - - ), + (Story, { parameters }) => { + const { contextDefaultValue } = parameters; + return ( + + + + + + ); + }, ], }; @@ -23,51 +239,51 @@ export default meta; type Story = StoryObj; const customFilterPanelProps = { - advisoryFilterPanelProps: mockContextValue.tableControls.filterState, - // advisoryFilterPanelProps: { - // filterCategories: [ - // { - // categoryKey: "", - // title: "Filter text", - // placeholderText: "Search", - // type: "search", - // }, - // { - // categoryKey: "average_severity", - // title: "Severity", - // placeholderText: "Severity", - // type: "multiselect", - // selectOptions: [ - // { - // value: "none", - // label: "None", - // }, - // { - // value: "low", - // label: "Low", - // }, - // { - // value: "medium", - // label: "Medium", - // }, - // { - // value: "high", - // label: "High", - // }, - // { - // value: "critical", - // label: "Critical", - // }, - // ], - // }, - // { - // categoryKey: "modified", - // title: "Revision", - // type: "dateRange", - // }, - // ], - // filterValues: {}, - // }, + advisoryFilterPanelProps: { + filterCategories: [ + { + categoryKey: "", + title: "Filter text", + placeholderText: "Search", + type: "search", + }, + { + categoryKey: "average_severity", + title: "Severity", + placeholderText: "Severity", + type: "multiselect", + selectOptions: [ + { + value: "none", + label: "None", + }, + { + value: "low", + label: "Low", + }, + { + value: "medium", + label: "Medium", + }, + { + value: "high", + label: "High", + }, + { + value: "critical", + label: "Critical", + }, + ], + }, + { + categoryKey: "modified", + title: "Revision", + type: "dateRange", + }, + ], + filterValues: {}, + setFilterValues: jest.fn(), + }, packageFilterPanelProps: { filterCategories: [ { @@ -130,6 +346,7 @@ const customFilterPanelProps = { }, ], filterValues: {}, + setFilterValues: jest.fn(), }, sbomFilterPanelProps: { filterCategories: [ @@ -146,6 +363,7 @@ const customFilterPanelProps = { }, ], filterValues: {}, + setFilterValues: jest.fn(), }, vulnerabilityFilterPanelProps: { filterCategories: [ @@ -190,13 +408,27 @@ const customFilterPanelProps = { }, ], filterValues: {}, + setFilterValues: jest.fn(), }, }; export const DefaultState: Story = { args: { + // advisoryTable: <>An advisory table here, + advisoryTable: , filterPanelProps: customFilterPanelProps, + packageTable: <>A package table here, + sbomTable: <>An SBOM table here, + vulnerabilityTable: <>A vulnerability table here, + }, + parameters: { + contextDefaultValue: { + isFetching: false, + fetchError: "", + tableControls: { ...tableControlsCustom }, + totalItemCount: 3, + currentPageItems: 10, + numRenderedColumns: 3, + }, }, }; - -export const ErrorState: Story = {}; diff --git a/client/src/app/pages/search/components/SearchTabs.tsx b/client/src/app/pages/search/components/SearchTabs.tsx index 4dbefe8a..a1616f76 100644 --- a/client/src/app/pages/search/components/SearchTabs.tsx +++ b/client/src/app/pages/search/components/SearchTabs.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { ReactElement, ReactNode } from "react"; import { Badge, @@ -21,21 +21,29 @@ import HelpIcon from "@patternfly/react-icons/dist/esm/icons/help-icon"; import { FilterPanel } from "@app/components/FilterPanel"; export interface SearchTabsProps { + advisoryTable?: ReactNode; filterPanelProps: { advisoryFilterPanelProps?: any; packageFilterPanelProps?: any; sbomFilterPanelProps?: any; vulnerabilityFilterPanelProps?: any; }; + packageTable?: ReactElement; packageTotalCount: number; + sbomTable?: ReactElement; sbomTotalCount: number; + vulnerabilityTable?: ReactElement; vulnerabilityTotalCount: number; } export const SearchTabs: React.FC = ({ + advisoryTable, filterPanelProps, + packageTable, packageTotalCount, + sbomTable, sbomTotalCount, + vulnerabilityTable, vulnerabilityTotalCount, }) => { const [activeTabKey, setActiveTabKey] = React.useState(0); @@ -124,7 +132,7 @@ export const SearchTabs: React.FC = ({ } > - + {sbomTable ?? } = ({ } > - + {packageTable ?? } = ({ } > - + {vulnerabilityTable ?? } = ({ } > - + {advisoryTable ?? } diff --git a/client/src/app/pages/vulnerability-details/advisories-by-vulnerability.stories.tsx b/client/src/app/pages/vulnerability-details/advisories-by-vulnerability.stories.tsx index 29b7d69f..6aa3e96c 100644 --- a/client/src/app/pages/vulnerability-details/advisories-by-vulnerability.stories.tsx +++ b/client/src/app/pages/vulnerability-details/advisories-by-vulnerability.stories.tsx @@ -4,7 +4,7 @@ import { BrowserRouter } from "react-router-dom"; import { AdvisoriesByVulnerability } from "./advisories-by-vulnerability"; const meta = { - title: "Components/VulnerabilityDetails/AdvisoriesByVulnerability", + title: "Components/VulnerabilityDetails/AdvisoriesByVulnerability.tsx", component: AdvisoriesByVulnerability, parameters: { layout: "fullscreen", diff --git a/client/src/app/pages/vulnerability-details/sboms-by-vulnerability.stories.tsx b/client/src/app/pages/vulnerability-details/sboms-by-vulnerability.stories.tsx index 89112b04..1ba3260e 100644 --- a/client/src/app/pages/vulnerability-details/sboms-by-vulnerability.stories.tsx +++ b/client/src/app/pages/vulnerability-details/sboms-by-vulnerability.stories.tsx @@ -7,10 +7,14 @@ import { SbomsByVulnerability } from "./sboms-by-vulnerability"; const meta = { title: "Components/VulnerabilityDetails/SbomsByVulnerability", component: SbomsByVulnerability, - parameters: { - layout: "fullscreen", - }, tags: ["autodocs"], + decorators: [ + (Story) => ( + + + + ), + ], } satisfies Meta; export default meta; @@ -18,26 +22,12 @@ type Story = StoryObj; export const Primary: Story = { args: { - vulnerabilityId: "1", + vulnerabilityId: "CVE-2022-45787", }, - decorators: [ - (Story) => ( - - - - ), - ], }; export const EmptyState: Story = { args: { vulnerabilityId: "2", }, - decorators: [ - (Story) => ( - - - - ), - ], }; diff --git a/client/src/app/pages/vulnerability-details/vulnerability-details.stories.tsx b/client/src/app/pages/vulnerability-details/vulnerability-details.stories.tsx index e42e6c15..fcb4d221 100644 --- a/client/src/app/pages/vulnerability-details/vulnerability-details.stories.tsx +++ b/client/src/app/pages/vulnerability-details/vulnerability-details.stories.tsx @@ -4,7 +4,7 @@ import React from "react"; import { CveDetails } from "./vulnerability-details"; const meta = { - title: "Components/VulnerabilityDetails/VulnerabilityDetails", + title: "Components/VulnerabilityDetails", component: CveDetails, parameters: { query: { @@ -25,7 +25,6 @@ export default meta; type Story = StoryObj; export const Default: Story = { - args: {}, render: () => { const urlParams = new URLSearchParams(document.location.search); const mockedParam = urlParams.get("vulnerabilityId"); diff --git a/client/src/app/pages/vulnerability-list/vulnerability-list.stories.tsx b/client/src/app/pages/vulnerability-list/vulnerability-list.stories.tsx index f895ae4f..7fd70937 100644 --- a/client/src/app/pages/vulnerability-list/vulnerability-list.stories.tsx +++ b/client/src/app/pages/vulnerability-list/vulnerability-list.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from "@storybook/react"; import React from "react"; import { VulnerabilityList } from "./vulnerability-list"; -import { MemoryRouter, Routes, Route } from "react-router-dom"; +import { BrowserRouter } from "react-router-dom"; const meta = { title: "Components/VulnerabilityList/VulnerabilityList", @@ -9,11 +9,9 @@ const meta = { tags: ["autodocs"], decorators: [ (Story) => ( - - - } /> - - + + + ), ], } satisfies Meta; @@ -26,5 +24,3 @@ export const PrimaryState: Story = { vulnerabilityId: "", }, }; - -export const EmptyState: Story = {}; diff --git a/client/src/app/pages/vulnerability-list/vulnerability-table.stories.tsx b/client/src/app/pages/vulnerability-list/vulnerability-table.stories.tsx index fcc1ab51..fd714173 100644 --- a/client/src/app/pages/vulnerability-list/vulnerability-table.stories.tsx +++ b/client/src/app/pages/vulnerability-list/vulnerability-table.stories.tsx @@ -5,170 +5,26 @@ import { VulnerabilityTable } from "./vulnerability-table"; import { VulnerabilitySearchContext } from "./vulnerability-context"; import listResponse from "@mocks/data/vulnerability/list.json"; -const customTableControls = { - currentPageItems: [], - numRenderedColumns: 3, - propHelpers: { - paginationProps: null, - getThProps: () => {}, - }, -}; - -const dummyContextData = { - isFetching: false, - fetchError: "", - tableControls: customTableControls, - totalItemCount: 3, - currentPageItems: 10, - numRenderedColumns: 3, -}; - -const actualTableControls = { - tableName: "vulnerability", - persistenceKeyPrefix: "vn", - columnNames: { - identifier: "ID", - title: "Description", - severity: "CVSS", - published: "Date published", - sboms: "Related documents", - }, - isPaginationEnabled: true, - isSortEnabled: true, - sortableColumns: ["published", "severity"], - isFilterEnabled: true, - filterCategories: [ - { - categoryKey: "", - title: "Filter text", - placeholderText: "Search", - type: "search", - }, - { - categoryKey: "average_severity", - title: "CVSS", - placeholderText: "CVSS", - type: "multiselect", - selectOptions: [ - { - value: "none", - label: "None", - }, - { - value: "low", - label: "Low", - }, - { - value: "medium", - label: "Medium", - }, - { - value: "high", - label: "High", - }, - { - value: "critical", - label: "Critical", - }, - ], - }, - { - categoryKey: "published", - title: "Created on", - type: "dateRange", +const meta = { + title: "Components/VulnerabilityList/VulnerabilityTable", + component: VulnerabilityTable, + tags: ["autodocs"], + decorators: [ + (Story, { parameters }) => { + const { contextDefaultValue } = parameters; + return ( + + + + + + ); }, ], - isExpansionEnabled: true, - expandableVariant: "compound", - filterState: { - filterValues: {}, - }, - sortState: { - activeSort: { - columnKey: "published", - direction: "asc", - }, - }, - paginationState: { - pageNumber: 1, - itemsPerPage: 10, - }, - expansionState: { - expandedCells: {}, - }, - activeItemState: { - activeItemId: null, - }, - columnState: { - columns: [ - { - id: "identifier", - label: "ID", - isVisible: true, - }, - { - id: "title", - label: "Description", - isVisible: true, - }, - { - id: "severity", - label: "CVSS", - isVisible: true, - }, - { - id: "published", - label: "Date published", - isVisible: true, - }, - { - id: "sboms", - label: "Related documents", - isVisible: true, - }, - ], - }, - idProperty: "identifier", - currentPageItems: listResponse.items, - totalItemCount: listResponse.total, - isLoading: false, - selectionState: { - selectedItems: [], - areAllSelected: false, - }, - numColumnsBeforeData: 0, - numColumnsAfterData: 0, - numRenderedColumns: 5, - expansionDerivedState: {}, - activeItemDerivedState: { - activeItem: null, - }, - propHelpers: { - toolbarProps: { - className: "", - collapseListedFiltersBreakpoint: "xl", - clearFiltersButtonText: "Clear all filters", - }, - tableProps: { - isExpandable: true, - }, - filterToolbarProps: {}, - paginationProps: { - itemCount: listResponse.total, - perPage: 10, - page: 1, - }, - paginationToolbarItemProps: { - variant: "pagination", - align: { - default: "alignRight", - }, - }, - toolbarBulkSelectorProps: { - areAllSelected: false, - }, - }, -}; +} satisfies Meta; + +export default meta; +type Story = StoryObj; const tableControlsCustom = { tableName: "vulnerability", @@ -377,27 +233,6 @@ const tableControlsCustom = { }, }; -const meta = { - title: "Components/VulnerabilityList/VulnerabilityTable", - component: VulnerabilityTable, - tags: ["autodocs"], - decorators: [ - (Story, { parameters }) => { - const { contextDefaultValue } = parameters; - return ( - - - - - - ); - }, - ], -} satisfies Meta; - -export default meta; -type Story = StoryObj; - export const PrimaryState: Story = { parameters: { contextDefaultValue: { diff --git a/client/src/app/pages/vulnerability-list/vulnerability-toolbar.stories.tsx b/client/src/app/pages/vulnerability-list/vulnerability-toolbar.stories.tsx index 2c7d28e6..debd3887 100644 --- a/client/src/app/pages/vulnerability-list/vulnerability-toolbar.stories.tsx +++ b/client/src/app/pages/vulnerability-list/vulnerability-toolbar.stories.tsx @@ -4,6 +4,27 @@ import { BrowserRouter } from "react-router-dom"; import { VulnerabilityToolbar } from "./vulnerability-toolbar"; import { VulnerabilitySearchContext } from "./vulnerability-context"; +const meta = { + title: "Components/VulnerabilityList/VulnerabilityToolbar", + component: VulnerabilityToolbar, + tags: ["autodocs"], + decorators: [ + (Story, { parameters }) => { + const { contextDefaultValue } = parameters; + return ( + + + + + + ); + }, + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + const customContextData = { tableControls: { propHelpers: { @@ -539,27 +560,6 @@ const customContextData = { }, }; -const meta = { - title: "Components/VulnerabilityList/VulnerabilityToolbar", - component: VulnerabilityToolbar, - tags: ["autodocs"], - decorators: [ - (Story, { parameters }) => { - const { contextDefaultValue } = parameters; - return ( - - - - - - ); - }, - ], -} satisfies Meta; - -export default meta; -type Story = StoryObj; - export const PrimaryState: Story = { args: {}, parameters: { diff --git a/client/src/mocks/data/advisory-context-data.mock.ts b/client/src/mocks/data/advisory-context-data.mock.ts deleted file mode 100644 index 2fc5c6e1..00000000 --- a/client/src/mocks/data/advisory-context-data.mock.ts +++ /dev/null @@ -1,610 +0,0 @@ -export default { - totalItemCount: 58, - isFetching: false, - fetchError: null, - tableControls: { - tableName: "advisory", - persistenceKeyPrefix: "ad", - persistTo: "urlParams", - columnNames: { - identifier: "ID", - title: "Title", - severity: "Aggregated Severity", - modified: "Revision", - vulnerabilities: "Vulnerabilities", - }, - isPaginationEnabled: true, - isSortEnabled: true, - sortableColumns: ["identifier", "severity", "modified"], - isFilterEnabled: true, - filterCategories: [ - { - categoryKey: "", - title: "Filter text", - placeholderText: "Search", - type: "search", - }, - { - categoryKey: "average_severity", - title: "Severity", - placeholderText: "Severity", - type: "multiselect", - selectOptions: [ - { - value: "none", - label: "None", - }, - { - value: "low", - label: "Low", - }, - { - value: "medium", - label: "Medium", - }, - { - value: "high", - label: "High", - }, - { - value: "critical", - label: "Critical", - }, - ], - }, - { - categoryKey: "modified", - title: "Revision", - type: "dateRange", - }, - ], - isExpansionEnabled: false, - filterState: { - filterValues: {}, - }, - sortState: { - activeSort: { - columnKey: "identifier", - direction: "asc", - }, - }, - paginationState: { - pageNumber: 1, - itemsPerPage: 10, - }, - expansionState: { - expandedCells: {}, - }, - activeItemState: { - activeItemId: null, - }, - columnState: { - columns: [ - { - id: "identifier", - label: "ID", - isVisible: true, - }, - { - id: "title", - label: "Title", - isVisible: true, - }, - { - id: "severity", - label: "Aggregated Severity", - isVisible: true, - }, - { - id: "modified", - label: "Revision", - isVisible: true, - }, - { - id: "vulnerabilities", - label: "Vulnerabilities", - isVisible: true, - }, - ], - }, - idProperty: "identifier", - currentPageItems: [ - { - uuid: "urn:uuid:ee8cff4d-d6bc-4a27-89ac-a7ad193f5eb6", - identifier: "CVE-2022-45787", - issuer: { - id: "1f998387-0fdc-403b-a492-418b22f76f69", - name: "apache", - cpe_key: null, - website: null, - }, - published: "2023-01-06T09:31:40.118Z", - modified: "2024-08-03T14:17:04.186Z", - withdrawn: null, - title: - "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", - labels: { - type: "cve", - }, - sha256: - "sha256:9905eaad399e6d47e5aceae07a1f271ff878332118f613197fb959fbca0a0895", - sha384: - "sha384:6b43007cb7e13ee46160500fee9f35de731db6fd4e713a9a8bcf2f65885d0a9c05a7a95558090ee0e657c1602b03eb07", - sha512: - "sha512:b80f8db0e845a0f2a0b84583efd2c90935e3653e31beba06e1eb1011db0c49bab6a925d3c2d84dc35ebe8a900a704611b5e76724e6cf16b19b13946897fc5b71", - size: 4360, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2022-45787", - title: - "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", - description: - "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", - reserved: "2022-11-22T08:49:26.227Z", - published: "2023-01-06T09:31:40.118Z", - modified: "2024-08-03T14:17:04.186Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-312"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:32600b15-f2c1-4115-bcfb-0d0e1786f86d", - identifier: "CVE-2023-0044", - issuer: { - id: "d20006a8-1d58-4de7-91ac-7a1aa012324a", - name: "redhat", - cpe_key: null, - website: null, - }, - published: "2023-02-23T00:00:00Z", - modified: "2024-08-02T04:54:32.575Z", - withdrawn: null, - title: - "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", - labels: { - type: "cve", - }, - sha256: - "sha256:df2918bec606d2607d81ae18e985f8cd146918f91bc73793c0cc419e65a5fd35", - sha384: - "sha384:113316052f6c46547767d40d82b8d3afc38f43f22b47e5909f8d4951232c369c1406d30ae318827e03c982be2028c0e0", - sha512: - "sha512:3d7e89cdf6fa8183e5a1dbc7538db4ef4b3f48a215611a37e2149595a74c503b905b46dcd569ec67b44f9c8d3a11d4c70f04542f5e77b2bf0c7774a56394d1bf", - size: 2892, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-0044", - title: - "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", - description: - "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", - reserved: "2023-01-04T00:00:00Z", - published: "2023-02-23T00:00:00Z", - modified: "2024-08-02T04:54:32.575Z", - withdrawn: null, - discovered: null, - released: null, - cwes: [], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:671dd85b-409f-4509-9a50-c4b2404ac10a", - identifier: "CVE-2023-0481", - issuer: { - id: "8e0a1182-9579-4ab2-8913-9a1c37b224e3", - name: "redhat", - cpe_key: null, - website: null, - }, - published: "2023-02-24T00:00:00Z", - modified: "2024-08-02T05:10:56.412Z", - withdrawn: null, - title: - "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", - labels: { - type: "cve", - }, - sha256: - "sha256:9453778b1ff60cff4d9bf1455615dc5035889e225ece201781001f29255aa779", - sha384: - "sha384:b2d77c3560c861da161af3ab5bd20775298e39d014b5d43b0be81147c2de5ecb02844fefcebe179d54c6313278e7e0dd", - sha512: - "sha512:2953fb9855e78a9a59addc6a0337d0755efb5347a653556e1f7f08eb260814bc7104bb26f89dc16ffeef56a4f1084898b98c6c0864db5f6d924cde3acdf6fd18", - size: 2530, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-0481", - title: - "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", - description: - "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", - reserved: "2023-01-24T00:00:00Z", - published: "2023-02-24T00:00:00Z", - modified: "2024-08-02T05:10:56.412Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-378"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:673acfc8-ea7d-4c6d-aff9-20cf70caade0", - identifier: "CVE-2023-0482", - issuer: { - id: "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", - name: "redhat", - cpe_key: null, - website: null, - }, - published: "2023-02-17T00:00:00Z", - modified: "2024-08-02T05:10:56.348Z", - withdrawn: null, - title: - "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", - labels: { - type: "cve", - }, - sha256: - "sha256:0f6262e341bdebc54c48d65342bcbfd8c941b661c0291d4fde3cf724fdda741a", - sha384: - "sha384:8cc216134f63b18debfb447d0669b786db108b7cc8b1d19b262d32c48d9e0d306cbbf884dad0e1acf0983b71640569f4", - sha512: - "sha512:9a56d4e4de0225274022953ba8f4df1e3eb16cfd3bee96ee459b14398d8b075247427fa1882771cbb05fb3fa86f44797a25dd7912183d9878d8de7c096a5d9b1", - size: 3009, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-0482", - title: - "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", - description: - "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", - reserved: "2023-01-24T00:00:00Z", - published: "2023-02-17T00:00:00Z", - modified: "2024-08-02T05:10:56.348Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-378"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:ea257645-f52f-4723-9c73-a4ed589f67ac", - identifier: "CVE-2023-1108", - issuer: { - id: "64c20c61-472a-4259-bfde-b62ac7396343", - name: "redhat", - cpe_key: null, - website: null, - }, - published: "2023-09-14T14:48:58.869Z", - modified: "2024-08-02T05:32:46.37Z", - withdrawn: null, - title: "Undertow: infinite loop in sslconduit during close", - labels: { - type: "cve", - }, - sha256: - "sha256:584614c4ed0621fc17e58d2f9e4467ed54b7e8d4681ca62056d9e547529b4878", - sha384: - "sha384:5e01e71ec6b1022bcad12905a57eeeebfe8a2d1470ec6a6cd67f97755a55e3dd1ad16ee2fc217fa05efda7788efd5fd0", - sha512: - "sha512:d5b8d4b5b395f5a4bf9eb3fb55e68d071a092621b7a0633f6c980c0ee0879b76c4e195372d3f11f12ef028349faabdcbc1d7a32f198b21b2da5da9294455d8fc", - size: 38300, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-1108", - title: "Undertow: infinite loop in sslconduit during close", - description: - "A flaw was found in undertow. This issue makes achieving a denial of service possible due to an unexpected handshake status updated in SslConduit, where the loop never terminates.", - reserved: "2023-03-01T00:27:23.587Z", - published: "2023-09-14T14:48:58.869Z", - modified: "2024-08-02T05:32:46.37Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-835"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:d99d1421-e2fd-49c2-b2dd-82fe848fff48", - identifier: "CVE-2023-1370", - issuer: { - id: "5b88a47d-03d5-4117-8657-d611a0ce432b", - name: "JFROG", - cpe_key: null, - website: null, - }, - published: "2023-03-13T09:04:36.365Z", - modified: "2024-08-02T05:49:10.25Z", - withdrawn: null, - title: - "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", - labels: { - type: "cve", - }, - sha256: - "sha256:cf24f4f6a00bb7af358f026ffcaaf89a0f55f44c93f5bb8b717d48b0a7bcb527", - sha384: - "sha384:55c10b2e628574cf1102903fbe48faa164a09f70837d15221d86b9de637eee1d319db54a48c5d3402ed9261a23188849", - sha512: - "sha512:4fb885b39a5c34f935ea7a5736eb054df1db402368a89e0199299a2930c5195b4e54591a233e9339400cce8a085de6064944d19aeee8b480a6cbd5ce636cb90b", - size: 5555, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-1370", - title: - "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", - description: - "[Json-smart](https://netplex.github.io/json-smart/) is a performance focused, JSON processor lib.\n\nWhen reaching a ‘[‘ or ‘{‘ character in the JSON input, the code parses an array or an object respectively.\n\nIt was discovered that the code does not have any limit to the nesting of such arrays or objects. Since the parsing of nested arrays and objects is done recursively, nesting too many of them can cause a stack exhaustion (stack overflow) and crash the software.\n\n", - reserved: "2023-03-13T08:35:00.695Z", - published: "2023-03-13T09:04:36.365Z", - modified: "2024-08-02T05:49:10.25Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-674"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:459c504b-7e09-4ea9-9cbb-baa8ce040e83", - identifier: "CVE-2023-1436", - issuer: { - id: "bb1dc009-4428-4163-8dee-ddac5823f1fb", - name: "JFROG", - cpe_key: null, - website: null, - }, - published: "2023-03-16T20:59:51.072Z", - modified: "2024-08-02T05:49:11.438Z", - withdrawn: null, - title: - "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", - labels: { - type: "cve", - }, - sha256: - "sha256:dfe61f4eabad4795e6bbc9074fc0f51024275809128410cd803fc8d5cfde89b4", - sha384: - "sha384:d35fd9015b35864544b11e53bf8cc923da6facd641fed4d99152e06f0fabc83e2b4eb7f2b062597d91fbbe98dd177b67", - sha512: - "sha512:b905135296652ff7b27620150fe12e67908ad7b0b5299ba9974735f7fc2608ebf2a7188c30570f627a3c0646cd614b54c727a3d7b37e90b0e122a1ff5c81fffc", - size: 4531, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-1436", - title: - "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", - description: - "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", - reserved: "2023-03-16T20:44:44.527Z", - published: "2023-03-16T20:59:51.072Z", - modified: "2024-08-02T05:49:11.438Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-674"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:87aa81c3-2aa5-438e-b5d4-d67ca4e321a9", - identifier: "CVE-2023-1584", - issuer: { - id: "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", - name: "redhat", - cpe_key: null, - website: null, - }, - published: "2023-10-04T10:47:37.831Z", - modified: "2024-08-02T05:57:23.278Z", - withdrawn: null, - title: - "Quarkus-oidc: id and access tokens leak via the authorization code flow", - labels: { - type: "cve", - }, - sha256: - "sha256:b0d46c1f88f3edc59ace6252b3e5a7efad091934e1efd5fc24b0da7ef70375c1", - sha384: - "sha384:8a21b85944b6ead2d35df69691a28040b4b5ba280f1c195045792445214dc400d140a7748c62e385a3beb7647006c54a", - sha512: - "sha512:0c7ed4fb25fc88a12218aa4f979615793825c38750b040be063130921f8def0e7d130d69393637c1e265801b7a9526a9ff0b622014c72a3fd295bcebddb683aa", - size: 9029, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-1584", - title: - "Quarkus-oidc: id and access tokens leak via the authorization code flow", - description: - "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", - reserved: "2023-03-22T20:15:15.323Z", - published: "2023-10-04T10:47:37.831Z", - modified: "2024-08-02T05:57:23.278Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-200"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:03bb16dc-3cff-4a7d-8393-9a6a7124ecc2", - identifier: "CVE-2023-1664", - issuer: { - id: "4aa82c3b-fc6e-41d7-ba55-e1c37853831a", - name: "redhat", - cpe_key: null, - website: null, - }, - published: "2023-05-26T00:00:00Z", - modified: "2024-08-02T05:57:24.969Z", - withdrawn: null, - title: - 'A flaw was found in Keycloak. This flaw depends on a non-default configuration "Revalidate Client Certificate" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of "Cannot validate client certificate trust: Truststore not available". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use "Revalidate Client Certificate" this flaw is avoidable.', - labels: { - type: "cve", - }, - sha256: - "sha256:72b745cfcceed4e905de9d15f6826bf70fd5429fcb5bb31147522f7b7e6389cd", - sha384: - "sha384:f559a4d9e893291384e6acaae203d590c979786311cc19351e89e1467baf1d95870f7783d189922e955b15683e36fc48", - sha512: - "sha512:b536afb9cde0e25a3294c7cb3d72371453dc42dca2a732b34fafe7ce8a75a893a4a4822908eadaad9e75e182f1a4b0b31a92a0b104df3485d0541d050e8fc2ab", - size: 3162, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-1664", - title: - 'A flaw was found in Keycloak. This flaw depends on a non-default configuration "Revalidate Client Certificate" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of "Cannot validate client certificate trust: Truststore not available". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use "Revalidate Client Certificate" this flaw is avoidable.', - description: - 'A flaw was found in Keycloak. This flaw depends on a non-default configuration "Revalidate Client Certificate" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of "Cannot validate client certificate trust: Truststore not available". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use "Revalidate Client Certificate" this flaw is avoidable.', - reserved: "2023-03-27T00:00:00Z", - published: "2023-05-26T00:00:00Z", - modified: "2024-08-02T05:57:24.969Z", - withdrawn: null, - discovered: null, - released: null, - cwes: ["CWE-295"], - severity: "none", - score: 0, - }, - ], - }, - { - uuid: "urn:uuid:88a4fc6c-60ae-4e4a-bdbe-4fb2e1d33e9c", - identifier: "CVE-2023-20860", - issuer: { - id: "34973ac6-8ad3-4c55-8aa7-03d53cd11d39", - name: "vmware", - cpe_key: null, - website: null, - }, - published: "2023-03-27T00:00:00Z", - modified: "2024-08-02T09:21:32.43Z", - withdrawn: null, - title: - 'Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using "**" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.', - labels: { - type: "cve", - }, - sha256: - "sha256:6f64b679d476a078b010f57868566ea62aef3e6e80967d967e711f60f80bda19", - sha384: - "sha384:c1499294f85347ef96fbfa55e0958dea8aa8d25f66ea9bf221e664cf93d576db32f2d12860933e7b3c49acdb535f6f81", - sha512: - "sha512:42abb7521389736a011790cdb0b303cff269f6cc00b7eaae1cfe878ee88d4f7eafb209b9ff355b93a9cd5ebbb4bb68b18a6286230a6a69b058606291c3a8d338", - size: 3022, - average_severity: null, - average_score: null, - vulnerabilities: [ - { - normative: true, - identifier: "CVE-2023-20860", - title: - 'Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using "**" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.', - description: - 'Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using "**" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.', - reserved: "2022-11-01T00:00:00Z", - published: "2023-03-27T00:00:00Z", - modified: "2024-08-02T09:21:32.43Z", - withdrawn: null, - discovered: null, - released: null, - cwes: [], - severity: "none", - score: 0, - }, - ], - }, - ], - totalItemCount: 58, - isLoading: false, - selectionState: { - selectedItems: [], - areAllSelected: false, - }, - numColumnsBeforeData: 0, - numColumnsAfterData: 0, - numRenderedColumns: 5, - expansionDerivedState: {}, - activeItemDerivedState: { - activeItem: null, - }, - propHelpers: { - toolbarProps: { - className: "", - collapseListedFiltersBreakpoint: "xl", - clearFiltersButtonText: "Clear all filters", - }, - tableProps: { - isExpandable: false, - }, - filterToolbarProps: {}, - paginationProps: { - itemCount: 58, - perPage: 10, - page: 1, - }, - paginationToolbarItemProps: { - variant: "pagination", - align: { - default: "alignRight", - }, - }, - toolbarBulkSelectorProps: { - areAllSelected: false, - }, - }, - }, -}; diff --git a/client/src/mocks/data/vulnerability/details/CVE-2022-45787.json b/client/src/mocks/data/vulnerability/CVE-2022-45787/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2022-45787.json rename to client/src/mocks/data/vulnerability/CVE-2022-45787/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-0044.json b/client/src/mocks/data/vulnerability/CVE-2023-0044/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-0044.json rename to client/src/mocks/data/vulnerability/CVE-2023-0044/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-0481.json b/client/src/mocks/data/vulnerability/CVE-2023-0481/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-0481.json rename to client/src/mocks/data/vulnerability/CVE-2023-0481/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-0482.json b/client/src/mocks/data/vulnerability/CVE-2023-0482/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-0482.json rename to client/src/mocks/data/vulnerability/CVE-2023-0482/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-1370.json b/client/src/mocks/data/vulnerability/CVE-2023-1370/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-1370.json rename to client/src/mocks/data/vulnerability/CVE-2023-1370/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-1436.json b/client/src/mocks/data/vulnerability/CVE-2023-1436/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-1436.json rename to client/src/mocks/data/vulnerability/CVE-2023-1436/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-20861.json b/client/src/mocks/data/vulnerability/CVE-2023-20861/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-20861.json rename to client/src/mocks/data/vulnerability/CVE-2023-20861/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-24815.json b/client/src/mocks/data/vulnerability/CVE-2023-24815/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-24815.json rename to client/src/mocks/data/vulnerability/CVE-2023-24815/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-24998.json b/client/src/mocks/data/vulnerability/CVE-2023-24998/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-24998.json rename to client/src/mocks/data/vulnerability/CVE-2023-24998/details.json diff --git a/client/src/mocks/data/vulnerability/details/CVE-2023-26464.json b/client/src/mocks/data/vulnerability/CVE-2023-26464/details.json similarity index 100% rename from client/src/mocks/data/vulnerability/details/CVE-2023-26464.json rename to client/src/mocks/data/vulnerability/CVE-2023-26464/details.json diff --git a/client/src/mocks/handlers.ts b/client/src/mocks/handlers.ts index 0475cf28..8fc286d3 100644 --- a/client/src/mocks/handlers.ts +++ b/client/src/mocks/handlers.ts @@ -6,16 +6,16 @@ import getVulnerabilities from "@mocks/data/vulnerability/list.json"; // DATA IMPORTS -import cve202245787 from "@mocks/data/vulnerability/details/CVE-2022-45787.json"; -import cve20230044 from "@mocks/data/vulnerability/details/CVE-2023-0044.json"; -import cve20230481 from "@mocks/data/vulnerability/details/CVE-2023-0481.json"; -import cve20230482 from "@mocks/data/vulnerability/details/CVE-2023-0482.json"; -import cve20231370 from "@mocks/data/vulnerability/details/CVE-2023-1370.json"; -import cve20231436 from "@mocks/data/vulnerability/details/CVE-2023-1436.json"; -import cve202320861 from "@mocks/data/vulnerability/details/CVE-2023-20861.json"; -import cve202324815 from "@mocks/data/vulnerability/details/CVE-2023-24815.json"; -import cve202324998 from "@mocks/data/vulnerability/details/CVE-2023-24998.json"; -import cve202326464 from "@mocks/data/vulnerability/details/CVE-2023-26464.json"; +import cve202245787 from "@mocks/data/vulnerability/CVE-2022-45787/details.json"; +import cve20230044 from "@mocks/data/vulnerability/CVE-2023-0044/details.json"; +import cve20230481 from "@mocks/data/vulnerability/CVE-2023-0481/details.json"; +import cve20230482 from "@mocks/data/vulnerability/CVE-2023-0482/details.json"; +import cve20231370 from "@mocks/data/vulnerability/CVE-2023-1370/details.json"; +import cve20231436 from "@mocks/data/vulnerability/CVE-2023-1436/details.json"; +import cve202320861 from "@mocks/data/vulnerability/CVE-2023-20861/details.json"; +import cve202324815 from "@mocks/data/vulnerability/CVE-2023-24815/details.json"; +import cve202324998 from "@mocks/data/vulnerability/CVE-2023-24998/details.json"; +import cve202326464 from "@mocks/data/vulnerability/CVE-2023-26464/details.json"; import sbom1 from "@mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd.json"; import sbom2 from "@mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9.json"; @@ -289,7 +289,14 @@ const sbomHandlers = [ http.delete("/api/v1/sbom/:id", () => {}), - http.get("/api/v1/sbom/:id/advisory", () => {}), + http.get("/api/v1/sbom/:id/advisory", ({ params }) => { + const { id } = params; + if (!id) { + return new HttpResponse("Advisory for SBOM not found", { status: 404 }); + } else { + return HttpResponse.json({}); + } + }), // replace labels of an SBOM http.put("/api/v1/sbom/:id/label", () => {}), @@ -298,7 +305,14 @@ const sbomHandlers = [ http.patch("/api/v1/sbom/:id/label", () => {}), // search for packages of an SBOM - http.get("/api/v1/sbom/:id/packages", () => {}), + http.get("/api/v1/sbom/:id/packages", ({ params }) => { + const { id } = params; + if (!id) { + return new HttpResponse("Packages for SBOM not found", { status: 404 }); + } else { + return HttpResponse.json({}); + } + }), // search for related packages in an SBOM http.get("/api/v1/sbom/:id/related", () => {}), diff --git a/client/src/stories/v1.2.x/cve-details.stories.tsx b/client/src/stories/v1.2.x/cve-details.stories.tsx index 04f70210..ebcdbb63 100644 --- a/client/src/stories/v1.2.x/cve-details.stories.tsx +++ b/client/src/stories/v1.2.x/cve-details.stories.tsx @@ -8,7 +8,7 @@ const meta = { component: Overview, decorators: [ (Story) => ( - + } /> @@ -22,4 +22,7 @@ type Story = StoryObj; export const Primary: Story = { args: {}, + parameters: { + vulnerabilityId: "CVE-123", + }, }; From 1b62d14e6b63cfadc9b021ca7e381bfa21b0535b Mon Sep 17 00:00:00 2001 From: kahboom Date: Mon, 25 Nov 2024 12:52:19 +0000 Subject: [PATCH 4/5] feat(storybook): add data for packages and advisories --- .../advisory.json | 2919 + .../packages.json | 29 + .../advisory.json | 1 + .../packages.json | 29 + .../advisory.json | 2919 + .../packages.json | 29 + .../advisory.json | 1 + .../packages.json | 29 + .../advisory.json | 2919 + .../details.json} | 0 .../packages.json | 29 + .../advisory.json | 137447 +++++++++++++++ .../details.json} | 0 .../packages.json | 30 + client/src/mocks/handlers.ts | 118 +- .../stories/v1.2.x/cve-details.stories.tsx | 10 +- .../src/stories/v1.2.x/cve-page.stories.tsx | 34 + .../src/stories/v1.2.x/sbom-page.stories.tsx | 34 + client/src/stories/v2.1/home.stories.tsx | 31 + client/src/stories/v2.2/home.stories.tsx | 31 + 20 files changed, 146596 insertions(+), 43 deletions(-) create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/advisory.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/packages.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/advisory.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/packages.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/advisory.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/packages.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/advisory.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/packages.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/advisory.json rename client/src/mocks/data/sbom/{details/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd.json => urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/details.json} (100%) create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/packages.json create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/advisory.json rename client/src/mocks/data/sbom/{details/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9.json => urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/details.json} (100%) create mode 100644 client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/packages.json create mode 100644 client/src/stories/v1.2.x/cve-page.stories.tsx create mode 100644 client/src/stories/v1.2.x/sbom-page.stories.tsx create mode 100644 client/src/stories/v2.1/home.stories.tsx create mode 100644 client/src/stories/v2.2/home.stories.tsx diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/advisory.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/advisory.json new file mode 100644 index 00000000..1738dea2 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/advisory.json @@ -0,0 +1,2919 @@ +[ + { + "uuid": "urn:uuid:bbf5e16e-adfc-446b-b9cd-ac74167eebb3", + "identifier": "https://www.redhat.com/#CVE-2023-20861", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-20T00:00:00Z", + "modified": "2023-11-14T17:29:24Z", + "withdrawn": null, + "title": "springframework: Spring Expression DoS Vulnerability", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [ + { + "id": "", + "name": "apache-sshd", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:cecc86c6-84bf-48e9-830f-e517dfcb2f30", + "identifier": "https://www.redhat.com/#CVE-2023-0482", + "issuer": { + "id": "04194b23-2358-4267-a83b-a69a3b60d5c5", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-01-31T00:00:00Z", + "modified": "2023-11-02T07:08:07Z", + "withdrawn": null, + "title": "RESTEasy: creation of insecure temp files", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "resteasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "resteasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:499fe624-5219-4e93-b2ed-d4aaa8c3de55", + "identifier": "https://www.redhat.com/#CVE-2023-2976", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-14T00:00:00Z", + "modified": "2023-11-14T21:31:33Z", + "withdrawn": null, + "title": "guava: insecure temporary directory creation", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:8811ed0b-745a-4207-afa5-416d7a65eba9", + "identifier": "https://www.redhat.com/#CVE-2023-20862", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T22:09:12Z", + "withdrawn": null, + "title": "spring-security: Empty SecurityContext Is Not Properly Saved Upon Logout", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:28e7ba9b-d698-4ee7-8d3f-dcc1b9130091", + "identifier": "https://www.redhat.com/#CVE-2023-24998", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-02-20T00:00:00Z", + "modified": "2023-11-14T16:51:21Z", + "withdrawn": null, + "title": "Apache Commons FileUpload: FileUpload DoS with excessive parts", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat6", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-container", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-deps:10.6/pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:139b9f36-484a-4eed-957f-5a6c56280297", + "identifier": "https://www.redhat.com/#CVE-2023-20860", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-20T00:00:00Z", + "modified": "2023-11-14T17:28:21Z", + "withdrawn": null, + "title": "springframework: Security Bypass With Un-Prefixed Double Wildcard Pattern", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [ + { + "id": "", + "name": "apache-sshd", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:d3e17957-c483-40c8-8041-f62223cfb6b9", + "identifier": "https://www.redhat.com/#CVE-2023-1436", + "issuer": { + "id": "ec0a2ff2-50cf-42e1-a5d6-7c83eb200161", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-22T00:00:00Z", + "modified": "2023-11-14T17:43:03Z", + "withdrawn": null, + "title": "jettison: Uncontrolled Recursion in JSONArray", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "jettison", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:43a3c864-3593-4dde-ba74-1bef3b5ac58b", + "identifier": "https://www.redhat.com/#CVE-2023-34453", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:37:42Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in shuffle leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:5b98f727-1145-4eca-8176-d3f2a32e0fce", + "identifier": "https://www.redhat.com/#CVE-2023-44487", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-10-10T00:00:00Z", + "modified": "2023-11-21T11:59:10Z", + "withdrawn": null, + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:baseos:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:workstation:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "butane", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "git-lfs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "grafana-pcp", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "ignition", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mod_http2", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "osbuild-composer", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "weldr-client", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "dotnet8.0", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nginx:1.22/nginx", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nodejs:18/nodejs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nodejs:20/nodejs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat6", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:baseos:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/conmon", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "git-lfs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "grafana-pcp", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd:2.4/httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd:2.4/mod_http2", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "osbuild-composer", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "weldr-client", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/toolbox", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/toolbox", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-deps:10.6/pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:server:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:client:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:computenode:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:950b0c5e-0dc9-4851-9d23-e3db8a971799", + "identifier": "https://www.redhat.com/#CVE-2023-21971", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T20:12:02Z", + "withdrawn": null, + "title": "mysql-connector-java: Connector/J unspecified vulnerability (CPU April 2023)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:281b25d0-17d8-4d02-bb4e-b3f7e0ddb012", + "identifier": "https://www.redhat.com/#CVE-2023-26464", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-15T00:00:00Z", + "modified": "2023-11-14T17:46:50Z", + "withdrawn": null, + "title": "log4j1-chainsaw, log4j1-socketappender: DoS via hashmap logging", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "slf4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:c1f1e6fc-e1c1-495d-952a-9e323d4f62a4", + "identifier": "https://www.redhat.com/#CVE-2023-34454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:46:49Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in compress leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:afc27082-2db2-411d-9fbf-ecf151e659e2", + "identifier": "https://www.redhat.com/#CVE-2023-34455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-16T00:00:00Z", + "modified": "2023-11-14T21:49:01Z", + "withdrawn": null, + "title": "snappy-java: Unchecked chunk length leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql:15/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql:15/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + } +] diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/packages.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/packages.json new file mode 100644 index 00000000..1f01d41c --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/packages.json @@ -0,0 +1,29 @@ +{ + "items": [ + { + "id": "SPDXRef-12b5ecbd-c0a0-40bc-a459-3b53ce1210a4", + "name": "basesystem", + "version": "11-5.el8", + "purl": [ + { + "uuid": "2a84d7f3-0220-5f5b-8304-ac5fe7bd0e39", + "purl": "pkg:rpm/redhat/basesystem@11-5.el8?arch=noarch", + "base": { + "uuid": "fa88f614-d555-5088-bf47-0399fb182d35", + "purl": "pkg:rpm/redhat/basesystem" + }, + "version": { + "uuid": "bf2d561b-0697-58dd-80a9-c0c7d3b3b6a0", + "purl": "pkg:rpm/redhat/basesystem@11-5.el8", + "version": "11-5.el8" + }, + "qualifiers": { + "arch": "noarch" + } + } + ], + "cpe": [] + } + ], + "total": 69 +} diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/advisory.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/advisory.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/advisory.json @@ -0,0 +1 @@ +[] diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/packages.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/packages.json new file mode 100644 index 00000000..5a31b069 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/packages.json @@ -0,0 +1,29 @@ +{ + "items": [ + { + "id": "SPDXRef-0e4fcc6d-f27f-4df8-8403-bb38bdfc1a56", + "name": "alternatives", + "version": "1.24-1.el9", + "purl": [ + { + "uuid": "824d63e9-f1bc-540a-bb02-5e4453d9a704", + "purl": "pkg:rpm/redhat/alternatives@1.24-1.el9?arch=aarch64", + "base": { + "uuid": "0fc3d24d-c232-5138-a6d4-3b3d2a0be0fe", + "purl": "pkg:rpm/redhat/alternatives" + }, + "version": { + "uuid": "a58e507c-3c9c-5131-adae-bfac237df62e", + "purl": "pkg:rpm/redhat/alternatives@1.24-1.el9", + "version": "1.24-1.el9" + }, + "qualifiers": { + "arch": "aarch64" + } + } + ], + "cpe": [] + } + ], + "total": 367 +} diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/advisory.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/advisory.json new file mode 100644 index 00000000..7acac813 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/advisory.json @@ -0,0 +1,2919 @@ +[ + { + "uuid": "urn:uuid:139b9f36-484a-4eed-957f-5a6c56280297", + "identifier": "https://www.redhat.com/#CVE-2023-20860", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-20T00:00:00Z", + "modified": "2023-11-14T17:28:21Z", + "withdrawn": null, + "title": "springframework: Security Bypass With Un-Prefixed Double Wildcard Pattern", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [ + { + "id": "", + "name": "apache-sshd", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:afc27082-2db2-411d-9fbf-ecf151e659e2", + "identifier": "https://www.redhat.com/#CVE-2023-34455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-16T00:00:00Z", + "modified": "2023-11-14T21:49:01Z", + "withdrawn": null, + "title": "snappy-java: Unchecked chunk length leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:c1f1e6fc-e1c1-495d-952a-9e323d4f62a4", + "identifier": "https://www.redhat.com/#CVE-2023-34454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:46:49Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in compress leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:8811ed0b-745a-4207-afa5-416d7a65eba9", + "identifier": "https://www.redhat.com/#CVE-2023-20862", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T22:09:12Z", + "withdrawn": null, + "title": "spring-security: Empty SecurityContext Is Not Properly Saved Upon Logout", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:d3e17957-c483-40c8-8041-f62223cfb6b9", + "identifier": "https://www.redhat.com/#CVE-2023-1436", + "issuer": { + "id": "ec0a2ff2-50cf-42e1-a5d6-7c83eb200161", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-22T00:00:00Z", + "modified": "2023-11-14T17:43:03Z", + "withdrawn": null, + "title": "jettison: Uncontrolled Recursion in JSONArray", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "jettison", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:28e7ba9b-d698-4ee7-8d3f-dcc1b9130091", + "identifier": "https://www.redhat.com/#CVE-2023-24998", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-02-20T00:00:00Z", + "modified": "2023-11-14T16:51:21Z", + "withdrawn": null, + "title": "Apache Commons FileUpload: FileUpload DoS with excessive parts", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat6", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-container", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-deps:10.6/pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:43a3c864-3593-4dde-ba74-1bef3b5ac58b", + "identifier": "https://www.redhat.com/#CVE-2023-34453", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:37:42Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in shuffle leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:499fe624-5219-4e93-b2ed-d4aaa8c3de55", + "identifier": "https://www.redhat.com/#CVE-2023-2976", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-14T00:00:00Z", + "modified": "2023-11-14T21:31:33Z", + "withdrawn": null, + "title": "guava: insecure temporary directory creation", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql:15/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:cecc86c6-84bf-48e9-830f-e517dfcb2f30", + "identifier": "https://www.redhat.com/#CVE-2023-0482", + "issuer": { + "id": "04194b23-2358-4267-a83b-a69a3b60d5c5", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-01-31T00:00:00Z", + "modified": "2023-11-02T07:08:07Z", + "withdrawn": null, + "title": "RESTEasy: creation of insecure temp files", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "resteasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "resteasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:5b98f727-1145-4eca-8176-d3f2a32e0fce", + "identifier": "https://www.redhat.com/#CVE-2023-44487", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-10-10T00:00:00Z", + "modified": "2023-11-21T11:59:10Z", + "withdrawn": null, + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:baseos:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:workstation:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "butane", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "git-lfs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "grafana-pcp", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "ignition", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mod_http2", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "osbuild-composer", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "weldr-client", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "dotnet8.0", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nginx:1.22/nginx", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nodejs:18/nodejs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nodejs:20/nodejs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat6", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:baseos:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/conmon", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "git-lfs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "grafana-pcp", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd:2.4/httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd:2.4/mod_http2", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "osbuild-composer", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "weldr-client", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/toolbox", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/toolbox", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-deps:10.6/pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:server:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:client:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:computenode:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:bbf5e16e-adfc-446b-b9cd-ac74167eebb3", + "identifier": "https://www.redhat.com/#CVE-2023-20861", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-20T00:00:00Z", + "modified": "2023-11-14T17:29:24Z", + "withdrawn": null, + "title": "springframework: Spring Expression DoS Vulnerability", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [ + { + "id": "", + "name": "apache-sshd", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:281b25d0-17d8-4d02-bb4e-b3f7e0ddb012", + "identifier": "https://www.redhat.com/#CVE-2023-26464", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-15T00:00:00Z", + "modified": "2023-11-14T17:46:50Z", + "withdrawn": null, + "title": "log4j1-chainsaw, log4j1-socketappender: DoS via hashmap logging", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "slf4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:950b0c5e-0dc9-4851-9d23-e3db8a971799", + "identifier": "https://www.redhat.com/#CVE-2023-21971", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T20:12:02Z", + "withdrawn": null, + "title": "mysql-connector-java: Connector/J unspecified vulnerability (CPU April 2023)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql:15/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + } +] diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/packages.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/packages.json new file mode 100644 index 00000000..052c8756 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/packages.json @@ -0,0 +1,29 @@ +{ + "items": [ + { + "id": "SPDXRef-03f96770-c27f-42fb-8a6d-d8a087cc508f", + "name": "audit-libs", + "version": "3.0.7-4.el8", + "purl": [ + { + "uuid": "5f337da5-a040-50fe-81fb-1c730efbbaff", + "purl": "pkg:rpm/redhat/audit-libs@3.0.7-4.el8?arch=s390x", + "base": { + "uuid": "ad91be32-74ec-5ac8-8f68-3aee5c62f894", + "purl": "pkg:rpm/redhat/audit-libs" + }, + "version": { + "uuid": "2e4e1949-e5b5-5279-a27b-298efb722653", + "purl": "pkg:rpm/redhat/audit-libs@3.0.7-4.el8", + "version": "3.0.7-4.el8" + }, + "qualifiers": { + "arch": "s390x" + } + } + ], + "cpe": [] + } + ], + "total": 379 +} diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/advisory.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/advisory.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/advisory.json @@ -0,0 +1 @@ +[] diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/packages.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/packages.json new file mode 100644 index 00000000..3158edf4 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/packages.json @@ -0,0 +1,29 @@ +{ + "items": [ + { + "id": "SPDXRef-1b03970b-6e3c-4501-8b22-6155c60da631", + "name": "acl", + "version": "2.3.1-3.el9", + "purl": [ + { + "uuid": "522ac5e7-823a-51d4-a1db-796ac5bedd19", + "purl": "pkg:rpm/redhat/acl@2.3.1-3.el9?arch=aarch64", + "base": { + "uuid": "b7c585a2-7a90-505e-982c-c4b0b792d9fe", + "purl": "pkg:rpm/redhat/acl" + }, + "version": { + "uuid": "9bf148fc-3c99-52ee-a30f-3ed44103ed2d", + "purl": "pkg:rpm/redhat/acl@2.3.1-3.el9", + "version": "2.3.1-3.el9" + }, + "qualifiers": { + "arch": "aarch64" + } + } + ], + "cpe": [] + } + ], + "total": 606 +} diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/advisory.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/advisory.json new file mode 100644 index 00000000..e0612d27 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/advisory.json @@ -0,0 +1,2919 @@ +[ + { + "uuid": "urn:uuid:499fe624-5219-4e93-b2ed-d4aaa8c3de55", + "identifier": "https://www.redhat.com/#CVE-2023-2976", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-14T00:00:00Z", + "modified": "2023-11-14T21:31:33Z", + "withdrawn": null, + "title": "guava: insecure temporary directory creation", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:cecc86c6-84bf-48e9-830f-e517dfcb2f30", + "identifier": "https://www.redhat.com/#CVE-2023-0482", + "issuer": { + "id": "04194b23-2358-4267-a83b-a69a3b60d5c5", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-01-31T00:00:00Z", + "modified": "2023-11-02T07:08:07Z", + "withdrawn": null, + "title": "RESTEasy: creation of insecure temp files", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "resteasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "resteasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:bbf5e16e-adfc-446b-b9cd-ac74167eebb3", + "identifier": "https://www.redhat.com/#CVE-2023-20861", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-20T00:00:00Z", + "modified": "2023-11-14T17:29:24Z", + "withdrawn": null, + "title": "springframework: Spring Expression DoS Vulnerability", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-20861", + "title": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "description": "In Spring Framework versions 6.0.0 - 6.0.6, 5.3.0 - 5.3.25, 5.2.0.RELEASE - 5.2.22.RELEASE, and older unsupported versions, it is possible for a user to provide a specially crafted SpEL expression that may cause a denial-of-service (DoS) condition.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-23T00:00:00Z", + "modified": "2024-08-02T09:21:32.428Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [ + { + "id": "", + "name": "apache-sshd", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:afc27082-2db2-411d-9fbf-ecf151e659e2", + "identifier": "https://www.redhat.com/#CVE-2023-34455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-16T00:00:00Z", + "modified": "2023-11-14T21:49:01Z", + "withdrawn": null, + "title": "snappy-java: Unchecked chunk length leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql:15/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:c1f1e6fc-e1c1-495d-952a-9e323d4f62a4", + "identifier": "https://www.redhat.com/#CVE-2023-34454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:46:49Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in compress leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql:15/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:d3e17957-c483-40c8-8041-f62223cfb6b9", + "identifier": "https://www.redhat.com/#CVE-2023-1436", + "issuer": { + "id": "ec0a2ff2-50cf-42e1-a5d6-7c83eb200161", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-22T00:00:00Z", + "modified": "2023-11-14T17:43:03Z", + "withdrawn": null, + "title": "jettison: Uncontrolled Recursion in JSONArray", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1436", + "title": "Infinite recursion in Jettison leads to denial of service when creating a crafted JSONArray", + "description": "An infinite recursion is triggered in Jettison when constructing a JSONArray from a Collection that contains a self-reference in one of its elements. This leads to a StackOverflowError exception being thrown.\n\n", + "reserved": "2023-03-16T20:44:44.527Z", + "published": "2023-03-16T20:59:51.072Z", + "modified": "2024-08-02T05:49:11.438Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "jettison", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:950b0c5e-0dc9-4851-9d23-e3db8a971799", + "identifier": "https://www.redhat.com/#CVE-2023-21971", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T20:12:02Z", + "withdrawn": null, + "title": "mysql-connector-java: Connector/J unspecified vulnerability (CPU April 2023)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:281b25d0-17d8-4d02-bb4e-b3f7e0ddb012", + "identifier": "https://www.redhat.com/#CVE-2023-26464", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-15T00:00:00Z", + "modified": "2023-11-14T17:46:50Z", + "withdrawn": null, + "title": "log4j1-chainsaw, log4j1-socketappender: DoS via hashmap logging", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "slf4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:8811ed0b-745a-4207-afa5-416d7a65eba9", + "identifier": "https://www.redhat.com/#CVE-2023-20862", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T22:09:12Z", + "withdrawn": null, + "title": "spring-security: Empty SecurityContext Is Not Properly Saved Upon Logout", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:5b98f727-1145-4eca-8176-d3f2a32e0fce", + "identifier": "https://www.redhat.com/#CVE-2023-44487", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-10-10T00:00:00Z", + "modified": "2023-11-21T11:59:10Z", + "withdrawn": null, + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:baseos:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:workstation:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "butane", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "git-lfs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "grafana-pcp", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "ignition", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mod_http2", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "osbuild-composer", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "weldr-client", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "dotnet8.0", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nginx:1.22/nginx", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nodejs:18/nodejs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "nodejs:20/nodejs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat6", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:baseos:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/conmon", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/buildah", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/containernetworking-plugins", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/podman", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/skopeo", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "git-lfs", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "grafana-pcp", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd:2.4/httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd:2.4/mod_http2", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "osbuild-composer", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "weldr-client", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:4.0/toolbox", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "container-tools:rhel8/toolbox", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-deps:10.6/pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:server:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:crb:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "haproxy", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "httpd", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:client:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:computenode:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:139b9f36-484a-4eed-957f-5a6c56280297", + "identifier": "https://www.redhat.com/#CVE-2023-20860", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-20T00:00:00Z", + "modified": "2023-11-14T17:28:21Z", + "withdrawn": null, + "title": "springframework: Security Bypass With Un-Prefixed Double Wildcard Pattern", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-20860", + "title": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "description": "Spring Framework running version 6.0.0 - 6.0.6 or 5.3.0 - 5.3.25 using \"**\" as a pattern in Spring Security configuration with the mvcRequestMatcher creates a mismatch in pattern matching between Spring Security and Spring MVC, and the potential for a security bypass.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T09:21:32.43Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:hypervisor:*" + }, + "packages": [ + { + "id": "", + "name": "apache-sshd", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:28e7ba9b-d698-4ee7-8d3f-dcc1b9130091", + "identifier": "https://www.redhat.com/#CVE-2023-24998", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-02-20T00:00:00Z", + "modified": "2023-11-14T16:51:21Z", + "withdrawn": null, + "title": "Apache Commons FileUpload: FileUpload DoS with excessive parts", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:6:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat6", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-container", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-deps:10.6/pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "pki-servlet-engine", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:8:*:appstream:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:7:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "tomcat", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-24998", + "title": "Apache Commons FileUpload, Apache Tomcat: FileUpload DoS with excessive parts", + "description": "Apache Commons FileUpload before 1.5 does not limit the number of request parts to be processed resulting in the possibility of an attacker triggering a DoS with a malicious upload or series of uploads.\n\n\n\n\nNote that, like all of the file upload limits, the\n new configuration option (FileUploadBase#setFileCountMax) is not\n enabled by default and must be explicitly configured.\n\n\n", + "reserved": "2023-02-01T10:32:05.492Z", + "published": "2023-02-20T15:57:07.372Z", + "modified": "2024-08-02T11:11:43.763Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:enterprise_linux:9:*:appstream:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:43a3c864-3593-4dde-ba74-1bef3b5ac58b", + "identifier": "https://www.redhat.com/#CVE-2023-34453", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:37:42Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in shuffle leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:9:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/o:redhat:enterprise_linux:8:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "log4j:2/log4j", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + } +] diff --git a/client/src/mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/details.json similarity index 100% rename from client/src/mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd.json rename to client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/details.json diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/packages.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/packages.json new file mode 100644 index 00000000..4045cd7f --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/packages.json @@ -0,0 +1,29 @@ +{ + "items": [ + { + "id": "SPDXRef-235e6786-cbcc-4a58-b7a0-a4443301ef59", + "name": "acl", + "version": "2.2.53-1.el8", + "purl": [ + { + "uuid": "1a723162-3ac9-5343-a400-4ab89a70dc41", + "purl": "pkg:rpm/redhat/acl@2.2.53-1.el8?arch=s390x", + "base": { + "uuid": "b7c585a2-7a90-505e-982c-c4b0b792d9fe", + "purl": "pkg:rpm/redhat/acl" + }, + "version": { + "uuid": "035cb7ce-f279-5702-9744-30f59abf90e4", + "purl": "pkg:rpm/redhat/acl@2.2.53-1.el8", + "version": "2.2.53-1.el8" + }, + "qualifiers": { + "arch": "s390x" + } + } + ], + "cpe": [] + } + ], + "total": 645 +} diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/advisory.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/advisory.json new file mode 100644 index 00000000..90b58ff2 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/advisory.json @@ -0,0 +1,137447 @@ +[ + { + "uuid": "urn:uuid:aab34263-81da-4198-a3ae-63b24f0de288", + "identifier": "https://www.redhat.com/#CVE-2023-1584", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-22T00:00:00Z", + "modified": "2023-11-08T16:45:03Z", + "withdrawn": null, + "title": "quarkus-oidc: ID and access tokens leak via the authorization code flow", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1584", + "title": "Quarkus-oidc: id and access tokens leak via the authorization code flow", + "description": "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", + "reserved": "2023-03-22T20:15:15.323Z", + "published": "2023-10-04T10:47:37.831Z", + "modified": "2024-08-02T05:57:23.278Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-200"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-c75ad779-f881-4294-91fc-13f15fbe5937", + "name": "quarkus-smallrye-fault-tolerance-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b753449-ab99-535d-ae48-1e4652e27c9d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0053930b-fc7e-55f5-989b-9d24c42013af", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment" + }, + "version": { + "uuid": "4b69e35e-eb62-5323-9fb8-7eafc5a1e4cd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-963a5dc2-f752-4322-91aa-9202ce5b7627", + "name": "quarkus-kubernetes-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4fce46cc-d8ee-50c7-98e4-69b6f4196c9d", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "00753d70-3fe2-5037-8769-a3c88017cf2a", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client" + }, + "version": { + "uuid": "46cb9b22-db73-569b-a256-d39a586eccc3", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10924038-802a-4b46-bea1-ba40f8a69d68", + "name": "quarkus-reactive-pg-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9cc51d22-3ffc-5276-b66e-1264e8182dee", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0144a611-3fe3-5d49-a582-df718dac1942", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment" + }, + "version": { + "uuid": "e6ab830b-ec56-5077-a356-a758b8a1ec5c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b10c491-6cc7-4e34-8fda-4304354ee8be", + "name": "netty-codec-haproxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5dcb0860-e5e3-59f0-848d-996d11c20100", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01ede4e7-577b-5b8c-83c2-35e67072f081", + "purl": "pkg:maven/io.netty/netty-codec-haproxy" + }, + "version": { + "uuid": "d2aeff2e-cd45-5cd5-bc74-d51493da6f5d", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4069f58d-012b-42e6-a77e-000c62f03316", + "name": "quarkus-websockets", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "faf09dd1-b130-5628-af99-a385018a4957", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01f503a1-5e40-57f2-8a52-b67d6f404d23", + "purl": "pkg:maven/io.quarkus/quarkus-websockets" + }, + "version": { + "uuid": "6e1c6213-3a16-51f4-a1e5-7f5523cdf720", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea171641-55ac-4468-b81b-316fa79fc0de", + "name": "quarkus-openshift-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee9c4594-9b58-52da-b70a-da630780c549", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02313e6b-a3fe-5c66-94a3-0c86f7ecb3fb", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client" + }, + "version": { + "uuid": "583347d7-1842-51bf-8c28-ac834a3b75cd", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30ce168f-eb43-4b4c-9358-12dc79f90972", + "name": "quarkus-reactive-routes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "172a965e-e5ba-5e46-981d-9757b8ecc795", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02eb391b-299f-5dfc-9c4c-298e8968529a", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment" + }, + "version": { + "uuid": "58126ec0-fbf6-5dda-b7e5-a25110e84426", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c02d592-d862-467b-9c71-103132700b9b", + "name": "quarkus-openshift-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7067713-9cd8-550e-b213-781fabb2211c", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04532551-313b-559a-b97c-583ecc4698ec", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment" + }, + "version": { + "uuid": "6014ebba-8ec6-5435-9f87-8d0c72a8d211", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af60960-e683-45e0-8b17-a51483f95706", + "name": "netty-codec-http", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "82ba94c0-71df-584b-86e7-2139624ad86a", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "045c6e1d-aa20-5e7c-94f1-21b64e3eca51", + "purl": "pkg:maven/io.netty/netty-codec-http" + }, + "version": { + "uuid": "d54f383c-04df-52c4-bae2-7e9c3cdf9a02", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e44cd9b-4d69-46e8-a111-0b07f9a6c017", + "name": "quarkus-hibernate-orm-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c4b6669f-4b7a-5def-b683-87c242523c82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "052dc802-11ad-51b9-aa38-58f15de32de7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment" + }, + "version": { + "uuid": "8a9ba57f-1303-56ac-a4b3-5baf4ddf5ce7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb185e6c-c910-4ff4-b263-42bd43fae2e1", + "name": "quarkus-resteasy-reactive-jackson-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "52c2f192-4efa-5eb1-967c-8939b6ff9578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "056802f2-3e2c-5206-a404-b3b6cefdcba7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common" + }, + "version": { + "uuid": "dccc1534-4d79-5dd3-a7b8-0450eaf05f9f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d741f3b-de3b-41c0-a09b-e778a10d50d8", + "name": "quarkus-spring-data-rest", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4de1ff-52df-5b0e-acb9-68d97df641b1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05cc8b99-1c5b-507d-bd60-c4f1ef8c0bff", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest" + }, + "version": { + "uuid": "1a08fd68-72cf-5a64-95b7-235f7f3c4200", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-930c4e5d-370b-4fb3-88c6-7a602a33af09", + "name": "quarkus-resteasy-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8116e156-f21a-5af7-80a8-e816ae881c8a", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05d27302-4e62-5271-9422-ea5ad094f2b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson" + }, + "version": { + "uuid": "dcfde42e-704f-52e1-b668-de5457271533", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-caad14dc-7bb9-4ca2-bdea-5a302ee09cb6", + "name": "quarkus-datasource-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2fbe4407-ac04-5760-aa82-a4c3fea02a66", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "067ed295-e259-5cde-bab0-2be520fb9a4e", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common" + }, + "version": { + "uuid": "bb1a32ba-5bb2-5d2c-a44a-bec96cb54df0", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2fd1018-55a9-449e-8179-7c7133a73e59", + "name": "quarkus-smallrye-graphql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6d669066-1aed-5e7f-a15c-24a4f5889f9a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07b0350b-13bc-5d76-a010-d7d581558de3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment" + }, + "version": { + "uuid": "ae2df958-63ef-5dba-b320-0aab51cf2167", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-040633a2-c94e-4d10-9e93-8a397e19b4a4", + "name": "quarkus-smallrye-metrics-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d7d7a9df-d1fe-5f23-a542-cfc65acec28a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08116430-432a-544d-ba75-e6e2af6f1dae", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi" + }, + "version": { + "uuid": "810aff8b-bcb7-5b91-8820-83805a824589", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b03dbf7-47e6-4a26-9d40-10f963dffa40", + "name": "quarkus-funqy-knative-events", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6676117-c46f-508b-8c2c-38c1d9eb06f5", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09beffbc-6f1a-5c3a-908a-ab96701fa478", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events" + }, + "version": { + "uuid": "bc91be4b-3ea7-5aea-8d11-d2d088c124bf", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cecd6c10-5e51-4661-b215-e716a0fd5028", + "name": "quarkus-resteasy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d315a338-83ee-50d2-b558-666f9a873014", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0aada068-a0d8-5d14-b2a9-fac85d5b9d36", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common" + }, + "version": { + "uuid": "be0d3b4d-c77c-52c4-a81f-849249009250", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-beaa0bc7-60f2-4ef9-aa3a-8d4d332bc63c", + "name": "quarkus-bom-quarkus-platform-descriptor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50cbf391-7d3b-5e6e-8529-6f995b8ed895", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004?classifier=2.13.8.Final-redhat-00004&repository_url=https://maven.repository.redhat.com/ga/&type=json", + "base": { + "uuid": "0ba7b14f-83c3-5748-8b63-d8393c9c47cf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor" + }, + "version": { + "uuid": "f866e0e9-4fa5-591f-a17d-055cab03cf9f", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "classifier": "2.13.8.Final-redhat-00004", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "json" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07a82943-c3ca-40ff-bcd8-b26b49b269c9", + "name": "quarkus-devservices-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d63b4298-8cb6-5dc0-b5f9-c65c4783e54a", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0c3d1642-f967-52c6-9563-8ae08aed1534", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment" + }, + "version": { + "uuid": "4184d1c4-d0eb-5486-ac5c-30342a302664", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-890fe6a5-a463-4223-8eb2-ae0741e27b48", + "name": "quarkus-devtools-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d44d6dec-d7a1-5910-9d8d-6c9f704eb5d2", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cbb3638-6fec-54e7-85a4-7816e3477c1a", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common" + }, + "version": { + "uuid": "e906f715-8c37-570a-86e9-e4a64aeb9c44", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d610f39-ecfb-42cc-b1bc-0c3dfb5b3383", + "name": "quarkus-micrometer-registry-prometheus", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "24893cca-eb67-555a-ad5d-8c5c8cab8d29", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4de25a-e9c8-50eb-ad77-87f0c9c18261", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus" + }, + "version": { + "uuid": "bc558ab7-8541-5d1f-98b4-84f4919c7532", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88136270-63a0-486b-b333-4448f6b3e0ae", + "name": "quarkus-smallrye-reactive-messaging-kafka-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d62ff1c4-016f-5956-a900-c2c4a7379742", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e019485-c37f-5857-9221-646d283e9fa0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment" + }, + "version": { + "uuid": "d1e90615-bbcc-5937-ad66-dd04fed3fbd0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-798a1f7b-8448-45e0-95ab-e22434cfe547", + "name": "quarkus-smallrye-reactive-messaging-amqp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cda87336-713c-5d33-8f52-04150751e7be", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e0c5a15-13d1-5974-9782-4c89f7ba1948", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment" + }, + "version": { + "uuid": "3321a6fc-4e78-5799-8b53-62cbb507dd24", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5cd2b4bb-adc0-41f6-a11a-b68aa5db6a29", + "name": "quarkus-devservices-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3fa188eb-4411-5abb-ad9c-fa1bc0b08b2b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f215144-4d67-5011-832b-093bf8336898", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle" + }, + "version": { + "uuid": "13e73e0a-a4e9-5ea8-942d-b4a21ea27642", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e7af422-d69c-4589-b530-49a3035246ac", + "name": "quarkus-kafka-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "126be05f-6cdb-53cb-9188-2fab6cc5499f", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f4b3a06-497a-5721-b378-43fe8e916630", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment" + }, + "version": { + "uuid": "bb3ccbdb-bbf0-5300-84ea-f9e899524323", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c88b3e7-e466-413c-9923-e5b0cf3b9f2e", + "name": "qute-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "67cdaca7-1133-5cc5-af6f-597b1e2460fd", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f57a6b2-fbef-5521-8d8b-d64230e75c09", + "purl": "pkg:maven/io.quarkus.qute/qute-core" + }, + "version": { + "uuid": "7321b3ab-98b4-5e25-8f1d-a0f0df9849d9", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0689851-37cc-404c-bd26-327853190726", + "name": "quarkus-resteasy-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5166c1a2-c2b1-5b8e-a687-8d50bfcd174c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "10c95e5b-29bb-5165-8a1c-a3dca9c79578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common" + }, + "version": { + "uuid": "9631e555-61ea-5396-92e8-2dd43272a413", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-25ad8e4d-7ce5-46bf-b7cc-5b65086c5f41", + "name": "quarkus-hal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b362b10-fe81-5909-a1ea-b51e52ef11d1", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1116d663-dff4-5fe2-ae14-ea020b725970", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment" + }, + "version": { + "uuid": "24c66fb6-e441-50d8-bab8-cc8f422f7305", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1eb5d62-38cb-48cc-9dd9-4aca1d2e21cf", + "name": "quarkus-mongodb-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "93ba4c2b-0dda-5870-a029-7187f7a4d253", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1160cff9-6b7a-521c-ba4d-c45c0225c0b0", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client" + }, + "version": { + "uuid": "86d453aa-4d73-5c0e-b4a6-8b3b4be9a154", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ef4669b-667a-49b2-ba30-a9ad9e6787c3", + "name": "quarkus-quartz-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "457a8985-cb9b-59ea-b19f-880f103fc0ec", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1291070b-4ea5-5dea-9d7c-98c37774284b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment" + }, + "version": { + "uuid": "003b9e3f-d0f9-5c52-a21f-ad7a4da02699", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e181d5-3aad-4491-a629-b05326a56316", + "name": "quarkus-smallrye-openapi-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a4344ad8-56f1-575d-ae68-ee37d6cf23f0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13aa85ea-3c30-5a02-8aa7-d165775c6ab0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi" + }, + "version": { + "uuid": "f765c3d8-15ce-5d20-bce4-12e46865e2d5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f95c789f-1905-43b6-8b69-8a7a3669b8ae", + "name": "quarkus-devservices-db2", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "db82485d-a60a-5e54-bb11-74a4e8c01227", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13b6b528-37ac-5ce6-8aa3-76b1a7819de1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2" + }, + "version": { + "uuid": "5f8cd5a5-c806-55b1-acf9-402bad08d3df", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0847b30f-f479-45a2-befd-b500606d0a21", + "name": "quarkus-bootstrap-runner", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d13c7ee0-65dc-5fe6-8792-0af78121ee79", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1474df3b-f69c-5cb2-a912-7c1335c3f8fe", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner" + }, + "version": { + "uuid": "9b7a31ef-3c5e-54d6-ac78-94d5e8f2d9d8", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40ff2b19-5336-47b9-8be6-874cbb33f868", + "name": "quarkus-bootstrap-app-model", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50668bbc-169b-528b-a3a0-a39e94c86e93", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "15f803ab-ea0c-5f5b-9d7d-a6b8c7b2e373", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model" + }, + "version": { + "uuid": "7d204113-798a-538e-88d4-9fb77d3a5462", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44db22f7-4bea-4ebd-bad2-aeadc182c4a3", + "name": "quarkus-oidc-client-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad57b00-7f93-5039-bc04-21e9340b26fc", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1665dfb5-4082-5ac9-9b9a-385fd48966b0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment" + }, + "version": { + "uuid": "1619ab32-934e-5441-8f61-62af1fddcd33", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0777bb4-ea20-412f-8e8d-be7cd6502a23", + "name": "quarkus-vertx-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca4b353-48e7-5133-89ce-05253f3bd43b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16ba7b38-569a-5d7b-8432-d23400b4dfd2", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment" + }, + "version": { + "uuid": "81110a25-6497-5c48-aed2-5211ae522ea9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1e4344ce-8f61-4e85-a4ac-cbc383fe414c", + "name": "quarkus-jdbc-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16b126be-46f0-5cc9-b3f3-fddd32d6fd44", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16c681da-2698-5821-9fd8-e51e211bacec", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle" + }, + "version": { + "uuid": "7b58af65-6264-5f57-bb1d-a453db39b16e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-394e6200-3abb-41ab-837e-71aee668281c", + "name": "netty-codec-socks", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5e694d2e-c97c-5ae1-adbe-0ecf77a50c7b", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1848b072-9a0d-556e-940d-0b438ab5288f", + "purl": "pkg:maven/io.netty/netty-codec-socks" + }, + "version": { + "uuid": "5944b774-9704-5c48-8276-b3be3378b68e", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fea042f-0b52-4848-b1aa-cf5912bb8b1c", + "name": "quarkus-vertx-http-dev-console-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36172ba0-f9b1-5fca-8d0f-d63ee435eaaf", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "184953ef-e38b-58e8-9704-49b3ece829ba", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi" + }, + "version": { + "uuid": "5b678f67-8cb3-5376-a49a-e7cb53e5eb73", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0400ac2-fc96-462a-9d0a-955f391e234f", + "name": "quarkus-resteasy", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3be65ade-f215-52b5-a273-515cac52e577", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "187f3361-720d-51ed-993c-b4c00e35852e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy" + }, + "version": { + "uuid": "bbbf817b-3732-5fe7-b5a1-bf3685d072c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-488833fa-2eb5-462f-9390-1a50042f479b", + "name": "quarkus-smallrye-context-propagation-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15ac265a-140b-591c-88d8-bc24f43e5147", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18853b4f-555c-53ec-b794-5edbadc55d02", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment" + }, + "version": { + "uuid": "3b027b54-5d45-589b-8afd-f914da1a2f04", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85dbdfbc-56da-4359-996c-ad639b0ccc2c", + "name": "quarkus-builder", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "02df10a9-8be4-5b82-bcb8-50bed2e763ba", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1916fc34-85b7-5f63-ab90-6ecec8b1ce1a", + "purl": "pkg:maven/io.quarkus/quarkus-builder" + }, + "version": { + "uuid": "36b4ea26-2f55-51b2-ac54-f39d16a45853", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b46ddd9-d99a-4c66-9523-289f6026b66e", + "name": "quarkus-jdbc-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f36b5f92-114a-5218-8f0a-8559b31257fd", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19d02fa0-fde1-5743-b375-8a34ccc2c3b7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb" + }, + "version": { + "uuid": "6732fc94-5ce4-5eed-a508-7dc960a0ba82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-570f27f1-a31e-41f8-a6ba-8eedaefb9858", + "name": "quarkus-avro-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "43490349-7757-53bb-a03e-de54514b2e90", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1abdcfc6-1537-538f-8f87-72691b7158cf", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment" + }, + "version": { + "uuid": "84a51b5c-d691-5f4e-92d8-cb54350f66f2", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc0eeda4-74cc-405d-9ca9-655595411b22", + "name": "quarkus-jdbc-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ab7e2cc6-6aff-5119-829e-8c32475d80d3", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ad66f4e-408a-5350-b9e6-653dd071e9d6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql" + }, + "version": { + "uuid": "fa419877-adb4-5ff8-9687-e8e5bf6c2ef9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2209db79-4483-43f5-885c-60c286409a7b", + "name": "quarkus-rest-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64a7aa8f-2aa4-5056-b79b-40e1eea2c42b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1bfe22cb-466d-5361-90be-c32dcf46b1a0", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client" + }, + "version": { + "uuid": "eea24528-6d2e-5210-a98a-5971811cceab", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a46eaf1-30da-4472-a0b5-36964582cec6", + "name": "quarkus-devservices-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f723d346-6d21-53e5-8d7f-1f9e50d3ec44", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1c3f3382-5e3c-51dc-ae00-785846666f54", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common" + }, + "version": { + "uuid": "9510fcdc-5d00-5dc5-857e-fdde705acd89", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1330df4-c726-44d9-9178-79a6ef546808", + "name": "quarkus-kubernetes-client-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2517fb14-202d-5941-ad18-e07db6fe5f04", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1dc1e346-9422-5706-8800-7cde9bff5c30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi" + }, + "version": { + "uuid": "31a1043e-dd45-5cd8-be56-489539b49e30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a61c38d0-4f04-440b-a9b4-becbeee59bc6", + "name": "netty-resolver-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ff246236-cca3-53c8-a9c9-1a2311dd64ab", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f8db150-de5b-5f90-b46b-6055cd758488", + "purl": "pkg:maven/io.netty/netty-resolver-dns" + }, + "version": { + "uuid": "ffac9578-0a40-5f50-9892-050cd80eeda9", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9372be64-184e-4fd2-a5b9-80310e496c4f", + "name": "quarkus-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5db35609-0222-5804-9c69-6a87b29d42d2", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f92a80f-62ca-50cf-a859-f4813f772dce", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb" + }, + "version": { + "uuid": "b472e0a6-fc8b-5e2f-8735-00b43b748ee6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42356885-c7d2-466c-9965-99fd66844813", + "name": "quarkus-swagger-ui", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b9f041-eb3e-514f-ba5d-f3d3c7632b0b", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2048835b-663d-5d6c-81b4-0f80447bef9d", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui" + }, + "version": { + "uuid": "86be783d-ec7b-55db-8b22-4caf074dcb10", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30d9acf6-2342-44b9-a159-6f54083b5516", + "name": "quarkus-kubernetes-service-binding-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d26fc174-a72b-5984-bead-5981fbbee8d8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "218cb45a-f09c-5bfb-b66e-00a3a8fdae95", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi" + }, + "version": { + "uuid": "0d7d47de-b91f-5864-8ee1-2642593ff93e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-466c1ab1-7bf1-4a11-b7c8-0d03cb34d1c5", + "name": "quarkus-undertow", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a538551-22ec-5fa5-b898-a991f552c2ee", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "22c33f8e-bd68-5cee-af99-cc09b1d811d9", + "purl": "pkg:maven/io.quarkus/quarkus-undertow" + }, + "version": { + "uuid": "722a7259-2cf9-5f77-947a-42ae541244ab", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2747f7b-172b-402a-84f5-ce178c42b25e", + "name": "quarkus-grpc-stubs", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a9a749f6-34e2-5453-a250-142ebc0528df", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f1434d-6fa8-5182-825d-f735df474e36", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs" + }, + "version": { + "uuid": "914298cb-edff-5299-a9e4-51d27d93092b", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f85b9c37-05a9-4266-bf89-6545a1a306fd", + "name": "quarkus-devtools-utilities", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa84e16b-ffb4-58fa-91ef-7184eef2a243", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "247eade4-d56c-5be4-b380-6c936cfdb311", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities" + }, + "version": { + "uuid": "75e7121e-49fe-5c35-92e7-d3a022db7d11", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbaf8f9-748e-4d7b-b7b0-2e09f9e66b95", + "name": "quarkus-funqy-knative-events-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0f788013-6907-53d9-be7d-911653385954", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "24e68003-fe62-5274-a783-72ef4b90f610", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment" + }, + "version": { + "uuid": "cedd0d04-82b5-5650-8572-7fcfb0cb43b6", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ecb352-da4c-46a3-8617-ed458ced2f45", + "name": "quarkus-spring-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4fbcef-f593-5439-8b4d-2b8fe7fb5fbc", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "25ec0e4d-1dd8-53cf-8288-3e494f6e03ef", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment" + }, + "version": { + "uuid": "6c0587e4-ad91-5401-be4e-35ab299c79f0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73e410a9-68e6-4bf9-8f12-edc691d73fb5", + "name": "quarkus-jaxrs-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8ef67e10-656f-543d-be30-58f489bcc039", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26333b28-d4ea-5b5c-9677-7bd6707b0de0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment" + }, + "version": { + "uuid": "a6b69aab-84f9-598b-b2a9-7c3db52c131a", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80ea2723-f5ed-4cca-b320-8f79063510a8", + "name": "quarkus-smallrye-reactive-messaging-kafka", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "01df1fb2-5f06-5dcc-9fcf-f9883fdbad20", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "263d3de7-dae6-5693-bf59-9ce5430cdf89", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "2199814e-48a1-5032-a08f-4f0471c15240", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ed98591-d051-43ab-9c74-1f3381d9a9a9", + "name": "quarkus-core-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "47594949-10d7-535c-9fe7-f07a3ad50de2", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26c0201b-9938-5d35-909d-803c549d9dd8", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment" + }, + "version": { + "uuid": "7ba38899-a09f-57d4-b351-8f218a26f18f", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3be0ff6-a286-4a04-91f9-7812df6702e1", + "name": "quarkus-spring-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6a1d83c6-a770-5d88-9215-fdbf79bcc710", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b632501-d073-58f0-89a7-0654a3f4a1ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security" + }, + "version": { + "uuid": "daa90c50-b765-590b-be8b-bd34bd7fdfda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4818f59c-b5f7-467b-9d40-fc29a7630d3e", + "name": "quarkus-kubernetes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a99298a9-3375-5152-89ce-02802c75e179", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2c6eead0-ce88-59b4-994a-f637fe92224e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment" + }, + "version": { + "uuid": "ea6e86f7-9a83-5b53-8c9f-ee8eda9ac0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1223d116-41df-41a1-b07a-29fde984dab3", + "name": "quarkus-smallrye-openapi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75f9bfc7-9c89-52fb-873b-c3ec01a7e7e9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d403acb-b8ec-5cd8-af33-bcf472f17ff3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi" + }, + "version": { + "uuid": "d687a1b2-586b-5610-b49a-ffc20b8e8c17", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1d0db57-c472-4dee-ab3b-16b01b8e2faa", + "name": "quarkus-smallrye-reactive-messaging-amqp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17962b0d-0f0f-588e-bffd-e2c42d1d5c8b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "303891d4-b794-5dd1-8f5e-fa37b3254386", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "1586e35c-2e5d-5746-8d80-1ce6baa6d8a4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cc93b96-b2a4-4e8a-bae4-9a519bb47cb7", + "name": "quarkus-resteasy-reactive-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd47493d-a094-5720-b2ea-ebfbfd996e75", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30ec5893-e9bc-5c50-8d3f-66c4eda95a9c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment" + }, + "version": { + "uuid": "76423c53-f3c1-51d2-abf2-d40d6085a749", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a2fa8319-ca3e-4f93-90f0-8ea931df3d13", + "name": "quarkus-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "167a84fd-94d7-5ed1-8449-06c7ee696def", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30f2a642-3fe4-5088-8675-18136395deb7", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment" + }, + "version": { + "uuid": "b210e73b-1bcf-51eb-b3f5-ea866ec12e16", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cb52258-3582-430f-84c7-635d63238be3", + "name": "quarkus-smallrye-jwt-build", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a937e4b-d857-5d4d-83b5-d6c192da529e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "31153480-c3ce-5dc7-9a88-787df6c8d95a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build" + }, + "version": { + "uuid": "260f6449-31cf-5a91-90fe-865cd5532223", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e7ee17f7-8e9f-4b81-9c45-ee240e6dc5bd", + "name": "quarkus-jaxrs-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "753da595-381e-5895-9967-86713a79ecae", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3237c3c5-a44f-583d-b704-0becfde42d2e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment" + }, + "version": { + "uuid": "b70565b2-9762-51dd-b1d3-bd72937f313e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-23be191f-7615-4b9d-a2a9-fe707af48c31", + "name": "quarkus-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0df54167-b0f0-5d91-90bc-628a80021cec", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32434ab5-3d47-547d-a69a-fd36ed6539e5", + "purl": "pkg:maven/io.quarkus/quarkus-security" + }, + "version": { + "uuid": "5f7a4e7a-b255-5aa1-9e89-1abc25272c8d", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c550828f-54f2-44d8-856f-eb163a80990b", + "name": "quarkus-devservices-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14888876-a330-52dc-b6a4-6bb287d375d1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32d2f0ae-ff13-5de1-829b-23693a01b58b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql" + }, + "version": { + "uuid": "59c887a6-e4db-5f29-b2dd-e996528a0d34", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c1ba4309-9abc-4e81-93b4-f3ab71b34476", + "name": "quarkus-rest-client-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2601075e-85cd-5985-aa30-9ebf42d00ef8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33a0268c-6e74-564a-932d-abb29d88b37e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment" + }, + "version": { + "uuid": "d9b1dc78-fd6e-55f1-8525-6d5a90b8feae", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4400c49f-c43d-41f1-8eaa-43f112597bc2", + "name": "quarkus-apache-httpclient-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c5bb552-8f6e-5c3d-91c6-90b47be5cb16", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33e14e28-4445-5802-aafb-910c24fc66c6", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment" + }, + "version": { + "uuid": "e226e5fa-8b48-5935-89e5-907b8715af6e", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710139ec-bcd5-4284-bdb0-d859aaa281d5", + "name": "quarkus-resteasy-reactive-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "181b4d1c-08c0-53d4-b4a9-b7111deeebfc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33eaf1e0-cb21-5657-b689-733c72a8cd6b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute" + }, + "version": { + "uuid": "51bbc3e9-f1c5-5329-9424-60578c25ba3d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65c10ba0-12ef-4cb4-8afe-777962394902", + "name": "quarkus-resteasy-reactive-jackson-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "19adc145-7ab3-5a27-bae3-d7fb149d99a0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34210648-b598-573d-a70e-42a801310c31", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment" + }, + "version": { + "uuid": "34cffcdf-15ea-5897-b5ce-8efcd9329428", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5716727a-ca55-4810-8a3c-1da87eeda5d1", + "name": "quarkus-devtools-base-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc64135-ed41-5e03-a2db-75a74e7f5a35", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "346c44ca-ff1a-5e53-97e9-fa6a486356de", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts" + }, + "version": { + "uuid": "33f9310e-5e9f-533f-b6d1-03312662d399", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-780655c8-4460-4858-a9dc-c4b4025184a7", + "name": "quarkus-extension-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "074aef48-23f8-510f-a93d-9d29f8681132", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37df424d-a1e6-5694-ba9c-c3ec797c4996", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin" + }, + "version": { + "uuid": "c5ea19a6-cd5b-530e-bcfe-3730eb957ee6", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f32dd752-29fd-4a6e-a241-2ee80367e4f9", + "name": "quarkus-resteasy-reactive-jsonb-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e895e5a5-e01b-5fa8-a0a3-09f44190b37e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37e1e02e-1b1f-5c91-a23d-4a9dddddbfae", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common" + }, + "version": { + "uuid": "ecb206c3-326d-5390-9621-06d19b856e44", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b295835-4e63-4cb4-93ff-00e07478fb5b", + "name": "quarkus-hibernate-validator-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2415a152-44ff-51d1-a2c5-aae176ce040c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "38d5de8b-3164-593a-9d77-88a69bb3c86d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi" + }, + "version": { + "uuid": "2b54eb43-7eb2-586d-aa56-c264b55fea2d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dec4267d-261f-475c-aa7e-15081cb7b814", + "name": "quarkus-hibernate-orm-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dab0e411-c906-5f26-ba9f-2bc8058b96f9", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a3fa47d-a921-5a4c-9992-6a34cf716a6a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common" + }, + "version": { + "uuid": "c7253c93-72e3-50b1-b537-3866ddb07a1b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-733d691e-dc1c-4948-b66a-c5387651c203", + "name": "quarkus-resteasy-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "751710b5-9c33-5861-b0b6-0d253da6df48", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a53866b-04f7-584e-92e6-9f0101263a1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment" + }, + "version": { + "uuid": "ec4da626-0e3e-5fc6-bdd8-4654a137cdab", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50b4bc78-052a-483c-872c-e0941edd9301", + "name": "quarkus-oidc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba56d11b-d66a-51ca-a310-7913f2b5d487", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a60e3c5-2baa-59a9-b05c-7587eaab9dcf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment" + }, + "version": { + "uuid": "0733fa3a-f274-5d6f-9afe-0a855677db6a", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-87a107c5-424e-47a2-afb3-7ec4e6df38ad", + "name": "quarkus-smallrye-context-propagation-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d0262f1d-9fb8-57f9-bd33-f2fa3c719e5f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a9dcc84-a92e-597d-9f8f-6eb3e7e60b43", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi" + }, + "version": { + "uuid": "4597a3b8-580e-5322-afe7-5c943ea6b55f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e67ac09-7ec1-424b-bd9f-84771a9606f6", + "name": "quarkus-kubernetes-service-binding", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5657c512-f07d-5b08-a5b0-1df803963ff5", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b025fdf-9886-5abb-a20a-bfcd188a9413", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding" + }, + "version": { + "uuid": "0a9cc5f4-c981-519b-a01e-e2657dd9cea2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b4e4a45-acbc-4da4-8926-968db5098c83", + "name": "quarkus-elasticsearch-rest-client-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6db23df-d47a-5974-87a5-613ecb86d1b7", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b0a7b21-a704-5f48-98cb-6444c5ca11a9", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common" + }, + "version": { + "uuid": "ecf40bcf-eed9-512b-be0e-cd79ed9bc74a", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85e1044-8101-47c7-95c2-b53b3f0fe41c", + "name": "quarkus-vertx-http-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14aebacc-daca-591a-b91a-6282afb27fcb", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3c33c6a5-344a-5551-badf-8cb0169abc87", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment" + }, + "version": { + "uuid": "82316ed9-78f9-53bd-9840-cb968b45752a", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16353681-583e-4ef3-9000-3128fa1e23f4", + "name": "quarkus-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a44ceebd-83ae-5d1d-804a-3140a36e2d3e", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d4b8b8e-da71-572b-b188-5710d59a23b7", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment" + }, + "version": { + "uuid": "74202f8e-e160-5ff4-8d52-cd3d2a2c1f80", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff1daa18-ba57-4391-a109-1d4bb7ddd23a", + "name": "quarkus-smallrye-openapi-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d46ba1f7-4fd7-5ce5-adca-093abdb497d4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3db6132b-31c5-546b-a659-ab9100dcf175", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment" + }, + "version": { + "uuid": "72ce2369-8f8a-5ab5-9d2a-d58534c1b3fb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2756596c-da2b-4246-ac12-10ae07ad5ff8", + "name": "quarkus-reactive-mysql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ceba0bcc-8048-575a-8cc9-34e8060f2db3", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42756c7f-ae43-5af9-8daf-3cec4d03251c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client" + }, + "version": { + "uuid": "a1691007-16fe-5ca1-bdc9-3ef909d8efb0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b794473-ef8a-4dc3-83c9-994ce7e416c8", + "name": "netty-resolver", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ca80ea97-d265-54c2-a263-c7069934ac5d", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "43af72a1-d9a4-5b51-bf1d-379c4f361446", + "purl": "pkg:maven/io.netty/netty-resolver" + }, + "version": { + "uuid": "968f513e-9435-5b1b-9174-e53eab15fc83", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e08e39f8-f66a-44f4-93f3-26f8e1e79329", + "name": "resteasy-reactive-client-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45d957a9-f53f-5cdc-8ef4-24a3e79c7dbb", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44b72d4a-b1c0-5ea8-ae55-7a0e3cd79e02", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor" + }, + "version": { + "uuid": "80315b0d-5179-5221-8610-c6dc029aa4f5", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14276dc5-94a5-43cd-84b0-ea71fc2b8222", + "name": "quarkus-container-image-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e628e771-34a3-51dc-97e1-4acb2b8ca5ec", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452eef4d-38b7-5e50-83d4-b96b6642b9db", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift" + }, + "version": { + "uuid": "3648646d-e82b-52db-956a-0d5d4c44e34b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a0388d42-2217-4d3f-affe-1eeea41e4e60", + "name": "quarkus-resteasy-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66cf0916-3d7d-5739-ab86-1661306103e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "46457d81-5f7a-5f5d-bd5d-fe30afdbab4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute" + }, + "version": { + "uuid": "5cecfcb6-7729-571a-9091-8abf39319bd3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cd8d0c3-3d68-412f-9e4d-59afe8b84671", + "name": "quarkus-rest-client-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b26e3805-8e38-587f-9314-db0b8eb67b09", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "479cc516-ed0a-5c70-8359-68da053461b4", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb" + }, + "version": { + "uuid": "5746db2f-3b44-5412-8d2a-1c8b78ccb382", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6de0e4bf-81b7-43ed-ae15-8f708b4d792c", + "name": "quarkus-rest-client-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bad81039-e105-5980-9294-33bc71506a5e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4872774a-8dc7-5e49-8bf2-66cb19c1da1a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb" + }, + "version": { + "uuid": "2fa20e5e-1bdc-59ec-8489-fb83b2c3c69d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac7ae0c2-98ee-41e3-8a91-f00ad1360711", + "name": "quarkus-jacoco", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4f17d7-f0b7-5906-b77c-646509e6e281", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49253c1e-77b2-5bb7-96c9-325533555384", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco" + }, + "version": { + "uuid": "eff2cf0d-a503-5e7a-851f-4b927a617fd1", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3fc3847b-8eed-4203-a3fc-f669fbe653eb", + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "496eab61-3333-567f-98da-f6c3389fa91e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ab88f63-6a37-5ecb-a9f4-093ec03bb2e7", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi" + }, + "version": { + "uuid": "e3097c94-b77c-5e59-978a-756364bf0eac", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d10c8fa-d8b6-4e41-85ef-e5f90624f1e1", + "name": "quarkus-keycloak-authorization", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ed321301-2d42-5939-aa96-70930a231979", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be678d1-5f0d-5d97-88b4-968f4f4bb532", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization" + }, + "version": { + "uuid": "e8c56f6c-62b3-5d14-a5f0-b2c921be6bdb", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a93d1d8b-bd47-42f0-bec2-536f027939c0", + "name": "quarkus-config-yaml-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "69248775-f5fb-5df9-ba0a-0ce8254bd512", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4c38dc0e-c278-5ac8-9de0-eba1263655c1", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment" + }, + "version": { + "uuid": "86ccc4d4-5720-502e-9caa-579b14076aab", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e300fa6-506a-4418-9dbc-ad9457a653ba", + "name": "quarkus-smallrye-stork-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a6337f26-143c-5e7d-90e5-b6628420d368", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd69d1d-36dd-57f0-a22e-c4a565157ac5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment" + }, + "version": { + "uuid": "75d1b7c1-a921-5421-b734-0d15b42ff539", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af03e42-a1c7-40d9-88b4-9beb6c420db1", + "name": "quarkus-resteasy-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e06e08f1-721f-51c5-938d-d36cc57ba5d8", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "502cbae6-cc31-5f4d-8f0b-85e3756a0dfd", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment" + }, + "version": { + "uuid": "2f0746b5-be13-5c33-bc9c-bcc1c00dc8b3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec3162b9-9631-44e6-9bbc-e4f268ef722c", + "name": "quarkus-bootstrap-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1be0493-7f8d-5b02-bcbb-eba30efee1f2", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "505c74b2-b0e1-537b-b012-621d3cb32333", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core" + }, + "version": { + "uuid": "55540482-9dd3-5934-81a7-c55ec6c0b7c0", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-333ec135-ab9f-4c13-8f50-ae0772f08de3", + "name": "quarkus-jaxp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3a43984-dfc9-5bb1-882b-3f21d6efd56f", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5092cd38-f156-5ea5-89ba-5a0f10426fd0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp" + }, + "version": { + "uuid": "5ab2e764-7ebf-5faa-b5b1-46759f6a7e29", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59872fbc-27a5-4ed5-80a2-ab85d9c5e983", + "name": "quarkus-jdbc-postgresql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7aa8ebb-75f9-5760-83da-0efb776aca82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "50e7ad71-bb2d-5ea7-b14b-16f2af03a7d1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment" + }, + "version": { + "uuid": "a19f3cc5-b0ae-5bce-9298-3aeeceb2def0", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af7b0e01-08b1-47d4-9aaa-ad27e63980ae", + "name": "netty-transport-classes-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "0ad86e44-2348-5e16-8fe3-6b2c6e7e0515", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53935580-8eb3-5cca-8042-b56f418b9668", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll" + }, + "version": { + "uuid": "0185e2fe-f7a4-5835-b0a7-8a33b646f7ac", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67892c7a-11d4-4b7b-b46f-24a7cc8ec541", + "name": "quarkus-kubernetes-client-internal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "131c8763-37e2-506b-8272-2f24dc961711", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "540092ab-3cae-53aa-89a6-d296dbb8d666", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment" + }, + "version": { + "uuid": "d32725d7-08bb-592d-94bf-cb360139aa48", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1066e0bb-7548-497c-980b-550cc1820edd", + "name": "quarkus-spring-cloud-config-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75e8c34f-1315-52b7-855e-302c2f9eca63", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5426860f-e318-5957-ab54-964557ec2dd3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment" + }, + "version": { + "uuid": "334f0960-51a3-5d46-b5d2-e0f57302c26e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53324b53-b65a-468c-8dee-ce6d9a08f2b5", + "name": "quarkus-resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87766195-e9b7-5bee-bbb4-6b5accfbb017", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "549ead01-246e-550d-af5c-c02dfa419877", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb" + }, + "version": { + "uuid": "ccf3e0a3-8edd-58fd-972a-9213498be91e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f018766-4313-4c7a-a778-592bc26c11a6", + "name": "quarkus-project-core-extension-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4fea899-2fec-5bbc-9990-c658495b1fd7", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55e2d8dd-e960-55c5-b8df-01bc8d7685ab", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts" + }, + "version": { + "uuid": "3d56ebc9-2182-5476-ad6a-e52329f92dfd", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-327ef349-998d-47db-8ef4-21bfe5779914", + "name": "quarkus-hibernate-validator-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "53fca636-2379-553a-8887-bc2f1d7b45b1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5684bcd5-73a6-5efe-b893-a6e0e04981aa", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment" + }, + "version": { + "uuid": "ae27d675-fd2e-5fd0-aa61-a8b0d3c84544", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7f5d59aa-9228-42b8-a3f5-0716163fe061", + "name": "quarkus-netty", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "555728c4-61d5-5993-8921-d117189ad0f3", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58372844-09e3-570b-aaf8-fba55058aed0", + "purl": "pkg:maven/io.quarkus/quarkus-netty" + }, + "version": { + "uuid": "1dd5ba79-e94b-5bf0-91c8-ee30962ef328", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec1ccf7d-d688-44c3-93d5-19c8f6c5dceb", + "name": "quarkus-mutiny-reactive-streams-operators", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "83bc651c-5e3b-5f3f-8520-a8688a04cc69", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59fe04c0-79a0-5b3c-a4d7-f6dc049e353a", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "bb6f86de-44e8-5c66-87a3-a43ea1193be2", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7aaacfb5-63e7-4237-8724-9885b01d69d9", + "name": "netty-transport-native-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "9ea25261-4666-5890-ba6e-276e8bc8b44e", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cbfb1fc-f145-5877-8d43-a7744abf2614", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll" + }, + "version": { + "uuid": "bd29dfa9-131f-5dcf-9e62-00d7bb0ff1f2", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "classifier": "linux-x86_64", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e726bd24-565e-4d41-8e91-4e56fcd6e092", + "name": "quarkus-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b00dc211-7861-539e-94a6-93f7e4ac03d2", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cc62b0e-55b1-520d-b90a-ac13239ed15a", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment" + }, + "version": { + "uuid": "1eb5ef4b-78fc-57c6-bd05-6ba86de36e09", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2514077c-76f1-4ffe-af42-54d2acd59c41", + "name": "quarkus-resteasy-server-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "313cfe0a-5a18-5edf-a110-97562fcc2202", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d484375-8861-5a41-99dd-88888b2b8099", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi" + }, + "version": { + "uuid": "07c4f418-6449-5516-b5fe-52c4f6a44b8b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-469b2356-b0a4-44fc-98f5-5bf4985b02f7", + "name": "netty-transport-native-unix-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "496d5d3d-dbcb-5267-b6e6-b487f13b1ec1", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e26ff54-86e1-5865-9120-caf4d8c675b6", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common" + }, + "version": { + "uuid": "3ac567ce-d4d2-5a8e-9920-72ae60eee50b", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85f52ce-77e9-427b-afbe-6da5e0c62b84", + "name": "quarkus-development-mode-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad60302-a4b0-5054-8b61-c86152920745", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f7aae84-2005-56e5-8bdc-b961acbdcd5c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi" + }, + "version": { + "uuid": "659aaed0-99be-5089-863e-0db46385256c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0d7a272-831c-42f6-88ab-b5a792ab23aa", + "name": "quarkus-container-image-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6f8c2a3-df85-5c2d-b8d5-0251d6f37924", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "601db209-a947-5fb0-aefe-8c2d04abda4d", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi" + }, + "version": { + "uuid": "f895479a-afcb-5f24-b750-031ab9e6502c", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cdaace3-113e-4e6a-b39d-7823e5729a1d", + "name": "quarkus-ide-launcher", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9dfbdf1f-a6b9-5c2b-b823-40b5ff3ac010", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "603b2397-3a5b-53f9-a573-1082d3fb0db7", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher" + }, + "version": { + "uuid": "94511d2c-d35c-56b5-8e1e-b5d428dabde4", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-840ea6c2-87e7-4e0a-a7a0-f410cfb9bb74", + "name": "quarkus-hibernate-orm-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9ce7315c-bfb1-5052-ac8d-e47197c6c22b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "606f41c2-cd4b-5475-8842-9e8b471324e7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache" + }, + "version": { + "uuid": "7b203c5c-8486-5379-815c-32ade7559d82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85de9ba1-4af2-4360-890a-fb3c92406e4d", + "name": "quarkus-bom-quarkus-platform-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6c91135-8813-5f4d-9939-1e16fab38eaf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=properties", + "base": { + "uuid": "608b078a-3157-51af-b251-236ddaf13b8c", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties" + }, + "version": { + "uuid": "52723653-6f29-549e-be2c-942ebf62e30b", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "properties" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbfa7f5-6442-40e1-adf1-3a2b65da4e2f", + "name": "quarkus-rest-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3c06c604-ba2f-5788-bf6f-71bd5d237eba", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6111dfcc-8e27-5cc1-83d3-76b1ff2f89da", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive" + }, + "version": { + "uuid": "16cba702-241d-5045-bbf4-9d68338d1d6c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51845f32-4339-46c6-80de-e862943c0c2b", + "name": "netty-buffer", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "c1344fcb-371e-568b-b2fd-e45dcd1dfa4f", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61d29143-3655-57fd-b805-dbb97ed8a131", + "purl": "pkg:maven/io.netty/netty-buffer" + }, + "version": { + "uuid": "7333a493-f187-51bf-a9e7-4aaee8d4197d", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1efe8d48-9ca0-41f0-a8dc-3b528e0a1dbd", + "name": "quarkus-kubernetes-service-binding-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bcc45506-7904-5489-acef-542c4975a3ed", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61ffebf8-b19a-5082-bbb9-fb68e9985720", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment" + }, + "version": { + "uuid": "0c520917-692e-58b9-9cd1-a475139a3095", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f38ca008-6e30-4570-8a52-86d6310e4fff", + "name": "quarkus-rest-client-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a66cac8-5dab-586a-ba18-9a9611985936", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "624a470d-b96b-50a2-a708-cf7d986dff11", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment" + }, + "version": { + "uuid": "551becc1-3756-540d-b0c8-cf93c4221f49", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3448e5bc-cf5e-465a-98cd-a6fc3633b54a", + "name": "quarkus-kubernetes-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "376edac8-5252-5d52-aefc-cce4f12c94eb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62c9ebc6-11a6-5975-a976-1f512103302e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment" + }, + "version": { + "uuid": "f92274a5-35e5-5080-aad2-b76bb272ecb8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b290413d-9e73-48ca-a143-5dafbb284bb9", + "name": "quarkus-smallrye-graphql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64966b95-c985-53da-80f9-2726b77e2e82", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "633b364a-02e6-5128-8a4a-6d5375a661d8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client" + }, + "version": { + "uuid": "29c2b97d-06e2-57bb-a02a-f341c95f5187", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d3b863f-5cf1-4841-9ce5-6c2bcb4c0d72", + "name": "quarkus-smallrye-health", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "85df758c-6a7a-54d5-91dd-95fb09354950", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "63ec2a64-4992-5542-a90a-46dc9805ecb9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health" + }, + "version": { + "uuid": "f45aa69f-6389-5e57-a3a9-8d5b794e6ebf", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-71b29963-fc1b-4654-a866-a1ec76cebd7d", + "name": "quarkus-credentials", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cd908986-4f09-5cc0-9e66-892b8b57da8b", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6411d779-f8ca-5c3d-9de4-815f4afde735", + "purl": "pkg:maven/io.quarkus/quarkus-credentials" + }, + "version": { + "uuid": "4e43b03d-3dd2-5622-bf17-9c71f88f2e31", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a22bfe5b-ef1f-4a49-9ce2-315d2d1beb7b", + "name": "quarkus-kubernetes-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ebabcbfe-9983-5cd4-80df-456011f84237", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6507bc59-508d-5fe5-ab71-4b1ca01ff7a2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment" + }, + "version": { + "uuid": "61d0ca9d-617d-526c-b0c6-c055419dbbf9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4e179fc-c681-47af-b0d8-c52d96bf1ea9", + "name": "quarkus-spring-data-jpa-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a8df2c2-0c79-5645-ad98-f7e19aebd0ae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "66bc1f0d-d9d4-5d6d-8d12-b8be47537cda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment" + }, + "version": { + "uuid": "dbce6f46-e85e-55a1-b74e-c7151a0c9cb4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3bbacd3-f091-424f-939d-c1378ecb782d", + "name": "quarkus-spring-data-jpa", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b44663e0-9ee5-5f36-916b-eb00f62a78f7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6740305e-0e0d-56ae-99c8-caf035a7c670", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa" + }, + "version": { + "uuid": "efd2a5fe-ab1a-5bc6-acdb-cf4389e7edd1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a73043-6937-4489-9298-1df0dfa993b4", + "name": "quarkus-resteasy-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b928e8e0-0d90-54c9-a1f3-d6e1299ab896", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67eecca9-6db1-5bd3-af32-003cdd1c1d47", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment" + }, + "version": { + "uuid": "ac361a7e-f8b1-58e4-990e-8f215a993578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb769aa7-79a8-4027-85f8-663a6e608e7a", + "name": "quarkus-resteasy-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fee6d74f-1ea6-5777-8b11-d7bb3da3f049", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "681cab9b-59b4-560f-a2f5-114ff84fb40e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment" + }, + "version": { + "uuid": "572b5e60-54b8-5150-b13d-0ad9285f22f5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22ddd669-6b59-4f75-9456-4107da25a846", + "name": "quarkus-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d51b6412-27bf-5cc5-b320-a4b042f6602a", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "685f9310-4963-5b61-81c3-e24794bebdb9", + "purl": "pkg:maven/io.quarkus/quarkus-datasource" + }, + "version": { + "uuid": "59f283e2-3341-5876-8371-8ea3d5a58ee4", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-546b6b7f-8ea5-4b1b-a68a-a2cfb81894a1", + "name": "quarkus-oidc-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "781835bc-e503-5bbe-8bca-d5f67ccc8a47", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68a69722-24d6-5a5f-87d1-3d8ec913a712", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client" + }, + "version": { + "uuid": "19f17aa3-1193-51bb-a069-9d0d5505ccab", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67c75e67-7962-4288-addc-33e4ec2a6a50", + "name": "quarkus-kafka-streams-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6748482-0c44-5bdb-9443-63c1f56f2e0c", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68eaa406-15e3-5cf7-9b9a-609af9365262", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment" + }, + "version": { + "uuid": "2c8b74a8-fd93-5db4-b3ff-832258c95c92", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e8531f1-ed6d-4fbf-8715-7955a4984ec9", + "name": "quarkus-devtools-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a326ce23-4646-5471-84ba-bd3eeeba3e33", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "695d2180-1c51-5de5-82bb-54269d863059", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts" + }, + "version": { + "uuid": "3de59fcf-681e-5a6c-9242-84eed01e02ce", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-220d857b-a0b9-4588-b0e2-b97e38aa1777", + "name": "quarkus-hibernate-orm", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b90207c1-91d5-575d-8df7-4c5e39e07035", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69c179e4-10ed-52ab-81f5-60806e45ff33", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm" + }, + "version": { + "uuid": "dae9dba5-ef0a-589c-92fc-b3642379468c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61297055-dc7c-4de8-83e0-49d8c789bafd", + "name": "quarkus-spring-di-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b09381c0-2bac-57a1-90fc-450d374d2e14", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cd910a-9ca2-5f74-aafc-2922fe1337d4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment" + }, + "version": { + "uuid": "a0bebf09-db58-5a6b-922d-8e63a2a41dfe", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88843e4c-c6ec-4599-b536-70f02bba4af3", + "name": "quarkus-smallrye-jwt", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6cf2155-c2df-578c-b569-62a6d85f2f9f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69d6bb9e-332e-5c9f-9fda-bdfdad05e926", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt" + }, + "version": { + "uuid": "d3f33244-139a-5c32-b81f-e550a54a7c7e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2098e3c2-f2b5-4825-94fa-27bc00d73abe", + "name": "quarkus-agroal-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "26052c2e-e865-5ff1-b9db-297e28cdf07d", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a84b29e-4eb9-53cc-afac-2616eb070f5c", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi" + }, + "version": { + "uuid": "015918b6-1eeb-5e10-a6dd-4d3c7022d4ed", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fed4b130-efcd-4ef1-8836-26b7b5cea154", + "name": "quarkus-jdbc-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ea086e9b-f88e-53a5-9ee1-c7f8ad45f58d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b182f90-d410-58a3-ac06-c131126a9732", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql" + }, + "version": { + "uuid": "c099b094-1ff5-5e8a-a2d0-b435756eff22", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7436880a-b688-4e53-9a1d-059439f90c5b", + "name": "quarkus-jaxp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b9a5a210-7483-591a-b0e7-03c1b6d69a18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b1b957d-a2f3-54c1-b168-9c6bdfd63634", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment" + }, + "version": { + "uuid": "fd21c841-7149-5283-a472-9c140de833d3", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-940e26c2-1b38-4b6b-86ce-610ad349447a", + "name": "quarkus-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd5cadb4-0a04-5aad-a4ed-5a1c1ee2f019", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ba3b95f-dd9f-5213-9c30-fd2fe57d104a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin" + }, + "version": { + "uuid": "5355eb2e-2bd0-5462-8dbb-df577008899a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc5df4fa-1d77-40f3-bf66-34fc9fa1bc52", + "name": "quarkus-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6cfa5672-5d2a-53bd-9b97-ea41cccac1e1", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bf685d7-274d-5000-aa13-d9e508197601", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache" + }, + "version": { + "uuid": "b1a3c4e9-de8e-5a31-84b0-1a06acd4338d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ad0b8ec-0237-49ca-acee-d4c8938d30ff", + "name": "quarkus-smallrye-stork", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0b78bc76-e6d4-59b2-8fb6-6940a523c0b8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c17e661-bf0b-50bb-b566-736d8851e3d3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork" + }, + "version": { + "uuid": "4e553315-531d-5d64-a401-716b1938301d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be2c8d3f-f2cf-4805-94fe-737dd12f4721", + "name": "quarkus-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15445e75-f052-5dfc-b4ab-63ff74f4bba6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c68269e-589c-5bca-8a88-e09700b75e18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb" + }, + "version": { + "uuid": "59dd6f31-ddc9-5ac5-a30e-17dd349958a0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39103775-fc22-4aae-bca6-c91989c8b438", + "name": "quarkus-resteasy-reactive-jsonb-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6035ecba-96b8-591c-8529-68468c94e5b2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d3faf65-3cba-5f4a-af93-fbbc9e494e26", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment" + }, + "version": { + "uuid": "030135a4-e2f4-509f-bee5-97dcd8da13d2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79a49f73-f087-4a3f-80ec-cabd0b66d353", + "name": "quarkus-opentelemetry", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "875c4b2f-35f9-514f-a92d-98e3a9469252", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d569531-d78b-5e63-a709-c526212a1b73", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry" + }, + "version": { + "uuid": "93155d5d-f059-5518-b74b-64353b6478b2", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9dc13228-fe20-4490-adb5-90be2bb678de", + "name": "netty-transport", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "4b4743bf-08af-5e85-ba49-089e61524d69", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbb1cee-48a4-51c3-b0b8-bde2f82066ff", + "purl": "pkg:maven/io.netty/netty-transport" + }, + "version": { + "uuid": "0a7f07a9-1246-5f82-b2a5-9db1253cae88", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b570be0b-25ed-4127-9643-16234239e2e6", + "name": "quarkus-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9eb64eb8-f576-578d-8d3e-04199b7a1e13", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e0f56bb-62cd-506f-8ad3-e5bf3a281056", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment" + }, + "version": { + "uuid": "44a3bda2-7dd9-54e3-9391-cf4f712e3aa8", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78f2a277-47d6-4d5a-b5e1-b410ffcded3b", + "name": "quarkus-scheduler-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fef6935c-7bb1-55f8-8530-638867de5d76", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e1f2194-d4bb-5499-9480-92ab9e1d8d0a", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common" + }, + "version": { + "uuid": "d0678b0d-9604-5b87-8663-53e56bfc8655", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-427a29d6-57fd-4675-8de3-cc6987fc7eef", + "name": "quarkus-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f63fe058-0590-596e-8259-30e03afa9301", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e7521fb-48f6-51f0-befe-83f9bebe57b5", + "purl": "pkg:maven/io.quarkus/quarkus-openshift" + }, + "version": { + "uuid": "8fede6ab-953b-5faf-b21d-7b6aa450de9a", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aebaf362-a78e-4c0a-aa0c-9a0e1c7da821", + "name": "quarkus-undertow-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "adf147ea-6b5c-54dc-93fe-860919414c11", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f483e38-83ee-530a-86c8-682f04cc99b0", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment" + }, + "version": { + "uuid": "0863688e-215b-5901-ac85-71676e8605ce", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7d36a76f-199f-43ee-82cb-7e1e6d21efc5", + "name": "quarkus-oidc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8c732e8b-08bf-5065-af2f-fc8de5ee76ef", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f80022c-2e29-55c0-b2ff-147a7fdcb1fa", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common" + }, + "version": { + "uuid": "beec90c4-1d47-54c4-a25e-06049a3d8516", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a8cff30-f924-42bd-b6e7-cca68547f433", + "name": "quarkus-smallrye-reactive-messaging", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cbdcb5a1-e1a4-57c6-8713-035ad9df9b46", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6fb5f32c-191d-54f6-84f2-9275e4a8b23b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging" + }, + "version": { + "uuid": "eef1a569-0e0f-524f-a853-4940e43bd381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68ae0f2a-018b-4eb4-86da-43832b8d89e9", + "name": "netty-codec", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "adfeb0c7-f3f8-5785-b3c5-a4baf26c16f0", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "70bb8124-bc03-5917-ab6b-5112011967e7", + "purl": "pkg:maven/io.netty/netty-codec" + }, + "version": { + "uuid": "7e3d3cb5-fcbd-510b-9c67-6145b6af291d", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-262ebcf1-72e1-420d-8c35-db55339f3386", + "name": "quarkus-hibernate-search-orm-elasticsearch-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee6c349d-9542-5e7b-a63d-1f79e5c6097f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "723a9e99-126e-5f6a-a9e9-ce835bca17af", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment" + }, + "version": { + "uuid": "23e9428d-af34-5eb2-a567-a05046922d36", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0eb27c33-c07b-4534-ae34-ea73e336dc64", + "name": "quarkus-reactive-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da5db5f5-c917-56c7-a30e-4b25a76ab42e", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73622207-8ffd-5713-9aab-e1f402d3794c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment" + }, + "version": { + "uuid": "42aa7bfb-20a1-577a-b70e-b458238b49c4", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-793c32fe-321f-4132-bab0-5439d9369da3", + "name": "quarkus-smallrye-health-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d15f2d6f-fa63-58b1-8477-c51099005fa9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f0aef9-e57a-52f1-94ff-ac68cec074e4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment" + }, + "version": { + "uuid": "45e1bd90-8585-5ea7-bc51-a20005f69f85", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8dbcf3-62a3-43a4-b4f6-c6bef0ff407d", + "name": "quarkus-grpc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b08a514e-d85e-5351-9475-c103a5c07241", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "74081d31-78ee-5bf3-8cfe-23a3c95b6cdd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment" + }, + "version": { + "uuid": "5f26769a-2465-5f70-bc07-d25cd408ce2e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f6e6a08-d7bd-4ecf-9a8d-8e037cb00f37", + "name": "quarkus-hibernate-orm-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1245d5f-a29f-5dbb-be97-44230b9486d0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7748af30-7cb4-59b4-895f-cb46016bbb72", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi" + }, + "version": { + "uuid": "6f021625-a14e-550d-ba6e-5908cb7aa320", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80a38ed5-1071-4547-8e56-7ef6bb55b058", + "name": "quarkus-spring-data-rest-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32594038-85b6-51ee-95b1-006283768db1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b1c876e-1842-5634-af41-eac112702f5d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment" + }, + "version": { + "uuid": "bcc259db-cc4d-51a0-a419-d9aebfa0644b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e155be86-3227-4103-9edb-77bae78824cd", + "name": "quarkus-spring-boot-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e28ec0c-4664-5492-b2f4-da4dc7b229bd", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b7f25df-d67c-548d-add2-633689b5cfa7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties" + }, + "version": { + "uuid": "2e26faa7-a8d1-50f7-a1d3-25c337ec6e66", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-870db237-fa6c-4865-8985-f52fb4a99c2c", + "name": "quarkus-jaeger", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c63c3edd-d82b-5d24-b833-dd95390a3153", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b85a659-89e9-525b-89be-2647ff8f425b", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger" + }, + "version": { + "uuid": "caec611e-23ed-5414-a897-abf59900d67c", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c99295ab-b562-400b-817c-419cf238d77f", + "name": "quarkus-resteasy-reactive-server-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "956d2efa-7999-569d-9143-46a4fb912c0c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7fe8e55b-1e62-58f6-9aa0-48da0a320cd6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment" + }, + "version": { + "uuid": "11b8a748-0958-5b72-b151-5b5aef1fee04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de65163b-f27a-438f-98fb-a3b39487a797", + "name": "quarkus-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "900e18da-2a3f-5572-9db9-6fdc7c1dddf0", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "803e21b5-c5f5-525f-8da9-75a953d18f1f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson" + }, + "version": { + "uuid": "a32c4f28-1462-5e39-b5e3-255c25ea899f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ae8a270-f743-4a2b-98a8-76fa043e62b2", + "name": "quarkus-keycloak-authorization-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "39aa0936-b303-5c34-83a9-492bebda9ddf", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8096f4f3-7458-590e-9214-5b3e61c58208", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment" + }, + "version": { + "uuid": "3f6c7f88-6862-59c9-902c-fd430d93bd4e", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f15ec78e-edcd-484d-9db1-3f9f7f991946", + "name": "quarkus-spring-web-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ce5d970-42fc-5788-9425-c6aebc1cba8e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80c688a4-d3a8-5445-b3a7-7508d55b95e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment" + }, + "version": { + "uuid": "327f7023-b759-514b-9bef-8cf5dff57545", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e9b381-db68-4826-bc61-817051e1ae2a", + "name": "quarkus-narayana-jta-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "70fdf043-217e-559d-9a2a-fbfb51701053", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80de8c07-ef1c-52cc-b8a6-888ecca10806", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment" + }, + "version": { + "uuid": "3a83f8f0-6e1c-5b58-a6f5-ef004c788c1b", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9bb9a4ac-f467-47a5-8573-2d7c6f5a6537", + "name": "quarkus-jdbc-mysql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cc737316-be25-50bc-88b0-e2380e514f64", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "835553fc-e319-52c2-bc48-55d70a2e8187", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment" + }, + "version": { + "uuid": "ba51d5cb-6edd-5938-a4e6-0cf9148a314c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de924e9f-a767-44d0-a261-b967399024ea", + "name": "quarkus-container-image", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c47e373-6eea-5f0e-94cf-5ec5b5a6c694", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84d91d6f-a02a-5104-acc7-df3f7971a499", + "purl": "pkg:maven/io.quarkus/quarkus-container-image" + }, + "version": { + "uuid": "6d96e730-0745-58b1-8e57-d0a25579fc52", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8250ddf2-3f04-45e6-8221-5a414ed5b9c3", + "name": "quarkus-spring-cloud-config-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3dc8aca-8374-51a5-af20-ea89a4221ca8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85456513-49a5-500f-bf9e-ad975600f71e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client" + }, + "version": { + "uuid": "e5b65e32-3acf-5321-a2a4-04fef8b0b8d6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21b37735-8fa4-436c-9039-40682c6840a1", + "name": "quarkus-hibernate-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c587df9-c5b4-52d8-b945-107f5ae06e67", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8549e270-4cc5-5e0d-ae98-563e798a0e6d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment" + }, + "version": { + "uuid": "93d1e295-f4c4-5840-876d-166c10e0cf76", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e42d136-b872-46a1-8694-aba9187bece3", + "name": "quarkus-hibernate-orm-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1113f065-02a1-5a2b-a24b-6b5a017ba2a3", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86cd0b18-a502-5999-ad85-121edc70dcca", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment" + }, + "version": { + "uuid": "0688e6c6-2486-5688-afc5-2c50c1ce5c8e", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6a140c57-6426-4102-abfd-2ad47a45be45", + "name": "netty-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "71811857-77f1-5c71-818f-39932ff0bb7e", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "870186f2-68c0-54d4-b632-cb524ed17e79", + "purl": "pkg:maven/io.netty/netty-common" + }, + "version": { + "uuid": "2bde327b-738c-593b-a11d-7e5261be5900", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e219e264-7a2a-4ce2-b739-530e599366eb", + "name": "quarkus-undertow-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f0dc1fa5-0fe8-5f34-99de-545c7100c8c1", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "87bfa2aa-0fd1-5f7e-816f-ccae9b3dbec5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi" + }, + "version": { + "uuid": "b96b6835-ac44-51cf-bf99-16a2d8e0b5e5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39c9b12c-f528-4ccc-867e-3e700fd00eb8", + "name": "quarkus-smallrye-graphql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66fdadb4-877a-5096-991a-81a0854af017", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "881457c9-aec4-509c-bfc0-55dcce7942d7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment" + }, + "version": { + "uuid": "3c00118c-2382-5aa0-8375-ce1ab309e54f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7875f88e-5485-4b01-9d8b-a58e422f3b6e", + "name": "quarkus-smallrye-context-propagation", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce888339-535a-5a0d-8385-3bcb4168b77e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "88825f7c-0148-5eb3-92ab-cb823d86c24a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation" + }, + "version": { + "uuid": "4470755c-2368-5c06-8788-14de4b1adc66", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fc7c15b-8c3c-4573-8287-23bfde8997a6", + "name": "resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dccda6ae-0f2f-5a0a-ab47-6c03ef2d7b74", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "89c6538e-8f5c-5dc4-8bed-e6ed0fc7d21b", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive" + }, + "version": { + "uuid": "fab2ee4f-2315-5ad0-bf0a-037f4545a2b6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6159804-c8d6-4237-9761-22f97bc8fccf", + "name": "quarkus-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae311bc2-7848-5c3c-a26a-f2b8f31d1447", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a3c8def-0399-56e6-947c-07a1fb4b44ca", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment" + }, + "version": { + "uuid": "f6a2eee4-b67e-587f-b70f-b727737658ce", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d8fa47-875b-4fbe-9f20-7340e23a90fb", + "name": "quarkus-agroal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f168de3f-4478-5789-acf7-b6c6730dbcc4", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a407fc0-9844-539e-98e6-c380d0722594", + "purl": "pkg:maven/io.quarkus/quarkus-agroal" + }, + "version": { + "uuid": "2a339e09-59c8-5907-9683-9786118e6b64", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-11b7fc0a-bc3c-4578-9667-fd9a2f001f39", + "name": "arc-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45f0c536-c04a-5344-bf57-540f7375ceb4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a7b3a75-2dde-56b0-b441-bfe58d6c94a4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor" + }, + "version": { + "uuid": "6df7d2d7-d694-55ac-85a0-7d2a6a430d16", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5c50423-a678-4d56-9953-7330c3c5e232", + "name": "quarkus-panache-hibernate-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce31edc6-2710-5460-bd71-2a660959e25b", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ab2fe35-5260-57bd-a745-bb22509ac334", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common" + }, + "version": { + "uuid": "a08b583a-f0bd-55a3-9bd3-c89250811f72", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6587db85-8577-4aa7-b4b5-50d4f65b5945", + "name": "quarkus-resteasy-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50df6c36-498b-506f-b5b6-f22cdca035a1", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8b692a6b-ce77-577a-949b-c2793aefae76", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb" + }, + "version": { + "uuid": "31c75ceb-977a-5f70-91fa-84b3c0e6c0c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1af8ffc0-d301-42c2-8980-82f971e3d585", + "name": "quarkus-smallrye-openapi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac3051ce-b7fa-5d1b-8071-4756e914723f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c22239a-29e9-5fd2-8048-9503219b4c15", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment" + }, + "version": { + "uuid": "7b245d36-b6d3-5d84-b9dd-282eb101dc92", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6095bef-676f-4f49-a3db-612888f8200f", + "name": "quarkus-resteasy-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f012f320-f329-5707-90f0-80233d44540d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8de15e7f-5d38-571a-a0d2-baa6da3ffefa", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment" + }, + "version": { + "uuid": "e389d577-7d21-5ace-8276-450f2617ec73", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8ba62f-fcb4-4d1b-88bc-fdf317d55a1d", + "name": "quarkus-netty-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c68068ba-f4ec-5984-8de9-0c803541cf3c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e018191-bd99-5687-b999-4bc37ec3f997", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment" + }, + "version": { + "uuid": "f03e1436-bf6b-5c9e-a0e5-9496f388e74c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a26fda24-bce5-43e6-8b99-a1e89165717a", + "name": "quarkus-kafka-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd66beb3-a365-51e7-aee5-fc221fc3540d", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8f06998b-ffcb-5891-af8f-f7c784117f2e", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client" + }, + "version": { + "uuid": "9fbc9520-e228-5105-8d3c-6fd5f0e33fd8", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33025a1f-2330-4031-be0a-cd2d50e9b2e9", + "name": "quarkus-elytron-security-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4818d536-ecd1-5ded-9623-90a74e5ab213", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9117ba37-1138-590e-a902-c1cb33c00ff3", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment" + }, + "version": { + "uuid": "bfe43c3a-b5e5-50c1-81af-f3ee7d0977cd", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-955f9c35-31d2-4825-a615-5d5c24b2ec36", + "name": "quarkus-reactive-mssql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d232d104-560d-5908-a63d-8f28ea917d8c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "919f5488-b06a-574d-9a79-fef7466711a0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client" + }, + "version": { + "uuid": "1c444ca8-d051-5508-b4c9-019bed0a1531", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16606645-7867-45a5-b5da-6dae9c252d11", + "name": "quarkus-devservices-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4cb84e06-cb6b-5bc9-992e-23061c9135ad", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b0c71e-9d37-5127-88d1-32b5584fea3e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql" + }, + "version": { + "uuid": "fe48a8a2-ad04-5236-8bf9-63412e2b649d", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7a70cd-8eb7-490f-a75d-94dfb14619d1", + "name": "quarkus-caffeine-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc54d22-b269-5028-82a5-eb5fac9fa9e6", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "93ee44b8-118d-5fe0-98b0-c8811c36f64f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment" + }, + "version": { + "uuid": "ab10c629-cb60-58b3-8939-4fcbc12cdec0", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7a8e72d-00f8-41e5-815b-433e55057177", + "name": "quarkus-container-image-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "570db129-156d-5573-a298-64c82816868f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94511500-7e2d-5455-94cc-92336ce41ffd", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment" + }, + "version": { + "uuid": "2faa4353-5e95-523c-9e00-1b54c6a21e3f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05906e73-54bb-4c23-9172-898c76bd6d55", + "name": "quarkus-spring-di", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a5692e79-903d-5125-9df2-0b8bc3418bac", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94a4a80a-b08f-5fec-89fe-84bab45c7edf", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di" + }, + "version": { + "uuid": "c3320e62-70a1-5e58-9858-dda7172306ab", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62cb4303-30df-443f-bbd1-16e8e0701445", + "name": "quarkus-hibernate-orm-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9091fb5c-790e-5c4b-a5c4-6373814af611", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97734d36-fd79-5fa8-b849-14b92bc5547f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache" + }, + "version": { + "uuid": "74088374-2888-59c5-a21b-9de6275f5c8a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a1a98e3-53bf-4e66-9fe5-13ac6b6d049a", + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "805c7c4f-8b37-5dc1-baa8-d193b49e9397", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978a364c-8815-5146-9f51-df97ad59dc2e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin" + }, + "version": { + "uuid": "1a8e0e98-de1d-59d2-9702-03caa5827a41", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39ebd0ce-1c2e-40be-80ce-22b10eb8b48d", + "name": "quarkus-spring-scheduled-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "29cca5b2-78a8-5ad2-9935-32e52e736e1e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97af3578-54eb-5a12-a6d2-d0f39229cc93", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment" + }, + "version": { + "uuid": "ff268798-f104-51a1-8278-75f64881d56f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4d78d43-66d4-4e33-a0e4-9d163885efaa", + "name": "quarkus-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "592e29f9-da5b-56c9-9d65-28ebaf6d825e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97eec557-775f-542f-ba39-f15c6d84442f", + "purl": "pkg:maven/io.quarkus/quarkus-vertx" + }, + "version": { + "uuid": "e7343811-020f-5b12-943e-8cb34cdaa63e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5b2e399-8783-4c82-bf88-c922daeff8d4", + "name": "quarkus-reactive-mssql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d83c7999-1f0b-5dfc-9013-68e0db3accc5", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "98909be2-ed23-5db6-b364-6eeeda380e57", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment" + }, + "version": { + "uuid": "7dcd7aae-6975-5ac1-80d5-c20e95d4b699", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cc633ec-b6ac-452d-b4c5-d3cb497c88ea", + "name": "quarkus-micrometer-registry-prometheus-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1532096-16d8-5f77-b992-6a8281551132", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b077a81-e987-595f-885a-8c0a2e5a2cb4", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment" + }, + "version": { + "uuid": "358086a9-a452-5cca-a9af-71d39039f097", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a15d46a-bb11-40b5-8320-24670429d36a", + "name": "quarkus-resteasy-reactive-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee333e07-55af-595b-b0ce-4ea31785a8e3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b3468b6-cba7-590f-91ea-e408afcf66a5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment" + }, + "version": { + "uuid": "1825399a-e96e-5c0d-8573-4789961cc988", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-912eb1f1-f103-4b17-bc87-0d597056e584", + "name": "quarkus-logging-json", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ffc7fa3-6fba-51c8-a81a-ef4f7c4fd2a6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b735f2f-6ac1-5323-94d0-db693fd230e6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json" + }, + "version": { + "uuid": "fd07d24e-1029-5de1-a3bf-6b270a5139a5", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e70cf4f4-c7a5-49d0-9efd-96173cd3d73c", + "name": "quarkus-container-image-util", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aaf4b651-c295-57d5-a024-8b83a4b165f5", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bca9925-dedb-5efd-9a91-2e84c276f60a", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util" + }, + "version": { + "uuid": "207a230a-12a6-5c63-822a-278e66616c3b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9aa8f03-f9c7-43a3-803a-bec9ed624ab5", + "name": "quarkus-container-image-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "86731ecb-63a2-571e-b9c5-f5cebdc88a2e", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bdb7289-f52b-51f4-86dc-d038b99795d0", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment" + }, + "version": { + "uuid": "c76b5491-ca1a-5835-b587-10a74f11e531", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b214ec95-bc6f-4aa4-bf20-555f320034d8", + "name": "quarkus-resteasy-reactive-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3617f8da-e4f2-502b-b5a3-88939f7f4a42", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c14c788-bf52-596e-9734-779af6967284", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment" + }, + "version": { + "uuid": "65d504ee-537c-5c0d-8be6-d8930138d3d4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d557514-5b60-4186-a560-c2d513993881", + "name": "quarkus-resteasy-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f2787103-d68b-50bc-a837-c99cdd1c2879", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c3864c6-f91f-51f3-9db6-f70304b7425e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment" + }, + "version": { + "uuid": "adc6fdb3-e783-562c-ba53-a01772beb6af", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21fd301e-8966-4ffa-a7af-e4f639430f55", + "name": "quarkus-kubernetes-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca59ae9-378c-54c2-8924-44c4178ed253", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c66fb58-da6c-5c32-ac44-20a02871050b", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config" + }, + "version": { + "uuid": "6d6010bf-e5bb-5d4a-b523-a4fd21600186", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22f7d732-1f1d-44f3-bb4b-99d1b3c08a2f", + "name": "quarkus-spring-scheduled", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dcbc748a-5278-52b6-a9ea-6d059857fe3a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c924777-a53a-5e47-a978-e4b7b7f0372e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled" + }, + "version": { + "uuid": "a6245182-ff1c-56fb-a548-0e6c98ab1f4f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f4f85f7-1eff-4487-869a-28717ad63a00", + "name": "quarkus-devtools-message-writer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c3089677-7ed5-5e80-bcb0-7c9bf3d206ff", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9df043cd-9411-5a0c-b890-0bb8f486f239", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer" + }, + "version": { + "uuid": "9ca065a0-36ee-5213-b715-cdbbf893562c", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-014069d6-89c8-4277-aac0-6963bd5005a7", + "name": "quarkus-arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac9b931f-aa73-559e-83bf-3ca2a91950c8", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e4c3064-2c18-528d-aa07-701eea978318", + "purl": "pkg:maven/io.quarkus/quarkus-arc" + }, + "version": { + "uuid": "3b13dd42-42a6-58bf-afc9-353894a765a7", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dba054e-c67f-4ecc-b9f9-28278f946f46", + "name": "quarkus-smallrye-jwt-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "72b8bc46-3c8d-5107-a96f-bb334d88e484", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e64c5b0-7983-571a-8b07-1343eb6c07a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment" + }, + "version": { + "uuid": "da1597a1-9955-5cea-84e6-9e77a75d77c1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6634e80c-0a68-4852-8ed8-6f1412906dc1", + "name": "quarkus-micrometer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8149cb27-43eb-530d-a5c3-9862d8751717", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ec07e2c-785f-51f0-a277-07119eb3c876", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment" + }, + "version": { + "uuid": "077f4245-969c-5509-9850-57b828d5a874", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3af81bab-d8fd-47aa-b86f-c08d77bfb53d", + "name": "quarkus-smallrye-reactive-messaging-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5e6f667e-1bd1-5c85-bad1-52f5435657ab", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9eeb7ed8-013c-55cf-a68c-22ff0aea137b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment" + }, + "version": { + "uuid": "68913a3c-f609-531b-81ef-7f640e828566", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7da82dc2-dc81-4112-a044-6ac0dc771cfd", + "name": "quarkus-avro", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4093e8d1-c6b1-56b6-a26c-914a596ac177", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a21b936d-f87a-5868-bf25-c2da931fc246", + "purl": "pkg:maven/io.quarkus/quarkus-avro" + }, + "version": { + "uuid": "817d4f59-f970-5273-8cdd-6bec155c197f", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc1a9190-6b70-4834-8e0e-48b74fd172a1", + "name": "quarkus-jdbc-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0875f742-36df-5828-96c9-af456be678e7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2aa172b-411e-5444-8b2e-d42cb4415f8b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql" + }, + "version": { + "uuid": "a6c0b74c-5619-537b-98a5-97f7772723fe", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e53806d0-e917-4ba5-8c09-c5325e4e4a29", + "name": "quarkus-scheduler-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7daf0177-7c44-5ce2-abdd-c10da99f4cab", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2cafc28-0a55-5463-9fa7-8d02dc70391f", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment" + }, + "version": { + "uuid": "556b676f-f02f-595e-a33e-ce3e19b828a6", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c3625f7-cede-42f6-941f-2cadd1dd02ed", + "name": "quarkus-smallrye-health-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1ac15027-2f56-56e9-854b-6c4f2a962b62", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44bef55-7920-56ab-8345-d3f36424051b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi" + }, + "version": { + "uuid": "ffe857ff-5085-5e3d-9620-296c47d47956", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d368d8b-0b86-4df5-a0e7-82382f49f40b", + "name": "quarkus-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b7ee19f-b6cd-5170-8b2f-c2d8054a2d52", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a462f106-9e7e-551f-ae30-9c385ea9c469", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common" + }, + "version": { + "uuid": "bc5e3e5a-9007-5fea-84f7-32d5c220be54", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a1956e07-7ad1-414e-bee0-f0332544dde1", + "name": "quarkus-jdbc-oracle-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "74773f81-2b44-57ef-8cb9-640f3773974d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a46c9370-742a-5834-aeca-78315f0cef6e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment" + }, + "version": { + "uuid": "e68f7c7c-ae7d-506e-9c19-8288b87110b1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63df3915-1b7c-4e1c-8711-81404b9c3882", + "name": "quarkus-bootstrap-maven-resolver", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87748030-57fa-5eb1-8949-271458c4eb89", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a4d204ab-0029-5780-8b93-4988d8b6f602", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver" + }, + "version": { + "uuid": "245b37ef-554e-59b2-ae47-f62ed4cc66ee", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-891df0b5-9db2-489c-8a78-8988e576f238", + "name": "quarkus-mutiny", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88ee5c2b-40b3-503d-8000-24a7f6490dba", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a50c1576-98e5-5270-bee9-03db1bc4e63d", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny" + }, + "version": { + "uuid": "558092c3-cec1-549d-80a7-1ce75c7c8a2b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ee77a41-e8a7-4b5c-b576-f9125b138d84", + "name": "resteasy-reactive-common-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c16d9da6-2b73-513c-94d0-f952e66b9167", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a517a429-c199-5768-a449-b12f40024453", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor" + }, + "version": { + "uuid": "6b4684eb-705f-54ef-b04a-f5087b69838c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0eb5efa-d271-4c76-a518-d8248b2c6bf6", + "name": "quarkus-spring-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "515b624b-e7a8-5890-afad-ad61efc2de64", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a56c5039-7863-50d3-a09c-2a13355cf17d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache" + }, + "version": { + "uuid": "d2ecb6ae-29f1-5a86-93fc-0f072dbbc07c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c769adc5-011d-47d5-bc2a-e58edd9ecb76", + "name": "quarkus-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5ae7faa-1491-5cc9-b011-e86818db6e5f", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5b81d9a-cdea-5e75-bc2c-943d256d3a9d", + "purl": "pkg:maven/io.quarkus/quarkus-qute" + }, + "version": { + "uuid": "289de4a4-d62d-57ff-8cf1-7eeec2b4b2d0", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-008baaa8-8056-48c3-b019-24a82b3a4bf1", + "name": "quarkus-smallrye-metrics", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd26dc77-054e-502c-bc44-3c6b80e74fad", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c9830d-7f73-5389-9dba-e9cb66ba91d2", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics" + }, + "version": { + "uuid": "2a37afdd-d720-5891-b85e-ca69d6d9c46f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98ddc554-a57b-4498-b1b2-b0b64e276ede", + "name": "quarkus-smallrye-opentracing", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a3ba153b-e142-52ff-8678-6a07343b1840", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5d3be76-744f-5808-ae51-cd7152c10edb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing" + }, + "version": { + "uuid": "0483a86b-4be2-5e41-9ab8-9481363bdc29", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f451c0cb-ec89-4a82-8f9a-7800470d831c", + "name": "quarkus-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a6fda76-aba0-5f9a-8eec-962e34658d62", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5f50241-7b05-58ec-a676-5c7f98134e67", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment" + }, + "version": { + "uuid": "0620bcbf-dcf9-5a3f-8a2e-ada6a9131612", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec4b24cb-1c51-4692-a5ab-b5d57ed62005", + "name": "quarkus-resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e2882ee-e8f2-5caa-bf21-d228086703e0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a63eacd6-584c-5dd6-ad64-daa1377f4af0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson" + }, + "version": { + "uuid": "fc9dbe74-fa58-5478-9216-30891383f491", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ef03e2c-bb4a-49bc-888a-18cc01d830e8", + "name": "resteasy-reactive-common-types", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da8218aa-1bed-5788-82a1-3d0cbe251c66", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7006e0d-50f6-5e50-a334-097abe32ac60", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types" + }, + "version": { + "uuid": "7d9453dd-b7f7-5648-8eed-6504c777dd0a", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad24d95c-698b-43c8-a36b-57e68ac1cba5", + "name": "quarkus-devservices-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "669552ab-82ce-5109-b276-ed2b71b37951", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7071bc7-2ab2-573b-998d-fbc29756eb93", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql" + }, + "version": { + "uuid": "907db670-f9ba-52ac-b8e0-106b7b21b2c3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29c17706-1d5a-40ae-8498-087c7932c404", + "name": "quarkus-smallrye-metrics-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6fe294e9-f209-5483-b98a-9c9308a9ab2c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a91b7192-9283-5f97-805b-321b3349c545", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment" + }, + "version": { + "uuid": "02a8a9ea-afec-50e7-8afd-8c38bdc90381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfa97a5d-0a3a-422c-b533-495986937ab0", + "name": "quarkus-websockets-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8718bc4b-91f4-58b8-8ce2-a2b62a1582b3", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9b32bec-1535-58aa-bd9e-5e5b6ae73372", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment" + }, + "version": { + "uuid": "a9331cac-8dd6-5970-8ddf-e6dd187663cd", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15dbdcaa-d711-4c14-a539-6e75bfe91a59", + "name": "resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa9f9f22-7ec2-539b-a3e6-db40a84ad862", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab04c64f-975d-5573-a615-7d2bbdae0bfd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson" + }, + "version": { + "uuid": "bca9dc53-6971-5836-a00e-ce89d99e5a8c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc31759e-a95b-4640-9bbc-c2fe5954eb79", + "name": "quarkus-jaeger-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb08d125-73d6-5057-8e9b-f0a6f83359c4", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab7c597d-4fb3-5346-a38b-93a986f86aaf", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment" + }, + "version": { + "uuid": "25632245-49ed-5c4b-a915-663d53c8be7a", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d0668cf-8d30-47aa-9d14-63806309258d", + "name": "quarkus-jsonb-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88714dff-3c3d-5355-9918-6535fdca4139", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "abd436b3-604f-5064-822c-14b38771497a", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi" + }, + "version": { + "uuid": "d2084924-2339-59ae-8d71-668f4b37176c", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92f47d5-6d74-4dfa-9a03-1017989ea3ca", + "name": "quarkus-resteasy-multipart", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a7d46a6a-8561-510e-9e2b-d588b6ab56b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aca1f02c-7f73-5c80-997f-391190a548a7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart" + }, + "version": { + "uuid": "ec5f69d6-0b02-5a8b-8d24-501783dc5514", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6cb4a43a-380f-40b3-b196-54b1f46395f8", + "name": "quarkus-narayana-jta", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5313707f-d662-5b75-a796-642bda3b77c2", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad2dee77-d472-5cf1-96ef-83a361d66fed", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta" + }, + "version": { + "uuid": "d50fb45f-283b-53fa-872c-f7ca5f53d4fc", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90f322fe-ae88-4695-be77-8f60e6b06d3d", + "name": "quarkus-mailer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0688ee06-5888-5216-957c-94739a0f0869", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae4bf923-0e17-54f3-a6a2-e429010c9743", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment" + }, + "version": { + "uuid": "765cdd7c-5b8f-5793-8864-3a10c765c677", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a58c69b-be61-48cf-8ba2-af220e958f23", + "name": "quarkus-kubernetes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b230e2bb-3462-5899-880a-280f096d0e73", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae5704d8-da92-5d2c-9fad-37b7b9d8e2ce", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes" + }, + "version": { + "uuid": "ab28e575-2a40-56da-b59a-8025b69b36fb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f9e643e-0c95-4c7a-a496-a755dcfcdfac", + "name": "quarkus-oidc-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "13bfa14d-7e22-5378-aa7f-98ec6dc4df8f", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af73962a-e96b-5b6d-9bb4-7055d5005aaf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment" + }, + "version": { + "uuid": "ed12e1be-db8b-5daa-a559-ca91dcafd1d0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28e51f46-74c7-49cd-8c3d-d1a5afecfbae", + "name": "quarkus-hibernate-search-orm-elasticsearch", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d4f24d3-9d33-58e1-bcb2-fe6e3561f16b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b003df58-6a0b-5761-ad37-aebccd7ae80a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch" + }, + "version": { + "uuid": "2d9612fb-9177-5271-9aad-1d9576c124e0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4249d006-888b-4ecf-aefd-bbc1aa25bb4e", + "name": "netty-handler-proxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "623955d6-e466-5312-9ac7-54acab01333e", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b056e5c5-162b-59b4-85c7-2a2f4055db3b", + "purl": "pkg:maven/io.netty/netty-handler-proxy" + }, + "version": { + "uuid": "b20cfab0-0860-5b79-8785-2f81bf383389", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78450b9e-300f-4e78-85a1-35441de0ad66", + "name": "quarkus-transaction-annotations", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8f6fa2ef-e221-5e0e-bd6f-2eb291f0a872", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b094d2f2-26f5-589f-a9aa-b2293997787e", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations" + }, + "version": { + "uuid": "0085ea99-2b38-5c5a-a407-75af872e7141", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e97119c-0fde-45b4-9b9a-425ca2acdf3f", + "name": "quarkus-swagger-ui-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "57c5a24c-606b-5a93-9c2a-75781efc6465", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1937ef8-56bd-51d4-83a2-7c5cc5c2c2a1", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment" + }, + "version": { + "uuid": "60f441f3-d7d8-5024-b00c-7c1b8efbb077", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f466ccaa-7abe-47f7-aaee-babef544025f", + "name": "quarkus-resteasy-multipart-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ef86130-0f3f-52b5-b90b-ba8ca10a46a6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1e53941-21b4-5688-9d60-de6797c2450b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment" + }, + "version": { + "uuid": "33235e9f-a1d9-54bb-9cf1-2e20231f70f7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67cc2dc5-fee0-48ef-b6c0-7fbf34c8211a", + "name": "quarkus-rest-client-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45578196-ca80-55ee-9774-a4c44e749451", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b34fc052-8b75-5228-b4ea-29e2ab12bf46", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson" + }, + "version": { + "uuid": "75e92e4d-e142-5fcd-90bf-dbc83b51ee7b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5aa8685-839d-4a12-b7cb-1f413418ebf0", + "name": "quarkus-agroal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f894eaba-d07d-5744-9c29-25100d5c450f", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b50622f4-f7b2-5458-9c2e-9e22f1448f76", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment" + }, + "version": { + "uuid": "67eec0b0-0d30-55c5-a312-a6b94d94ab32", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-248daae5-2712-4d93-afb5-04001ed14f36", + "name": "quarkus-datasource-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3ed57da3-c579-518d-9a2a-8584fb119536", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b512e741-660a-5a85-829b-87e3449751ff", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi" + }, + "version": { + "uuid": "4cf989c2-7a4d-5e25-8384-e3c4748acafe", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97d3be1c-7f9f-4676-b32f-fe8c98e68b87", + "name": "quarkus-grpc-codegen", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cf95cbe5-417c-59e0-aa98-00bd2e5a4675", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b580173b-e9d4-53f1-9970-e0498e968f46", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen" + }, + "version": { + "uuid": "2f598641-f28c-52ee-87d2-436a9a32e2b7", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c1338d6-3b15-4d64-ab3e-a10c4fab864e", + "name": "quarkus-security-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4125770e-844a-5eed-aca7-f4154a21fef8", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7f7f1e8-25ad-529c-a456-c475ed534902", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi" + }, + "version": { + "uuid": "78b19386-0ab9-583b-9ace-3f99176c753b", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b406a7eb-2a55-4a47-8a6a-30859cd87319", + "name": "quarkus-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7df6f9b-ab20-5f55-b526-c007b3325b2a", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b8a536ff-e7ba-5ccc-a0e2-b59d6686167a", + "purl": "pkg:maven/io.quarkus/quarkus-cache" + }, + "version": { + "uuid": "1ac726da-4b50-5760-a8b5-f622f6ce8fc4", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f78207a2-0a6a-4972-8c81-2b0827135754", + "name": "quarkus-resteasy-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "73bf5c22-bb19-58e4-bf6f-a3ced74c9597", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba6ea902-3057-5e32-b4c4-564c667d5864", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi" + }, + "version": { + "uuid": "02ddde8b-12f0-5ca0-991c-a3f844a2a1dc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-abd5ee81-d6ec-4a56-92df-f2086ded8879", + "name": "quarkus-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "59daad81-458a-532e-8e4b-bac83b96abc6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bab686d6-fd7b-596e-a316-20c86f16b245", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment" + }, + "version": { + "uuid": "80b9e62d-9008-5d69-a5bb-cd0b03c8134d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83a64c36-23c6-4450-a8e9-ca5bb7e6177b", + "name": "quarkus-spring-boot-properties-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ecb7f2f-6e43-5fc4-962a-ed48dd1935e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc7db2c8-98df-5847-9ff0-b66674644633", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment" + }, + "version": { + "uuid": "92e2bbb5-a0c8-5c9f-ae43-781fb70ac666", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-811bdc6a-22a1-4e19-a700-86361456bcf1", + "name": "quarkus-extension-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f6a5013c-4047-59b3-9fea-882f7cdb0450", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc887a8b-fa8a-5674-a92b-ae516c054e8d", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor" + }, + "version": { + "uuid": "564602ff-daa0-51d7-b0a4-49b1959571b1", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b8ba8cf-d579-4811-abed-fbdca1363287", + "name": "quarkus-opentelemetry-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9d4415cb-eb17-5b29-ad16-f202f3d06a14", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bd6e8f49-b1fc-52b5-bca1-63c2f5bc8881", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment" + }, + "version": { + "uuid": "42705cfa-6638-5dd6-a0a1-ec273e7b3bb7", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bfc6b7bf-551b-41db-ac76-3858e44c4950", + "name": "quarkus-rest-client-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88a8026c-0e3d-5889-9692-0dd368c00273", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "beb64354-4f34-57f5-adeb-55dc35b8252f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson" + }, + "version": { + "uuid": "b2e7d260-aa64-5011-8abe-d5b5f3c550b8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb0e264c-0781-438c-82d1-6a3f4adafe74", + "name": "quarkus-hibernate-validator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ffca768-1aac-5286-b6b9-0345aa49c08c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf7829a4-4d05-5542-b6cd-d3858f454b96", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator" + }, + "version": { + "uuid": "7d28776d-c068-547d-8aa3-8dea9c4e2e41", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127304a6-d01f-4f8a-8685-bb175bc628ae", + "name": "quarkus-rest-client-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb1a455a-f6ba-554d-af23-34fab2c30ed5", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf90e9c9-dbdb-5812-a939-846823cdde5c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment" + }, + "version": { + "uuid": "ccd1e9e5-e77c-5942-9195-e89f29048b26", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46b5ba29-c5e1-422c-bd89-a4cd7d32918f", + "name": "quarkus-scheduler-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f8a3d3a1-a04a-56e3-b5ec-7c0eeb92be1b", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c179b651-c10e-5827-9dcc-07c24d6963ca", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api" + }, + "version": { + "uuid": "aebae22b-7fad-5724-aadf-f7e93ca21312", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e15a6ad-2737-46e0-bd65-bcd52e336e09", + "name": "quarkus-jackson-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "117ffc0d-d066-502d-9ab0-db9a87e5bf16", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c1b86c4d-7b22-56ee-afb4-bd47394447ed", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi" + }, + "version": { + "uuid": "e3c590c3-a642-5a25-92f5-c74633e19f7f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b30ef8d-3d57-4f2a-84d5-3792712a5c92", + "name": "quarkus-reactive-pg-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae0a9100-69a5-5795-953a-06a41f1f2cbc", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c237b650-b89b-5888-aeb1-9fedef81f41b", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client" + }, + "version": { + "uuid": "b89903ba-462e-5340-9102-6f5ec3b28bf6", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ed8f6a1-0abe-45b3-95eb-4d10f4c549ad", + "name": "resteasy-reactive-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "51fe20ab-f04d-5a95-b6e4-b677b7fa4ee8", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c24bdc76-cbee-5602-8925-cb320cb67033", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client" + }, + "version": { + "uuid": "bb7b4eb4-8570-5880-a9fd-5bfbcb470654", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5efbc662-6a25-48e1-a1f5-82695b1637e7", + "name": "quarkus-infinispan-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e7e676-1070-5342-9efb-b0f15e12e1c3", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c304a290-381b-5ec7-9c62-dae6bdfc4712", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment" + }, + "version": { + "uuid": "02009d12-be92-56e0-bb8a-c7103317b927", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a088b32e-bcd3-4454-92ff-7304dde872b9", + "name": "quarkus-rest-client-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7da94023-a664-5603-b887-6146d1d8a79a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c3792597-babb-5cdf-be19-edf43e05de75", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment" + }, + "version": { + "uuid": "98d5f791-db47-5589-8faf-17eb6bc9e0f3", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c4d89d8-2cd3-44dc-a7db-667df14518a5", + "name": "quarkus-security-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c48073a9-9245-5fd9-a574-b009fafc5115", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c4600f25-a848-5551-98b3-72a94b7d8856", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi" + }, + "version": { + "uuid": "5a692d37-61f1-52a8-9520-2d543e0c5c31", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d08c424a-7e73-4b95-8d82-1147e41cec83", + "name": "quarkus-class-change-agent", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "201e7f0e-c1a1-56cd-84fa-640545076a13", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c57fc5d6-3a8c-528a-baa1-3891ef904b8f", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent" + }, + "version": { + "uuid": "fe5596ef-7151-5682-9fdd-4c0dd78b707d", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c542ebd4-13cc-4af1-ad60-63ca9441b2d4", + "name": "quarkus-spring-web", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "91d52121-2e68-50f0-b83c-6017c3eb60d1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c618deec-c4c6-527f-aca7-3de7bfec0062", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web" + }, + "version": { + "uuid": "b3fc4345-ddf4-576d-9f53-1f4dde44b98e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5791f9bf-f838-4ba2-a1ad-39aa09c0152b", + "name": "quarkus-hal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "21b1b624-f6ca-5b26-875a-8ed46a9c0ec0", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6298040-511d-513b-b3c9-2e11972101f9", + "purl": "pkg:maven/io.quarkus/quarkus-hal" + }, + "version": { + "uuid": "ed41b090-b79d-52e0-9570-30368d3070fb", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38c8759d-36e5-4db3-b309-afd4ed74cb72", + "name": "quarkus-mutiny-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4b8c9126-6fd4-54c5-8e9b-0f56fb13432b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c62b7ee3-361d-54ab-9d31-52cfc86baa59", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment" + }, + "version": { + "uuid": "c4512ecd-bd30-5d5e-963c-d75c38c4e75e", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-608cf97a-3031-476d-b2bf-2645ab517851", + "name": "quarkus-grpc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0fc58592-7b41-53b3-810b-c02a9e213a8c", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c7c15f09-74a1-5c81-aa71-0af88c0e48fb", + "purl": "pkg:maven/io.quarkus/quarkus-grpc" + }, + "version": { + "uuid": "0584ccb5-f648-5cfc-82f1-146e452a4bee", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95be5c33-d6f8-4ed4-92f2-9baedb8a154a", + "name": "quarkus-oidc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a95f54c6-930e-560c-a51c-4d02b4739661", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8042e2e-4275-51ce-921a-1dcae7fc6761", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment" + }, + "version": { + "uuid": "3e0b9512-38c9-5de7-a662-39d3f36a3723", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e95a024-ee66-43b9-835b-2d11d5b493c0", + "name": "quarkus-resteasy-reactive-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dc8315da-46e5-536c-a642-07e59fad8155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c81b2d5d-9c8f-5286-851b-fec430be2d1d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment" + }, + "version": { + "uuid": "990e83d9-051c-5dad-916a-fead476aa663", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-093f8d34-1829-444e-b121-fd46d2e5a21d", + "name": "quarkus-reactive-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "454fde09-ab4c-527f-a07a-3c391e5c8050", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cab0d335-9258-5745-be2b-ae02849cccca", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource" + }, + "version": { + "uuid": "b6744a9f-1826-5338-86a3-24a219de8a6c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8f3d595-7c07-4985-aa1b-7f6ae8ecf957", + "name": "quarkus-scheduler-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "feeff538-4da3-5c93-a9e9-4837e2ab9089", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cc20cca2-8727-5b76-8462-adb1a4faa9bf", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin" + }, + "version": { + "uuid": "2483cc67-fa54-5dfc-8893-11ec9d90cd42", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-602547e7-1ca6-4ccd-aa95-19219c7593a6", + "name": "netty-codec-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "fac6032a-a3fd-56f3-922e-65a6bda2358d", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ccec22eb-096f-5a75-b202-76243cef0248", + "purl": "pkg:maven/io.netty/netty-codec-dns" + }, + "version": { + "uuid": "c2c003af-376a-554f-b25b-40daaed23825", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10b8f85c-d5bf-4887-af22-1a42526378ef", + "name": "quarkus-resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "997392c0-a505-53c2-b7a5-74bcc72276f6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cdc79fdd-3e5e-5215-809b-85fc11bf9608", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common" + }, + "version": { + "uuid": "9a4d1bdf-74ad-542e-a639-3302f7ba899d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4fb3aa8-cc92-473b-8c65-dbd6ee2936a8", + "name": "quarkus-spring-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "807d6824-d29f-5abe-90bc-f8a69a3d96c2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ceea7fb8-e1de-57d7-bede-60be4dca1173", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment" + }, + "version": { + "uuid": "e4de23fd-6bce-59ed-9731-d52c7508d17a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83341b2f-4f40-4aae-aab5-bf4bc15a2465", + "name": "quarkus-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "48382e1d-9bb2-5d55-bf16-5b2a0a8bd1b6", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf328f3f-3eb4-5533-83cf-b5a3e4bedc43", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment" + }, + "version": { + "uuid": "529aecde-30c7-56d4-acc7-3c58957e57aa", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f8138770-4cf7-48e9-b95a-5c6864329306", + "name": "arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba957310-890b-538d-b97b-c05f2322bc0d", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d21608ed-1ee4-58c1-99a8-413afa5f8ccf", + "purl": "pkg:maven/io.quarkus.arc/arc" + }, + "version": { + "uuid": "c819ccd9-8801-5468-a2c6-9a61b33066e3", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e955d9b8-7ace-4a5f-8d82-119b7dd30d1f", + "name": "quarkus-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e67580-8cb6-52f2-ad55-392b99d3f2ae", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2df7e32-548d-52f0-b31d-61463b78ce90", + "purl": "pkg:maven/io.quarkus/quarkus-core" + }, + "version": { + "uuid": "7389656f-66f0-51d7-b6a7-455db9a42336", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-430d898a-9b8b-456c-9151-e2b4e0783056", + "name": "netty-handler", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "48f562d1-fdfd-59b7-bd23-861503f31e5d", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3f4c0dd-ef9c-54fe-b6dd-b37380718a57", + "purl": "pkg:maven/io.netty/netty-handler" + }, + "version": { + "uuid": "a6382423-1382-51d7-bcd6-cfb2eab7d764", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dca658aa-d4db-434b-b895-d5e09ddba8fb", + "name": "resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4bcb077e-f913-54ce-88c1-67f1973627d9", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d4c55081-7168-52ed-a06d-d0ab9e759c41", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb" + }, + "version": { + "uuid": "21f067d5-a339-56ae-b081-0c3e6910a773", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e89a745-9815-415c-a8fc-b5497276f778", + "name": "quarkus-resteasy-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32359031-6957-5c22-9f49-489e923fe155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d5c854aa-d090-5a8b-bfbf-f11937c47d10", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment" + }, + "version": { + "uuid": "82696dd7-340b-5ca9-b6a7-4ab6c465f5ba", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada002be-08e4-435f-bf50-8e6d55f9b77c", + "name": "quarkus-smallrye-opentracing-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "856c4344-2286-5319-b39b-69f20904dbf1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d60f7e69-97cf-598f-8d1b-fcb93ab64dbd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment" + }, + "version": { + "uuid": "e764743d-ab22-517b-b774-9034f3c1c8a7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9796fe6-4b5a-4b7e-8653-cb95a1ff838b", + "name": "quarkus-kubernetes-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d5813eb-0754-5eb5-a9fd-fcd36abae683", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7a5f7a6-29fa-5062-92bd-ab610b82cfcf", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi" + }, + "version": { + "uuid": "d01383c9-fc4a-58ee-8989-443e28f3bf14", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85f7155f-dab6-4acf-bd55-edede3d537bc", + "name": "quarkus-funqy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "25538422-f163-5615-9733-f625dfa931b9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea70cc-1d71-5a39-b561-9849b7d6028b", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common" + }, + "version": { + "uuid": "c82d962b-6c27-5358-80ad-85acb0c9485e", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89daeb0b-4b00-4a9a-8023-4493375007b6", + "name": "quarkus-kafka-streams", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fba76d19-f75f-5ec3-8872-8fda2fc9c0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d86b5909-6339-5e49-866b-959bc438d0d1", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams" + }, + "version": { + "uuid": "88d4c728-e472-5778-a2a9-41789dd19093", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ab92847-6833-4cbc-889e-9e3b642f34a7", + "name": "resteasy-reactive-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c2f71c2-f2dc-5fb0-a106-f1bc68152e35", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d87835e6-dacd-5973-a64c-cafa75b464bc", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx" + }, + "version": { + "uuid": "0d0a31c9-bb9e-5d9a-889d-c4f0df9721d3", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-650b38c4-a6dd-4548-b1e3-e51ee70fe873", + "name": "quarkus-infinispan-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0279c963-bcb0-50c7-a934-4760a3c662f8", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d880a9de-1fd0-515b-889e-cb5b9c41f88c", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client" + }, + "version": { + "uuid": "62046603-515f-5349-bcc2-3a7f3d663547", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1b1b481-bffc-4251-b88c-8f7bb1a7ebbb", + "name": "quarkus-rest-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14785047-21c1-54c4-8f96-94ea0a9b2c1c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8dba6cf-5bc5-5e20-b593-59981049c708", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment" + }, + "version": { + "uuid": "14fc877f-ebd6-5108-a32a-6e04dc3b475f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-690d153a-efba-4ef6-b4aa-2d5cae094615", + "name": "qute-generator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66171e88-dfcf-5b5a-a0fe-3a6e747d49a6", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d9271688-db97-54a8-8722-f3bccd40680e", + "purl": "pkg:maven/io.quarkus.qute/qute-generator" + }, + "version": { + "uuid": "383c0104-7806-5449-ac08-f2f27401671a", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be426b66-efcf-47c2-9754-d2ebfd69f56e", + "name": "quarkus-grpc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b14c7b20-9b29-5c4a-9b84-bb0f66bfdaae", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "daf1f007-48ad-5a93-a9d0-dc0c4047d945", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common" + }, + "version": { + "uuid": "bbb398d7-242b-52fb-982b-75dc1d8e8517", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-966819c8-4b85-4652-bc70-741853a3bea1", + "name": "quarkus-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a303325-e379-565d-b5cb-14b8ac2fda0b", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db42d908-5b79-5b91-8ba6-fa7fdd7ac877", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment" + }, + "version": { + "uuid": "41885b45-cb19-55fa-a9ab-2dda632044f1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9605d0d9-87de-4b9b-b587-54e284668fed", + "name": "quarkus-smallrye-fault-tolerance", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c8781235-c16b-5e9f-b94f-95aeec466dc8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db56d4dc-1396-5cd2-8c0e-66be2437859d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance" + }, + "version": { + "uuid": "1412d8f8-dfb9-50ff-8efd-6f0ac64ecad7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-013f6933-003d-4ef5-a401-24c420f56ff1", + "name": "quarkus-elytron-security-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f616fe4a-a0bd-590f-982b-1bb95971314b", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc70fd20-11e1-53a5-b48d-8bae6254ee82", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common" + }, + "version": { + "uuid": "74c5e920-6550-51f1-b0b1-99939e267379", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59a180d8-feee-48d2-9aaf-a6513e310bd2", + "name": "quarkus-vertx-latebound-mdc-provider", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ef5ab1b4-46e1-5339-81ea-5e55d7d0321b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc91c9d5-b0f4-5297-851c-5a472cd087f8", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider" + }, + "version": { + "uuid": "e7c3c379-25a6-5094-ac3b-7b874a4ac817", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2062c257-0917-4fd1-bd7c-e5a210910f9e", + "name": "quarkus-kubernetes-client-internal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "169e4ab2-eff5-5d1d-a88b-52bc508ec8a7", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ddf5ef6a-eab6-5e2a-8c6b-6f45e0a6a8fd", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal" + }, + "version": { + "uuid": "7f390824-05d2-54b5-ba89-4f8bd977f018", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e4a901e-0b68-419e-8212-a227cd8e71ff", + "name": "quarkus-jsonp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b03f382a-9cb6-549a-8745-dcd1187bfc67", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "df4d2555-8aeb-5ab2-93a5-4a36ddbb10e1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp" + }, + "version": { + "uuid": "ee805429-45cb-5eac-92f9-8e11f4a66528", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80bc7637-1960-4c68-90ca-4dc28fc8415e", + "name": "quarkus-config-yaml", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d5c1f5f4-03a4-5d77-8dab-fc1b0e4bec04", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0cfa164-e24f-5b71-a915-b4858839cdf9", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml" + }, + "version": { + "uuid": "d9709101-564f-5048-b0f6-37eda91a58cc", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bbd4631-877a-4cd1-9e7c-a6b3aa1f084a", + "name": "quarkus-smallrye-graphql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "79739ec7-e63b-5a7d-9525-e351fdf1169c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e112d705-5c6c-5861-82b9-5ff3c03e9f35", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql" + }, + "version": { + "uuid": "7f6e2d54-2fe3-5622-a494-53d0a6085615", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f44cd4be-ff38-4113-8870-427088038534", + "name": "resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9034b075-cf42-5792-834e-c29cd9d74da6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2b0226e-c82f-516a-8704-64d8c0bc3f53", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common" + }, + "version": { + "uuid": "08c021d3-e5c2-5f14-838a-c52f59526abd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a28718a-6654-4edb-b6e1-ff9de003532f", + "name": "quarkus-resteasy-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b72385f-2a52-5862-ae6f-d44b0b864115", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2cbbd8b-1589-5bac-8c83-0f1c8e9a4945", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment" + }, + "version": { + "uuid": "0f000bd1-dc2f-55f2-9603-ad98e863f030", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62974fba-c40c-43e3-ae89-6c661116f1e0", + "name": "quarkus-funqy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "586516a1-bae6-59f3-883c-d5161830f3a9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b726f7-1ffc-544c-b0f5-cc2814ebc939", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment" + }, + "version": { + "uuid": "3bdc2633-4b46-5918-a015-a873309d8238", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b2e4ff2-32ef-4e07-b427-bb0d226b8679", + "name": "quarkus-arc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c85f974c-55ff-5023-ad95-e323ef574b20", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3f03d71-d00e-52f7-a235-38ba3c986354", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment" + }, + "version": { + "uuid": "58ff6c08-889c-52e0-94b6-0e9c83590b4e", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27573c70-8e12-47bb-b75d-b8ed41d7e89f", + "name": "quarkus-grpc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3848a13f-d5b0-5eae-81e0-e2a7a088bce5", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e45ada50-e9b6-54dc-82c8-e8b9225aa855", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment" + }, + "version": { + "uuid": "bf3f57ee-649c-5c63-9910-08a9ac7d15dd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cc097e7-0dfe-422d-a8c7-ced13be42e49", + "name": "quarkus-resteasy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1a7817fa-dbdc-52b5-ae15-9082a79a2415", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e60775c8-fe8f-5978-8449-2f016a9b0c4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment" + }, + "version": { + "uuid": "cddcd2eb-6050-50fc-a751-2594beb8dfa4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b87fed48-0e65-4836-8abc-4b61e726ff18", + "name": "quarkus-resteasy-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee5d61e3-0323-53c2-ac84-1ef590b22c04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e669abd1-f82b-5919-8ac1-aece2f195ea3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb" + }, + "version": { + "uuid": "665eadea-578a-54ff-9fa0-c0030854bb1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfec06df-816e-48d2-a5a4-227d3f2319bd", + "name": "quarkus-mailer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "95d0c540-d850-51d9-990c-7cce57293931", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e78e6247-5399-599c-9ba9-1e640160036f", + "purl": "pkg:maven/io.quarkus/quarkus-mailer" + }, + "version": { + "uuid": "be287883-1030-5b26-8df5-ee3d2cea0f1a", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d475896-ed03-40a8-9566-10ce151f6a58", + "name": "quarkus-jacoco-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6b7ad12-44ba-5448-abce-a4611f9c72f8", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7ac0bdb-68a4-5eba-97f6-0e73eaaaf17c", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment" + }, + "version": { + "uuid": "b50dbcc0-2d0d-54b6-8449-06ce9eef1447", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbb77795-a272-4d8b-b96c-962a725dff02", + "name": "quarkus-grpc-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e58951cd-7e8e-5cd9-b060-a5b55d076ce2", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e80c7cbf-a286-52b1-ac4d-514b834ee826", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api" + }, + "version": { + "uuid": "b1487a52-d207-5661-ba97-e054fd1f5e3e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aab96740-45e5-43f2-8390-96913f4221ff", + "name": "quarkus-panache-hibernate-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4e4d3a7-0ff0-518e-9b10-4deb8e88f0ce", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e811932b-e98f-5c7b-a767-0d738dd995a4", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment" + }, + "version": { + "uuid": "f913b684-02c6-5b50-9b43-fed9fa87c765", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86d9d71d-1c84-4148-a1ce-ea15349aba4d", + "name": "quarkus-vertx-http", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "528a575d-5ed9-5aaa-9882-14701d64b51e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e883632e-4401-5912-a5c7-de4c7af2ae01", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http" + }, + "version": { + "uuid": "c040304d-22b4-5d85-9b32-55ae9bfffa52", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53a65c3c-f086-458e-832b-69c04378d7c8", + "name": "quarkus-devservices-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c092f342-19b5-5cea-ba43-14cb48a07962", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8adee06-4843-5d22-bf57-92f0cba83251", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb" + }, + "version": { + "uuid": "74a34ae2-79a7-5516-9180-79bd64df9b4e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b191a999-9c96-43ca-b4dd-fb4b95f4566b", + "name": "quarkus-websockets-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e67eca41-b7a7-5a1d-a9e8-12c9b49c8861", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eafd7de3-5568-59e0-bcf4-770c03a8cabe", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client" + }, + "version": { + "uuid": "f4b66788-0c3f-5fa1-8246-c76346a9d1c7", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6ecbbd9-31bf-46fd-afda-8082120f5260", + "name": "quarkus-bom", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "269366bb-0d1a-5058-a752-d2cc434431c6", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=pom", + "base": { + "uuid": "eb87eb3b-0dbf-5f1b-9198-94f453fd74f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom" + }, + "version": { + "uuid": "c0201f09-3d0a-5739-9cf3-8ad19dd177f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "pom" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1eb4772a-bf1d-4f54-9078-adb6f5de182a", + "name": "quarkus-jaxrs-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8e4868f4-f769-5997-a539-9a39cfd17982", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebcd4297-30fe-57fb-a57e-802840b432bc", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive" + }, + "version": { + "uuid": "53c02973-c2de-5a01-9973-2410e071c50d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-77e38c05-e480-494e-b2cd-d47343c7a753", + "name": "quarkus-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "62015e78-a111-5b6e-8ed0-6b21e2c819b9", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec1b3715-dc3b-5d58-b839-f5c1ea208fc7", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment" + }, + "version": { + "uuid": "395d0c26-cfa7-58a7-bd0c-5a31f12a9f5e", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8a9a75-ccf4-4bd0-9ec0-c2b947602e42", + "name": "quarkus-jdbc-mssql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d6241b2e-c46d-561c-b8d8-244f7df7e60e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed09daa8-fe60-5150-9bc3-80a922275e74", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment" + }, + "version": { + "uuid": "a9e43bab-f27b-5a8a-b905-acdf1e011ec9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fc0c2c9-cb88-4e61-9421-785575d71b94", + "name": "quarkus-elasticsearch-rest-client-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "68d3db42-c217-5cfa-b90f-de03550b974d", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed33883e-cc22-53fd-80a0-36888b8f605e", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment" + }, + "version": { + "uuid": "6b290289-1fd6-5b72-918a-74ddf3a67400", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b1fb757-698b-451a-988e-4981f06da7d0", + "name": "quarkus-hibernate-orm-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "96067568-b359-56b1-85df-4cf4d5ddc4f1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "edd63df2-6b50-51cd-9709-0a231c19f89a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment" + }, + "version": { + "uuid": "590f04c1-a30d-594c-ab0f-6f0a2367da28", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43bb5522-f8bf-424c-a355-159f43444802", + "name": "quarkus-hibernate-orm-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "384fb55f-3690-59c3-9712-dcbe3d478837", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ee8503c7-2ea8-5f6c-87a4-573ee712d1c0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment" + }, + "version": { + "uuid": "0d5d0124-c32d-58b8-89be-cead6a776f64", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad6306f7-6154-4775-8ea8-f763bfe0f3d7", + "name": "quarkus-reactive-routes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fbb05629-88e5-5674-b504-76eb76a64cd2", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eebdff8b-0aab-58ab-ba5f-6b4c7aebda98", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes" + }, + "version": { + "uuid": "b8086ec8-1779-53d4-9039-adc82ff66861", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21db41a7-5d44-46b7-87fc-95f3417a784a", + "name": "netty-codec-http2", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "b5d0e298-efc7-55b5-a7dd-b78996689fb7", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef580dbe-9fdf-522f-93a7-aef4219fb71a", + "purl": "pkg:maven/io.netty/netty-codec-http2" + }, + "version": { + "uuid": "9accb509-993f-5f93-a36c-cf507582f098", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662fff21-daee-434b-8f55-a64e21b2e441", + "name": "quarkus-oidc-client-reactive-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45547554-2c80-528e-ac46-ca83133ec585", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef86f974-20cd-526c-b7f8-14fb80a1f084", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment" + }, + "version": { + "uuid": "72bcd38d-cf79-57a9-9f62-85c1f672ab05", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69393a69-98da-4426-b814-20f6ca44fea4", + "name": "quarkus-logging-json-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16af5276-7f3b-567d-88e1-189ddbc1b1ab", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0347c68-31d3-551b-b452-988c218428b2", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment" + }, + "version": { + "uuid": "26f32942-d724-5a0d-b072-3b44af40571b", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2a671aa-786d-4d70-a832-3e833dfeaad6", + "name": "quarkus-apache-httpclient", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f97f2fd1-b9fe-5285-8775-3b6f0acbb386", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c07707-2d3c-56be-a8a9-2c806e49d209", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient" + }, + "version": { + "uuid": "217278b8-5cd9-548e-a04b-2296557b3fd0", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c74fb5d-4161-429a-aafe-9d768ddd7163", + "name": "quarkus-websockets-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36858a25-2eba-56a5-8877-8bd9f17c5dbb", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0d9ca44-ef29-5feb-a477-37859493bc9b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment" + }, + "version": { + "uuid": "621e668f-41fe-53a7-96f0-f986103dae3b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91d643af-450c-4c6a-80a9-d55a38eb7f71", + "name": "quarkus-credentials-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fec58798-c2d9-5308-86d8-994336dad58e", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0e1122e-d37e-5641-9427-59491383748c", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment" + }, + "version": { + "uuid": "59aa699c-bb4a-538e-adf4-441855b38fea", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0973486-3136-4c68-9275-92f6e6a39268", + "name": "quarkus-resteasy-reactive-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14d78abf-0845-5e04-bcda-a523fa5b1455", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0f0c6f1-d24f-5705-9e9a-fcf627a1d4c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb" + }, + "version": { + "uuid": "da82c5d0-b620-59eb-88c8-ab3cf62dc29f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56b7e34e-abe8-4180-8dbc-a0aeae6af3fb", + "name": "quarkus-rest-client-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1f120145-691e-5886-946b-cde974c59f96", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0fe896a-e8f2-5e61-b765-adf9f0526b91", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config" + }, + "version": { + "uuid": "bce8fbbd-4207-50e1-a76f-59b67ca59fc9", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eef8f7cd-876b-48bf-bb62-1d1bf799282f", + "name": "quarkus-reactive-mysql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f734ec00-f2b0-529a-91e2-94d3dd5875c1", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f121d3e1-6188-5288-8ac2-83ed471a08ce", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment" + }, + "version": { + "uuid": "79a25ffc-602c-5034-b55c-a32a8922b983", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95897968-1b5a-4cb0-9f28-1388a3119668", + "name": "quarkus-devtools-registry-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a93abe61-4511-5388-bc92-fcaa9be4bb38", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f1252251-456e-5f2f-a68d-0a0c513198bb", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client" + }, + "version": { + "uuid": "b926dee3-9b8e-51c4-9f86-d13d261e5c4f", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-591524a2-6096-4a68-8de6-fb3cf5d5affd", + "name": "quarkus-micrometer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e939d082-66a9-5fe0-b190-c098bfbd5612", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f14cc204-8f1b-5060-902e-a2e00aad23f2", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer" + }, + "version": { + "uuid": "cba221ec-b1cb-5dc9-b194-262ff36443ff", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-102b6d6b-905e-4229-bc15-3f118d26aec7", + "name": "quarkus-quartz", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "11648f8e-675f-51eb-aae3-3e40ad9b1178", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f29a31fa-e2dd-520b-b980-420fbee5326b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz" + }, + "version": { + "uuid": "60645d69-3a02-5e14-b927-319b8dd60ae6", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8a2feac-a9ac-4664-8e83-f2b1e3e2c8b7", + "name": "quarkus-resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "225cedf5-8a3d-571a-964e-addf20718734", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4ea9a18-592b-5dbd-9b7d-234c8e523512", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive" + }, + "version": { + "uuid": "901e6e40-6bc9-5bee-96cb-cd4ca571c98e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59710b04-2df6-469c-8b45-8cf0ff826175", + "name": "quarkus-vertx-http-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32c4828e-1191-585b-a481-1598d8da7815", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f556a5a6-1969-5992-ae52-1430aad891f9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi" + }, + "version": { + "uuid": "8af646d7-5a51-59fd-9328-791543cd1c5c", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20d3d91a-c402-48f6-88f8-1f8648b1e02f", + "name": "resteasy-reactive-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7b4b25b-c224-5795-9d79-ba5bf1f0c7c6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5a9b0f6-b7bf-5bfa-83cc-9de4c403dd64", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor" + }, + "version": { + "uuid": "9221c6e9-fe08-59d9-9301-9236ea906aaf", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b898f7d-3cb2-4ec4-af73-48d7e6f626f7", + "name": "quarkus-resteasy-reactive-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d568bc94-a6a6-5510-9e60-aef0df7e4e28", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f60a5134-41da-518d-9fef-337a58d15926", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment" + }, + "version": { + "uuid": "fee91d1e-e00f-5697-ad27-caa0844bf7e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ecb52933-aeae-473a-82f9-a1b9fab9b3fe", + "name": "quarkus-scheduler", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5f62b6b-706c-5db7-96cc-2f5666a05487", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f62c3c31-8cd0-5de0-ab91-a3afdb05d786", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler" + }, + "version": { + "uuid": "fec0f312-fb75-55ed-9a9f-3cd2372d7683", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1725bb8-81f0-4344-9d93-0f4ed4734455", + "name": "quarkus-mongodb-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd124370-245d-503c-b4a4-a7e755ae8cdd", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f702a7a5-4ce5-5073-a22a-407778c5931d", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment" + }, + "version": { + "uuid": "343bb041-791f-5dd6-9b9d-3374b78da85f", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46a56d3e-d55c-44c0-a6a1-e187f966b92e", + "name": "quarkus-caffeine", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b7dabb-49f5-5fe5-b33c-cfd3aaa60a1f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f79a6a97-7816-5abf-a159-c492616d357c", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine" + }, + "version": { + "uuid": "40e8fdfc-9e4f-5fd1-a546-8acab5fafa1d", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc7559fa-fcc9-4b10-a3fc-448510790327", + "name": "quarkus-hibernate-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ea927d5-5f2d-5538-ac45-a54f6d4e4513", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f81cfaf3-0ceb-54f0-9171-120e509fd7b7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive" + }, + "version": { + "uuid": "367d45c3-e5b7-5b50-9c7f-62ddbe600fbd", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5331ffbc-79e7-49a2-8c4a-221ab76a35ab", + "name": "quarkus-smallrye-jwt-build-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "992ce94e-a7f5-5272-b837-345ad0f503b9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f825cbd1-9668-55d4-94d7-3ddc9cbdf4a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment" + }, + "version": { + "uuid": "d686325c-4ae5-5f03-8bc6-3de81402452b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-789a4d1e-fce0-4bb3-aa33-d92514d6e206", + "name": "quarkus-oidc-client-reactive-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d79179f0-6fec-5b7c-b158-640dea77fe96", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f9a5116c-f4d3-5faa-94bf-0f14fa09b739", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter" + }, + "version": { + "uuid": "538bec89-69d3-5cfc-a9d8-237e5a51e407", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234c3199-c4ca-4821-a483-54ecff90c70a", + "name": "quarkus-oidc-client-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b9fb1f9-f2f9-5c08-8eb7-a614a362e66d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fa4011fb-d6d3-5191-a4bf-49a93e063d9d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter" + }, + "version": { + "uuid": "1bd61d7f-a4f6-5ba4-ad12-1aba94c2bff9", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bd4233e-d61a-4ba0-a3f3-1d7e3b8a708e", + "name": "quarkus-rest-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b15ba520-a315-5e71-8330-e835f569504d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb6347e3-04c6-5fdd-8f2b-929cae211192", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment" + }, + "version": { + "uuid": "bf4135b5-79bb-5f57-8d45-53f755883379", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38841359-b95b-4d67-8041-1d30d1532308", + "name": "quarkus-jsonp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "949cddbd-bd4f-5baf-b012-df5bc2f835e6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc2ca471-59a3-54b8-8e44-5e87d8aae35e", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment" + }, + "version": { + "uuid": "3e7256b7-3354-5957-986c-7bc5cdc61b0f", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0feec1-e291-47fc-a341-b5589b7a7b18", + "name": "quarkus-jdbc-mariadb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "427ac6de-e23f-513f-bf84-da830f776322", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc7dde74-e9ce-5055-a26b-ef114fee1bfa", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment" + }, + "version": { + "uuid": "1feaf60b-57fc-5b39-b7c8-e1e5ad5b6c39", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f651c33-f00f-48fa-9a9c-6165889783ce", + "name": "quarkus-rest-client-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e8dfe966-ecee-53f0-a815-6f868d2b2947", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd2eb40f-6220-501d-a020-a6bf30b08c1b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment" + }, + "version": { + "uuid": "c46a3ee2-e815-5260-abce-8a88dfcdd481", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fd84e1d-6ec2-4bf7-9052-97482f7e6e6d", + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "288c8dfb-be21-54b4-801a-13f03e3a7de6", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fed8bd05-98d6-5ad6-b63e-95b67c2d5501", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment" + }, + "version": { + "uuid": "2de7c15a-ad26-5e7c-92e6-aab028ee5a3f", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1584", + "title": "Quarkus-oidc: id and access tokens leak via the authorization code flow", + "description": "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", + "reserved": "2023-03-22T20:15:15.323Z", + "published": "2023-10-04T10:47:37.831Z", + "modified": "2024-08-02T05:57:23.278Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-200"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-c9146da0-9a91-4258-bb90-3e666b34e65a", + "name": "quarkus-oidc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "acbfe2a7-35d6-5f3d-9967-c4d64d11f399", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f3759a0-76d0-5dd9-ab4b-6e42209b1afe", + "purl": "pkg:maven/io.quarkus/quarkus-oidc" + }, + "version": { + "uuid": "e9128e2d-89f4-5df7-8ec2-0c4e8ce3a1d3", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-1584", + "title": "Quarkus-oidc: id and access tokens leak via the authorization code flow", + "description": "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", + "reserved": "2023-03-22T20:15:15.323Z", + "published": "2023-10-04T10:47:37.831Z", + "modified": "2024-08-02T05:57:23.278Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-200"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-1584", + "title": "Quarkus-oidc: id and access tokens leak via the authorization code flow", + "description": "A flaw was found in Quarkus. Quarkus OIDC can leak both ID and access tokens in the authorization code flow when an insecure HTTP protocol is used, which can allow attackers to access sensitive user data directly from the ID token or by using the access token to access user data from OIDC provider services. Please note that passwords are not stored in access tokens.", + "reserved": "2023-03-22T20:15:15.323Z", + "published": "2023-10-04T10:47:37.831Z", + "modified": "2024-08-02T05:57:23.278Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-200"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:2a08431e-149f-4eb4-983c-aa7d7ca7d588", + "identifier": "https://www.redhat.com/#CVE-2023-2798", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-25T00:00:00Z", + "modified": "2023-08-10T12:02:50Z", + "withdrawn": null, + "title": "Stack overflow crash causes Denial of Service (DoS)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2798", + "title": "Denial of service in HtmlUnit", + "description": "Those using HtmlUnit to browse untrusted webpages may be vulnerable to Denial of service attacks (DoS). If HtmlUnit is running on user supplied web pages, an attacker may supply content that causes HtmlUnit to crash by a stack overflow. This effect may support a denial of service attack.This issue affects htmlunit before 2.70.0.\n\n", + "reserved": "2023-05-18T14:33:09.974Z", + "published": "2023-05-25T13:54:52.191Z", + "modified": "2024-08-02T06:33:05.702Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-400"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "htmlUnit", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:950b0c5e-0dc9-4851-9d23-e3db8a971799", + "identifier": "https://www.redhat.com/#CVE-2023-21971", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T20:12:02Z", + "withdrawn": null, + "title": "mysql-connector-java: Connector/J unspecified vulnerability (CPU April 2023)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-21971", + "title": null, + "description": null, + "reserved": "2022-12-17T19:26:00.735Z", + "published": "2023-04-18T19:54:35.372Z", + "modified": "2024-08-02T09:59:28.563Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "mysql/mysql-connector-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:8811ed0b-745a-4207-afa5-416d7a65eba9", + "identifier": "https://www.redhat.com/#CVE-2023-20862", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-04-19T00:00:00Z", + "modified": "2023-11-14T22:09:12Z", + "withdrawn": null, + "title": "spring-security: Empty SecurityContext Is Not Properly Saved Upon Logout", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-20862", + "title": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "description": "In Spring Security, versions 5.7.x prior to 5.7.8, versions 5.8.x prior to 5.8.3, and versions 6.0.x prior to 6.0.3, the logout support does not properly clean the security context if using serialized versions. Additionally, it is not possible to explicitly save an empty security context to the HttpSessionSecurityContextRepository. This vulnerability can keep users authenticated even after they performed logout. Users of affected versions should apply the following mitigation. 5.7.x users should upgrade to 5.7.8. 5.8.x users should upgrade to 5.8.3. 6.0.x users should upgrade to 6.0.3.", + "reserved": "2022-11-01T00:00:00Z", + "published": "2023-04-19T00:00:00Z", + "modified": "2024-08-02T09:21:32.378Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "io.quarkus/quarkus-spring-security", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:2d660f19-ddb2-469a-b294-c9832768cd9e", + "identifier": "https://www.redhat.com/#CVE-2023-1664", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-27T00:00:00Z", + "modified": "2023-11-14T17:39:21Z", + "withdrawn": null, + "title": "keycloak: Untrusted Certificate Validation", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1664", + "title": "A flaw was found in Keycloak. This flaw depends on a non-default configuration \"Revalidate Client Certificate\" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of \"Cannot validate client certificate trust: Truststore not available\". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use \"Revalidate Client Certificate\" this flaw is avoidable.", + "description": "A flaw was found in Keycloak. This flaw depends on a non-default configuration \"Revalidate Client Certificate\" to be enabled and the reverse proxy is not validating the certificate before Keycloak. Using this method an attacker may choose the certificate which will be validated by the server. If this happens and the KC_SPI_TRUSTSTORE_FILE_FILE variable is missing/misconfigured, any trustfile may be accepted with the logging information of \"Cannot validate client certificate trust: Truststore not available\". This may not impact availability as the attacker would have no access to the server, but consumer applications Integrity or Confidentiality may be impacted considering a possible access to them. Considering the environment is correctly set to use \"Revalidate Client Certificate\" this flaw is avoidable.", + "reserved": "2023-03-27T00:00:00Z", + "published": "2023-05-26T00:00:00Z", + "modified": "2024-08-02T05:57:24.969Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-295"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.keycloak/keycloak-core", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:84ac3e13-0a96-4c3b-9a89-6db277957ca2", + "identifier": "https://www.redhat.com/#CVE-2023-33201", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-16T00:00:00Z", + "modified": "2023-11-14T21:51:12Z", + "withdrawn": null, + "title": "bouncycastle: potential blind LDAP injection attack using a self-signed certificate", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-33201", + "title": "Bouncy Castle For Java before 1.74 is affected by an LDAP injection vulnerability. The vulnerability only affects applications that use an LDAP CertStore from Bouncy Castle to validate X.509 certificates. During the certificate validation process, Bouncy Castle inserts the certificate's Subject Name into an LDAP search filter without any escaping, which leads to an LDAP injection vulnerability.", + "description": "Bouncy Castle For Java before 1.74 is affected by an LDAP injection vulnerability. The vulnerability only affects applications that use an LDAP CertStore from Bouncy Castle to validate X.509 certificates. During the certificate validation process, Bouncy Castle inserts the certificate's Subject Name into an LDAP search filter without any escaping, which leads to an LDAP injection vulnerability.", + "reserved": "2023-05-18T00:00:00Z", + "published": "2023-07-05T00:00:00Z", + "modified": "2024-08-02T15:39:35.708Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.bouncycastle/bcprov-jdk15on", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:43a3c864-3593-4dde-ba74-1bef3b5ac58b", + "identifier": "https://www.redhat.com/#CVE-2023-34453", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:37:42Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in shuffle leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34453", + "title": "snappy-java's Integer Overflow vulnerability in shuffle leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing a fatal error.\n\nThe function `shuffle(int[] input)` in the file `BitShuffle.java` receives an array of integers and applies a bit shuffle on it. It does so by multiplying the length by 4 and passing it to the natively compiled shuffle function. Since the length is not tested, the multiplication by four can cause an integer overflow and become a smaller value than the true size, or even zero or negative. In the case of a negative value, a `java.lang.NegativeArraySizeException` exception will raise, which can crash the program. In a case of a value that is zero or too small, the code that afterwards references the shuffled array will assume a bigger size of the array, which might cause exceptions such as `java.lang.ArrayIndexOutOfBoundsException`.\n\nThe same issue exists also when using the `shuffle` functions that receive a double, float, long and short, each using a different multiplier that may cause the same issue.\n\nVersion 1.1.10.1 contains a patch for this vulnerability.", + "reserved": "2023-06-06T16:16:53.558Z", + "published": "2023-06-15T16:12:34.119Z", + "modified": "2024-08-02T16:10:07.005Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.xerial.snappy/snappy-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:499fe624-5219-4e93-b2ed-d4aaa8c3de55", + "identifier": "https://www.redhat.com/#CVE-2023-2976", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-14T00:00:00Z", + "modified": "2023-11-14T21:31:33Z", + "withdrawn": null, + "title": "guava: insecure temporary directory creation", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2976", + "title": "Use of temporary directory for file creation in `FileBackedOutputStream` in Guava", + "description": "Use of Java's default temporary directory for file creation in `FileBackedOutputStream` in Google Guava versions 1.0 to 31.1 on Unix systems and Android Ice Cream Sandwich allows other users and apps on the machine with access to the default Java temporary directory to be able to access the files created by the class.\n\nEven though the security vulnerability is fixed in version 32.0.0, we recommend using version 32.0.1 as version 32.0.0 breaks some functionality under Windows.\n\n", + "reserved": "2023-05-30T13:15:41.56Z", + "published": "2023-06-14T17:36:40.64Z", + "modified": "2024-08-02T06:41:03.778Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "com.google.guava/guava", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:cecc86c6-84bf-48e9-830f-e517dfcb2f30", + "identifier": "https://www.redhat.com/#CVE-2023-0482", + "issuer": { + "id": "04194b23-2358-4267-a83b-a69a3b60d5c5", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-01-31T00:00:00Z", + "modified": "2023-11-02T07:08:07Z", + "withdrawn": null, + "title": "RESTEasy: creation of insecure temp files", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-0482", + "title": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RESTEasy the insecure File.createTempFile() is used in the DataSourceProvider, FileProvider and Mime4JWorkaround classes which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-17T00:00:00Z", + "modified": "2024-08-02T05:10:56.348Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "RESTEasy", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:8c08936b-4167-481c-8130-2d3e23a5fbc8", + "identifier": "https://www.redhat.com/#CVE-2022-45787", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2022-01-01T00:00:00Z", + "modified": "2023-11-08T11:55:55Z", + "withdrawn": null, + "title": "Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2022-45787", + "title": "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "description": "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", + "reserved": "2022-11-22T08:49:26.227Z", + "published": "2023-01-06T09:31:40.118Z", + "modified": "2024-08-03T14:17:04.186Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-312"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-c75ad779-f881-4294-91fc-13f15fbe5937", + "name": "quarkus-smallrye-fault-tolerance-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b753449-ab99-535d-ae48-1e4652e27c9d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0053930b-fc7e-55f5-989b-9d24c42013af", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment" + }, + "version": { + "uuid": "4b69e35e-eb62-5323-9fb8-7eafc5a1e4cd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-963a5dc2-f752-4322-91aa-9202ce5b7627", + "name": "quarkus-kubernetes-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4fce46cc-d8ee-50c7-98e4-69b6f4196c9d", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "00753d70-3fe2-5037-8769-a3c88017cf2a", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client" + }, + "version": { + "uuid": "46cb9b22-db73-569b-a256-d39a586eccc3", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10924038-802a-4b46-bea1-ba40f8a69d68", + "name": "quarkus-reactive-pg-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9cc51d22-3ffc-5276-b66e-1264e8182dee", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0144a611-3fe3-5d49-a582-df718dac1942", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment" + }, + "version": { + "uuid": "e6ab830b-ec56-5077-a356-a758b8a1ec5c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b10c491-6cc7-4e34-8fda-4304354ee8be", + "name": "netty-codec-haproxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5dcb0860-e5e3-59f0-848d-996d11c20100", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01ede4e7-577b-5b8c-83c2-35e67072f081", + "purl": "pkg:maven/io.netty/netty-codec-haproxy" + }, + "version": { + "uuid": "d2aeff2e-cd45-5cd5-bc74-d51493da6f5d", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4069f58d-012b-42e6-a77e-000c62f03316", + "name": "quarkus-websockets", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "faf09dd1-b130-5628-af99-a385018a4957", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01f503a1-5e40-57f2-8a52-b67d6f404d23", + "purl": "pkg:maven/io.quarkus/quarkus-websockets" + }, + "version": { + "uuid": "6e1c6213-3a16-51f4-a1e5-7f5523cdf720", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea171641-55ac-4468-b81b-316fa79fc0de", + "name": "quarkus-openshift-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee9c4594-9b58-52da-b70a-da630780c549", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02313e6b-a3fe-5c66-94a3-0c86f7ecb3fb", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client" + }, + "version": { + "uuid": "583347d7-1842-51bf-8c28-ac834a3b75cd", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30ce168f-eb43-4b4c-9358-12dc79f90972", + "name": "quarkus-reactive-routes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "172a965e-e5ba-5e46-981d-9757b8ecc795", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02eb391b-299f-5dfc-9c4c-298e8968529a", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment" + }, + "version": { + "uuid": "58126ec0-fbf6-5dda-b7e5-a25110e84426", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c02d592-d862-467b-9c71-103132700b9b", + "name": "quarkus-openshift-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7067713-9cd8-550e-b213-781fabb2211c", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04532551-313b-559a-b97c-583ecc4698ec", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment" + }, + "version": { + "uuid": "6014ebba-8ec6-5435-9f87-8d0c72a8d211", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af60960-e683-45e0-8b17-a51483f95706", + "name": "netty-codec-http", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "82ba94c0-71df-584b-86e7-2139624ad86a", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "045c6e1d-aa20-5e7c-94f1-21b64e3eca51", + "purl": "pkg:maven/io.netty/netty-codec-http" + }, + "version": { + "uuid": "d54f383c-04df-52c4-bae2-7e9c3cdf9a02", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e44cd9b-4d69-46e8-a111-0b07f9a6c017", + "name": "quarkus-hibernate-orm-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c4b6669f-4b7a-5def-b683-87c242523c82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "052dc802-11ad-51b9-aa38-58f15de32de7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment" + }, + "version": { + "uuid": "8a9ba57f-1303-56ac-a4b3-5baf4ddf5ce7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb185e6c-c910-4ff4-b263-42bd43fae2e1", + "name": "quarkus-resteasy-reactive-jackson-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "52c2f192-4efa-5eb1-967c-8939b6ff9578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "056802f2-3e2c-5206-a404-b3b6cefdcba7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common" + }, + "version": { + "uuid": "dccc1534-4d79-5dd3-a7b8-0450eaf05f9f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d741f3b-de3b-41c0-a09b-e778a10d50d8", + "name": "quarkus-spring-data-rest", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4de1ff-52df-5b0e-acb9-68d97df641b1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05cc8b99-1c5b-507d-bd60-c4f1ef8c0bff", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest" + }, + "version": { + "uuid": "1a08fd68-72cf-5a64-95b7-235f7f3c4200", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-930c4e5d-370b-4fb3-88c6-7a602a33af09", + "name": "quarkus-resteasy-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8116e156-f21a-5af7-80a8-e816ae881c8a", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05d27302-4e62-5271-9422-ea5ad094f2b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson" + }, + "version": { + "uuid": "dcfde42e-704f-52e1-b668-de5457271533", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-caad14dc-7bb9-4ca2-bdea-5a302ee09cb6", + "name": "quarkus-datasource-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2fbe4407-ac04-5760-aa82-a4c3fea02a66", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "067ed295-e259-5cde-bab0-2be520fb9a4e", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common" + }, + "version": { + "uuid": "bb1a32ba-5bb2-5d2c-a44a-bec96cb54df0", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2fd1018-55a9-449e-8179-7c7133a73e59", + "name": "quarkus-smallrye-graphql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6d669066-1aed-5e7f-a15c-24a4f5889f9a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07b0350b-13bc-5d76-a010-d7d581558de3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment" + }, + "version": { + "uuid": "ae2df958-63ef-5dba-b320-0aab51cf2167", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-040633a2-c94e-4d10-9e93-8a397e19b4a4", + "name": "quarkus-smallrye-metrics-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d7d7a9df-d1fe-5f23-a542-cfc65acec28a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08116430-432a-544d-ba75-e6e2af6f1dae", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi" + }, + "version": { + "uuid": "810aff8b-bcb7-5b91-8820-83805a824589", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b03dbf7-47e6-4a26-9d40-10f963dffa40", + "name": "quarkus-funqy-knative-events", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6676117-c46f-508b-8c2c-38c1d9eb06f5", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09beffbc-6f1a-5c3a-908a-ab96701fa478", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events" + }, + "version": { + "uuid": "bc91be4b-3ea7-5aea-8d11-d2d088c124bf", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cecd6c10-5e51-4661-b215-e716a0fd5028", + "name": "quarkus-resteasy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d315a338-83ee-50d2-b558-666f9a873014", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0aada068-a0d8-5d14-b2a9-fac85d5b9d36", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common" + }, + "version": { + "uuid": "be0d3b4d-c77c-52c4-a81f-849249009250", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-beaa0bc7-60f2-4ef9-aa3a-8d4d332bc63c", + "name": "quarkus-bom-quarkus-platform-descriptor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50cbf391-7d3b-5e6e-8529-6f995b8ed895", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004?classifier=2.13.8.Final-redhat-00004&repository_url=https://maven.repository.redhat.com/ga/&type=json", + "base": { + "uuid": "0ba7b14f-83c3-5748-8b63-d8393c9c47cf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor" + }, + "version": { + "uuid": "f866e0e9-4fa5-591f-a17d-055cab03cf9f", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "classifier": "2.13.8.Final-redhat-00004", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "json" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07a82943-c3ca-40ff-bcd8-b26b49b269c9", + "name": "quarkus-devservices-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d63b4298-8cb6-5dc0-b5f9-c65c4783e54a", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0c3d1642-f967-52c6-9563-8ae08aed1534", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment" + }, + "version": { + "uuid": "4184d1c4-d0eb-5486-ac5c-30342a302664", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-890fe6a5-a463-4223-8eb2-ae0741e27b48", + "name": "quarkus-devtools-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d44d6dec-d7a1-5910-9d8d-6c9f704eb5d2", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cbb3638-6fec-54e7-85a4-7816e3477c1a", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common" + }, + "version": { + "uuid": "e906f715-8c37-570a-86e9-e4a64aeb9c44", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d610f39-ecfb-42cc-b1bc-0c3dfb5b3383", + "name": "quarkus-micrometer-registry-prometheus", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "24893cca-eb67-555a-ad5d-8c5c8cab8d29", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4de25a-e9c8-50eb-ad77-87f0c9c18261", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus" + }, + "version": { + "uuid": "bc558ab7-8541-5d1f-98b4-84f4919c7532", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88136270-63a0-486b-b333-4448f6b3e0ae", + "name": "quarkus-smallrye-reactive-messaging-kafka-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d62ff1c4-016f-5956-a900-c2c4a7379742", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e019485-c37f-5857-9221-646d283e9fa0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment" + }, + "version": { + "uuid": "d1e90615-bbcc-5937-ad66-dd04fed3fbd0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-798a1f7b-8448-45e0-95ab-e22434cfe547", + "name": "quarkus-smallrye-reactive-messaging-amqp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cda87336-713c-5d33-8f52-04150751e7be", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e0c5a15-13d1-5974-9782-4c89f7ba1948", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment" + }, + "version": { + "uuid": "3321a6fc-4e78-5799-8b53-62cbb507dd24", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5cd2b4bb-adc0-41f6-a11a-b68aa5db6a29", + "name": "quarkus-devservices-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3fa188eb-4411-5abb-ad9c-fa1bc0b08b2b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f215144-4d67-5011-832b-093bf8336898", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle" + }, + "version": { + "uuid": "13e73e0a-a4e9-5ea8-942d-b4a21ea27642", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c9146da0-9a91-4258-bb90-3e666b34e65a", + "name": "quarkus-oidc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "acbfe2a7-35d6-5f3d-9967-c4d64d11f399", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f3759a0-76d0-5dd9-ab4b-6e42209b1afe", + "purl": "pkg:maven/io.quarkus/quarkus-oidc" + }, + "version": { + "uuid": "e9128e2d-89f4-5df7-8ec2-0c4e8ce3a1d3", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e7af422-d69c-4589-b530-49a3035246ac", + "name": "quarkus-kafka-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "126be05f-6cdb-53cb-9188-2fab6cc5499f", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f4b3a06-497a-5721-b378-43fe8e916630", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment" + }, + "version": { + "uuid": "bb3ccbdb-bbf0-5300-84ea-f9e899524323", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c88b3e7-e466-413c-9923-e5b0cf3b9f2e", + "name": "qute-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "67cdaca7-1133-5cc5-af6f-597b1e2460fd", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f57a6b2-fbef-5521-8d8b-d64230e75c09", + "purl": "pkg:maven/io.quarkus.qute/qute-core" + }, + "version": { + "uuid": "7321b3ab-98b4-5e25-8f1d-a0f0df9849d9", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0689851-37cc-404c-bd26-327853190726", + "name": "quarkus-resteasy-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5166c1a2-c2b1-5b8e-a687-8d50bfcd174c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "10c95e5b-29bb-5165-8a1c-a3dca9c79578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common" + }, + "version": { + "uuid": "9631e555-61ea-5396-92e8-2dd43272a413", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-25ad8e4d-7ce5-46bf-b7cc-5b65086c5f41", + "name": "quarkus-hal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b362b10-fe81-5909-a1ea-b51e52ef11d1", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1116d663-dff4-5fe2-ae14-ea020b725970", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment" + }, + "version": { + "uuid": "24c66fb6-e441-50d8-bab8-cc8f422f7305", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1eb5d62-38cb-48cc-9dd9-4aca1d2e21cf", + "name": "quarkus-mongodb-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "93ba4c2b-0dda-5870-a029-7187f7a4d253", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1160cff9-6b7a-521c-ba4d-c45c0225c0b0", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client" + }, + "version": { + "uuid": "86d453aa-4d73-5c0e-b4a6-8b3b4be9a154", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ef4669b-667a-49b2-ba30-a9ad9e6787c3", + "name": "quarkus-quartz-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "457a8985-cb9b-59ea-b19f-880f103fc0ec", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1291070b-4ea5-5dea-9d7c-98c37774284b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment" + }, + "version": { + "uuid": "003b9e3f-d0f9-5c52-a21f-ad7a4da02699", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e181d5-3aad-4491-a629-b05326a56316", + "name": "quarkus-smallrye-openapi-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a4344ad8-56f1-575d-ae68-ee37d6cf23f0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13aa85ea-3c30-5a02-8aa7-d165775c6ab0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi" + }, + "version": { + "uuid": "f765c3d8-15ce-5d20-bce4-12e46865e2d5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f95c789f-1905-43b6-8b69-8a7a3669b8ae", + "name": "quarkus-devservices-db2", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "db82485d-a60a-5e54-bb11-74a4e8c01227", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13b6b528-37ac-5ce6-8aa3-76b1a7819de1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2" + }, + "version": { + "uuid": "5f8cd5a5-c806-55b1-acf9-402bad08d3df", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0847b30f-f479-45a2-befd-b500606d0a21", + "name": "quarkus-bootstrap-runner", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d13c7ee0-65dc-5fe6-8792-0af78121ee79", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1474df3b-f69c-5cb2-a912-7c1335c3f8fe", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner" + }, + "version": { + "uuid": "9b7a31ef-3c5e-54d6-ac78-94d5e8f2d9d8", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40ff2b19-5336-47b9-8be6-874cbb33f868", + "name": "quarkus-bootstrap-app-model", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50668bbc-169b-528b-a3a0-a39e94c86e93", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "15f803ab-ea0c-5f5b-9d7d-a6b8c7b2e373", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model" + }, + "version": { + "uuid": "7d204113-798a-538e-88d4-9fb77d3a5462", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44db22f7-4bea-4ebd-bad2-aeadc182c4a3", + "name": "quarkus-oidc-client-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad57b00-7f93-5039-bc04-21e9340b26fc", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1665dfb5-4082-5ac9-9b9a-385fd48966b0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment" + }, + "version": { + "uuid": "1619ab32-934e-5441-8f61-62af1fddcd33", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0777bb4-ea20-412f-8e8d-be7cd6502a23", + "name": "quarkus-vertx-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca4b353-48e7-5133-89ce-05253f3bd43b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16ba7b38-569a-5d7b-8432-d23400b4dfd2", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment" + }, + "version": { + "uuid": "81110a25-6497-5c48-aed2-5211ae522ea9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1e4344ce-8f61-4e85-a4ac-cbc383fe414c", + "name": "quarkus-jdbc-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16b126be-46f0-5cc9-b3f3-fddd32d6fd44", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16c681da-2698-5821-9fd8-e51e211bacec", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle" + }, + "version": { + "uuid": "7b58af65-6264-5f57-bb1d-a453db39b16e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-394e6200-3abb-41ab-837e-71aee668281c", + "name": "netty-codec-socks", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5e694d2e-c97c-5ae1-adbe-0ecf77a50c7b", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1848b072-9a0d-556e-940d-0b438ab5288f", + "purl": "pkg:maven/io.netty/netty-codec-socks" + }, + "version": { + "uuid": "5944b774-9704-5c48-8276-b3be3378b68e", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fea042f-0b52-4848-b1aa-cf5912bb8b1c", + "name": "quarkus-vertx-http-dev-console-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36172ba0-f9b1-5fca-8d0f-d63ee435eaaf", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "184953ef-e38b-58e8-9704-49b3ece829ba", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi" + }, + "version": { + "uuid": "5b678f67-8cb3-5376-a49a-e7cb53e5eb73", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0400ac2-fc96-462a-9d0a-955f391e234f", + "name": "quarkus-resteasy", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3be65ade-f215-52b5-a273-515cac52e577", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "187f3361-720d-51ed-993c-b4c00e35852e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy" + }, + "version": { + "uuid": "bbbf817b-3732-5fe7-b5a1-bf3685d072c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-488833fa-2eb5-462f-9390-1a50042f479b", + "name": "quarkus-smallrye-context-propagation-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15ac265a-140b-591c-88d8-bc24f43e5147", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18853b4f-555c-53ec-b794-5edbadc55d02", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment" + }, + "version": { + "uuid": "3b027b54-5d45-589b-8afd-f914da1a2f04", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85dbdfbc-56da-4359-996c-ad639b0ccc2c", + "name": "quarkus-builder", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "02df10a9-8be4-5b82-bcb8-50bed2e763ba", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1916fc34-85b7-5f63-ab90-6ecec8b1ce1a", + "purl": "pkg:maven/io.quarkus/quarkus-builder" + }, + "version": { + "uuid": "36b4ea26-2f55-51b2-ac54-f39d16a45853", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b46ddd9-d99a-4c66-9523-289f6026b66e", + "name": "quarkus-jdbc-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f36b5f92-114a-5218-8f0a-8559b31257fd", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19d02fa0-fde1-5743-b375-8a34ccc2c3b7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb" + }, + "version": { + "uuid": "6732fc94-5ce4-5eed-a508-7dc960a0ba82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-570f27f1-a31e-41f8-a6ba-8eedaefb9858", + "name": "quarkus-avro-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "43490349-7757-53bb-a03e-de54514b2e90", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1abdcfc6-1537-538f-8f87-72691b7158cf", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment" + }, + "version": { + "uuid": "84a51b5c-d691-5f4e-92d8-cb54350f66f2", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc0eeda4-74cc-405d-9ca9-655595411b22", + "name": "quarkus-jdbc-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ab7e2cc6-6aff-5119-829e-8c32475d80d3", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ad66f4e-408a-5350-b9e6-653dd071e9d6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql" + }, + "version": { + "uuid": "fa419877-adb4-5ff8-9687-e8e5bf6c2ef9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2209db79-4483-43f5-885c-60c286409a7b", + "name": "quarkus-rest-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64a7aa8f-2aa4-5056-b79b-40e1eea2c42b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1bfe22cb-466d-5361-90be-c32dcf46b1a0", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client" + }, + "version": { + "uuid": "eea24528-6d2e-5210-a98a-5971811cceab", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a46eaf1-30da-4472-a0b5-36964582cec6", + "name": "quarkus-devservices-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f723d346-6d21-53e5-8d7f-1f9e50d3ec44", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1c3f3382-5e3c-51dc-ae00-785846666f54", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common" + }, + "version": { + "uuid": "9510fcdc-5d00-5dc5-857e-fdde705acd89", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1330df4-c726-44d9-9178-79a6ef546808", + "name": "quarkus-kubernetes-client-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2517fb14-202d-5941-ad18-e07db6fe5f04", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1dc1e346-9422-5706-8800-7cde9bff5c30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi" + }, + "version": { + "uuid": "31a1043e-dd45-5cd8-be56-489539b49e30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a61c38d0-4f04-440b-a9b4-becbeee59bc6", + "name": "netty-resolver-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ff246236-cca3-53c8-a9c9-1a2311dd64ab", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f8db150-de5b-5f90-b46b-6055cd758488", + "purl": "pkg:maven/io.netty/netty-resolver-dns" + }, + "version": { + "uuid": "ffac9578-0a40-5f50-9892-050cd80eeda9", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9372be64-184e-4fd2-a5b9-80310e496c4f", + "name": "quarkus-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5db35609-0222-5804-9c69-6a87b29d42d2", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f92a80f-62ca-50cf-a859-f4813f772dce", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb" + }, + "version": { + "uuid": "b472e0a6-fc8b-5e2f-8735-00b43b748ee6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42356885-c7d2-466c-9965-99fd66844813", + "name": "quarkus-swagger-ui", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b9f041-eb3e-514f-ba5d-f3d3c7632b0b", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2048835b-663d-5d6c-81b4-0f80447bef9d", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui" + }, + "version": { + "uuid": "86be783d-ec7b-55db-8b22-4caf074dcb10", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30d9acf6-2342-44b9-a159-6f54083b5516", + "name": "quarkus-kubernetes-service-binding-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d26fc174-a72b-5984-bead-5981fbbee8d8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "218cb45a-f09c-5bfb-b66e-00a3a8fdae95", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi" + }, + "version": { + "uuid": "0d7d47de-b91f-5864-8ee1-2642593ff93e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-466c1ab1-7bf1-4a11-b7c8-0d03cb34d1c5", + "name": "quarkus-undertow", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a538551-22ec-5fa5-b898-a991f552c2ee", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "22c33f8e-bd68-5cee-af99-cc09b1d811d9", + "purl": "pkg:maven/io.quarkus/quarkus-undertow" + }, + "version": { + "uuid": "722a7259-2cf9-5f77-947a-42ae541244ab", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2747f7b-172b-402a-84f5-ce178c42b25e", + "name": "quarkus-grpc-stubs", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a9a749f6-34e2-5453-a250-142ebc0528df", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f1434d-6fa8-5182-825d-f735df474e36", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs" + }, + "version": { + "uuid": "914298cb-edff-5299-a9e4-51d27d93092b", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f85b9c37-05a9-4266-bf89-6545a1a306fd", + "name": "quarkus-devtools-utilities", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa84e16b-ffb4-58fa-91ef-7184eef2a243", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "247eade4-d56c-5be4-b380-6c936cfdb311", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities" + }, + "version": { + "uuid": "75e7121e-49fe-5c35-92e7-d3a022db7d11", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbaf8f9-748e-4d7b-b7b0-2e09f9e66b95", + "name": "quarkus-funqy-knative-events-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0f788013-6907-53d9-be7d-911653385954", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "24e68003-fe62-5274-a783-72ef4b90f610", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment" + }, + "version": { + "uuid": "cedd0d04-82b5-5650-8572-7fcfb0cb43b6", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ecb352-da4c-46a3-8617-ed458ced2f45", + "name": "quarkus-spring-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4fbcef-f593-5439-8b4d-2b8fe7fb5fbc", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "25ec0e4d-1dd8-53cf-8288-3e494f6e03ef", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment" + }, + "version": { + "uuid": "6c0587e4-ad91-5401-be4e-35ab299c79f0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73e410a9-68e6-4bf9-8f12-edc691d73fb5", + "name": "quarkus-jaxrs-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8ef67e10-656f-543d-be30-58f489bcc039", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26333b28-d4ea-5b5c-9677-7bd6707b0de0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment" + }, + "version": { + "uuid": "a6b69aab-84f9-598b-b2a9-7c3db52c131a", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80ea2723-f5ed-4cca-b320-8f79063510a8", + "name": "quarkus-smallrye-reactive-messaging-kafka", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "01df1fb2-5f06-5dcc-9fcf-f9883fdbad20", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "263d3de7-dae6-5693-bf59-9ce5430cdf89", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "2199814e-48a1-5032-a08f-4f0471c15240", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ed98591-d051-43ab-9c74-1f3381d9a9a9", + "name": "quarkus-core-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "47594949-10d7-535c-9fe7-f07a3ad50de2", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26c0201b-9938-5d35-909d-803c549d9dd8", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment" + }, + "version": { + "uuid": "7ba38899-a09f-57d4-b351-8f218a26f18f", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3be0ff6-a286-4a04-91f9-7812df6702e1", + "name": "quarkus-spring-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6a1d83c6-a770-5d88-9215-fdbf79bcc710", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b632501-d073-58f0-89a7-0654a3f4a1ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security" + }, + "version": { + "uuid": "daa90c50-b765-590b-be8b-bd34bd7fdfda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4818f59c-b5f7-467b-9d40-fc29a7630d3e", + "name": "quarkus-kubernetes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a99298a9-3375-5152-89ce-02802c75e179", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2c6eead0-ce88-59b4-994a-f637fe92224e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment" + }, + "version": { + "uuid": "ea6e86f7-9a83-5b53-8c9f-ee8eda9ac0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1223d116-41df-41a1-b07a-29fde984dab3", + "name": "quarkus-smallrye-openapi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75f9bfc7-9c89-52fb-873b-c3ec01a7e7e9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d403acb-b8ec-5cd8-af33-bcf472f17ff3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi" + }, + "version": { + "uuid": "d687a1b2-586b-5610-b49a-ffc20b8e8c17", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1d0db57-c472-4dee-ab3b-16b01b8e2faa", + "name": "quarkus-smallrye-reactive-messaging-amqp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17962b0d-0f0f-588e-bffd-e2c42d1d5c8b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "303891d4-b794-5dd1-8f5e-fa37b3254386", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "1586e35c-2e5d-5746-8d80-1ce6baa6d8a4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cc93b96-b2a4-4e8a-bae4-9a519bb47cb7", + "name": "quarkus-resteasy-reactive-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd47493d-a094-5720-b2ea-ebfbfd996e75", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30ec5893-e9bc-5c50-8d3f-66c4eda95a9c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment" + }, + "version": { + "uuid": "76423c53-f3c1-51d2-abf2-d40d6085a749", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a2fa8319-ca3e-4f93-90f0-8ea931df3d13", + "name": "quarkus-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "167a84fd-94d7-5ed1-8449-06c7ee696def", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30f2a642-3fe4-5088-8675-18136395deb7", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment" + }, + "version": { + "uuid": "b210e73b-1bcf-51eb-b3f5-ea866ec12e16", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cb52258-3582-430f-84c7-635d63238be3", + "name": "quarkus-smallrye-jwt-build", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a937e4b-d857-5d4d-83b5-d6c192da529e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "31153480-c3ce-5dc7-9a88-787df6c8d95a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build" + }, + "version": { + "uuid": "260f6449-31cf-5a91-90fe-865cd5532223", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e7ee17f7-8e9f-4b81-9c45-ee240e6dc5bd", + "name": "quarkus-jaxrs-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "753da595-381e-5895-9967-86713a79ecae", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3237c3c5-a44f-583d-b704-0becfde42d2e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment" + }, + "version": { + "uuid": "b70565b2-9762-51dd-b1d3-bd72937f313e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-23be191f-7615-4b9d-a2a9-fe707af48c31", + "name": "quarkus-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0df54167-b0f0-5d91-90bc-628a80021cec", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32434ab5-3d47-547d-a69a-fd36ed6539e5", + "purl": "pkg:maven/io.quarkus/quarkus-security" + }, + "version": { + "uuid": "5f7a4e7a-b255-5aa1-9e89-1abc25272c8d", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c550828f-54f2-44d8-856f-eb163a80990b", + "name": "quarkus-devservices-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14888876-a330-52dc-b6a4-6bb287d375d1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32d2f0ae-ff13-5de1-829b-23693a01b58b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql" + }, + "version": { + "uuid": "59c887a6-e4db-5f29-b2dd-e996528a0d34", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c1ba4309-9abc-4e81-93b4-f3ab71b34476", + "name": "quarkus-rest-client-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2601075e-85cd-5985-aa30-9ebf42d00ef8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33a0268c-6e74-564a-932d-abb29d88b37e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment" + }, + "version": { + "uuid": "d9b1dc78-fd6e-55f1-8525-6d5a90b8feae", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4400c49f-c43d-41f1-8eaa-43f112597bc2", + "name": "quarkus-apache-httpclient-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c5bb552-8f6e-5c3d-91c6-90b47be5cb16", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33e14e28-4445-5802-aafb-910c24fc66c6", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment" + }, + "version": { + "uuid": "e226e5fa-8b48-5935-89e5-907b8715af6e", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710139ec-bcd5-4284-bdb0-d859aaa281d5", + "name": "quarkus-resteasy-reactive-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "181b4d1c-08c0-53d4-b4a9-b7111deeebfc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33eaf1e0-cb21-5657-b689-733c72a8cd6b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute" + }, + "version": { + "uuid": "51bbc3e9-f1c5-5329-9424-60578c25ba3d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65c10ba0-12ef-4cb4-8afe-777962394902", + "name": "quarkus-resteasy-reactive-jackson-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "19adc145-7ab3-5a27-bae3-d7fb149d99a0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34210648-b598-573d-a70e-42a801310c31", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment" + }, + "version": { + "uuid": "34cffcdf-15ea-5897-b5ce-8efcd9329428", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5716727a-ca55-4810-8a3c-1da87eeda5d1", + "name": "quarkus-devtools-base-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc64135-ed41-5e03-a2db-75a74e7f5a35", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "346c44ca-ff1a-5e53-97e9-fa6a486356de", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts" + }, + "version": { + "uuid": "33f9310e-5e9f-533f-b6d1-03312662d399", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-780655c8-4460-4858-a9dc-c4b4025184a7", + "name": "quarkus-extension-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "074aef48-23f8-510f-a93d-9d29f8681132", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37df424d-a1e6-5694-ba9c-c3ec797c4996", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin" + }, + "version": { + "uuid": "c5ea19a6-cd5b-530e-bcfe-3730eb957ee6", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f32dd752-29fd-4a6e-a241-2ee80367e4f9", + "name": "quarkus-resteasy-reactive-jsonb-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e895e5a5-e01b-5fa8-a0a3-09f44190b37e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37e1e02e-1b1f-5c91-a23d-4a9dddddbfae", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common" + }, + "version": { + "uuid": "ecb206c3-326d-5390-9621-06d19b856e44", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b295835-4e63-4cb4-93ff-00e07478fb5b", + "name": "quarkus-hibernate-validator-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2415a152-44ff-51d1-a2c5-aae176ce040c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "38d5de8b-3164-593a-9d77-88a69bb3c86d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi" + }, + "version": { + "uuid": "2b54eb43-7eb2-586d-aa56-c264b55fea2d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dec4267d-261f-475c-aa7e-15081cb7b814", + "name": "quarkus-hibernate-orm-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dab0e411-c906-5f26-ba9f-2bc8058b96f9", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a3fa47d-a921-5a4c-9992-6a34cf716a6a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common" + }, + "version": { + "uuid": "c7253c93-72e3-50b1-b537-3866ddb07a1b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-733d691e-dc1c-4948-b66a-c5387651c203", + "name": "quarkus-resteasy-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "751710b5-9c33-5861-b0b6-0d253da6df48", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a53866b-04f7-584e-92e6-9f0101263a1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment" + }, + "version": { + "uuid": "ec4da626-0e3e-5fc6-bdd8-4654a137cdab", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50b4bc78-052a-483c-872c-e0941edd9301", + "name": "quarkus-oidc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba56d11b-d66a-51ca-a310-7913f2b5d487", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a60e3c5-2baa-59a9-b05c-7587eaab9dcf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment" + }, + "version": { + "uuid": "0733fa3a-f274-5d6f-9afe-0a855677db6a", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-87a107c5-424e-47a2-afb3-7ec4e6df38ad", + "name": "quarkus-smallrye-context-propagation-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d0262f1d-9fb8-57f9-bd33-f2fa3c719e5f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a9dcc84-a92e-597d-9f8f-6eb3e7e60b43", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi" + }, + "version": { + "uuid": "4597a3b8-580e-5322-afe7-5c943ea6b55f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e67ac09-7ec1-424b-bd9f-84771a9606f6", + "name": "quarkus-kubernetes-service-binding", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5657c512-f07d-5b08-a5b0-1df803963ff5", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b025fdf-9886-5abb-a20a-bfcd188a9413", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding" + }, + "version": { + "uuid": "0a9cc5f4-c981-519b-a01e-e2657dd9cea2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b4e4a45-acbc-4da4-8926-968db5098c83", + "name": "quarkus-elasticsearch-rest-client-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6db23df-d47a-5974-87a5-613ecb86d1b7", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b0a7b21-a704-5f48-98cb-6444c5ca11a9", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common" + }, + "version": { + "uuid": "ecf40bcf-eed9-512b-be0e-cd79ed9bc74a", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85e1044-8101-47c7-95c2-b53b3f0fe41c", + "name": "quarkus-vertx-http-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14aebacc-daca-591a-b91a-6282afb27fcb", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3c33c6a5-344a-5551-badf-8cb0169abc87", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment" + }, + "version": { + "uuid": "82316ed9-78f9-53bd-9840-cb968b45752a", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16353681-583e-4ef3-9000-3128fa1e23f4", + "name": "quarkus-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a44ceebd-83ae-5d1d-804a-3140a36e2d3e", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d4b8b8e-da71-572b-b188-5710d59a23b7", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment" + }, + "version": { + "uuid": "74202f8e-e160-5ff4-8d52-cd3d2a2c1f80", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff1daa18-ba57-4391-a109-1d4bb7ddd23a", + "name": "quarkus-smallrye-openapi-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d46ba1f7-4fd7-5ce5-adca-093abdb497d4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3db6132b-31c5-546b-a659-ab9100dcf175", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment" + }, + "version": { + "uuid": "72ce2369-8f8a-5ab5-9d2a-d58534c1b3fb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2756596c-da2b-4246-ac12-10ae07ad5ff8", + "name": "quarkus-reactive-mysql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ceba0bcc-8048-575a-8cc9-34e8060f2db3", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42756c7f-ae43-5af9-8daf-3cec4d03251c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client" + }, + "version": { + "uuid": "a1691007-16fe-5ca1-bdc9-3ef909d8efb0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b794473-ef8a-4dc3-83c9-994ce7e416c8", + "name": "netty-resolver", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ca80ea97-d265-54c2-a263-c7069934ac5d", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "43af72a1-d9a4-5b51-bf1d-379c4f361446", + "purl": "pkg:maven/io.netty/netty-resolver" + }, + "version": { + "uuid": "968f513e-9435-5b1b-9174-e53eab15fc83", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e08e39f8-f66a-44f4-93f3-26f8e1e79329", + "name": "resteasy-reactive-client-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45d957a9-f53f-5cdc-8ef4-24a3e79c7dbb", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44b72d4a-b1c0-5ea8-ae55-7a0e3cd79e02", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor" + }, + "version": { + "uuid": "80315b0d-5179-5221-8610-c6dc029aa4f5", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14276dc5-94a5-43cd-84b0-ea71fc2b8222", + "name": "quarkus-container-image-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e628e771-34a3-51dc-97e1-4acb2b8ca5ec", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452eef4d-38b7-5e50-83d4-b96b6642b9db", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift" + }, + "version": { + "uuid": "3648646d-e82b-52db-956a-0d5d4c44e34b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a0388d42-2217-4d3f-affe-1eeea41e4e60", + "name": "quarkus-resteasy-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66cf0916-3d7d-5739-ab86-1661306103e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "46457d81-5f7a-5f5d-bd5d-fe30afdbab4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute" + }, + "version": { + "uuid": "5cecfcb6-7729-571a-9091-8abf39319bd3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cd8d0c3-3d68-412f-9e4d-59afe8b84671", + "name": "quarkus-rest-client-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b26e3805-8e38-587f-9314-db0b8eb67b09", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "479cc516-ed0a-5c70-8359-68da053461b4", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb" + }, + "version": { + "uuid": "5746db2f-3b44-5412-8d2a-1c8b78ccb382", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6de0e4bf-81b7-43ed-ae15-8f708b4d792c", + "name": "quarkus-rest-client-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bad81039-e105-5980-9294-33bc71506a5e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4872774a-8dc7-5e49-8bf2-66cb19c1da1a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb" + }, + "version": { + "uuid": "2fa20e5e-1bdc-59ec-8489-fb83b2c3c69d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac7ae0c2-98ee-41e3-8a91-f00ad1360711", + "name": "quarkus-jacoco", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4f17d7-f0b7-5906-b77c-646509e6e281", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49253c1e-77b2-5bb7-96c9-325533555384", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco" + }, + "version": { + "uuid": "eff2cf0d-a503-5e7a-851f-4b927a617fd1", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3fc3847b-8eed-4203-a3fc-f669fbe653eb", + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "496eab61-3333-567f-98da-f6c3389fa91e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ab88f63-6a37-5ecb-a9f4-093ec03bb2e7", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi" + }, + "version": { + "uuid": "e3097c94-b77c-5e59-978a-756364bf0eac", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d10c8fa-d8b6-4e41-85ef-e5f90624f1e1", + "name": "quarkus-keycloak-authorization", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ed321301-2d42-5939-aa96-70930a231979", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be678d1-5f0d-5d97-88b4-968f4f4bb532", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization" + }, + "version": { + "uuid": "e8c56f6c-62b3-5d14-a5f0-b2c921be6bdb", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a93d1d8b-bd47-42f0-bec2-536f027939c0", + "name": "quarkus-config-yaml-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "69248775-f5fb-5df9-ba0a-0ce8254bd512", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4c38dc0e-c278-5ac8-9de0-eba1263655c1", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment" + }, + "version": { + "uuid": "86ccc4d4-5720-502e-9caa-579b14076aab", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e300fa6-506a-4418-9dbc-ad9457a653ba", + "name": "quarkus-smallrye-stork-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a6337f26-143c-5e7d-90e5-b6628420d368", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd69d1d-36dd-57f0-a22e-c4a565157ac5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment" + }, + "version": { + "uuid": "75d1b7c1-a921-5421-b734-0d15b42ff539", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af03e42-a1c7-40d9-88b4-9beb6c420db1", + "name": "quarkus-resteasy-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e06e08f1-721f-51c5-938d-d36cc57ba5d8", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "502cbae6-cc31-5f4d-8f0b-85e3756a0dfd", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment" + }, + "version": { + "uuid": "2f0746b5-be13-5c33-bc9c-bcc1c00dc8b3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec3162b9-9631-44e6-9bbc-e4f268ef722c", + "name": "quarkus-bootstrap-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1be0493-7f8d-5b02-bcbb-eba30efee1f2", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "505c74b2-b0e1-537b-b012-621d3cb32333", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core" + }, + "version": { + "uuid": "55540482-9dd3-5934-81a7-c55ec6c0b7c0", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-333ec135-ab9f-4c13-8f50-ae0772f08de3", + "name": "quarkus-jaxp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3a43984-dfc9-5bb1-882b-3f21d6efd56f", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5092cd38-f156-5ea5-89ba-5a0f10426fd0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp" + }, + "version": { + "uuid": "5ab2e764-7ebf-5faa-b5b1-46759f6a7e29", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59872fbc-27a5-4ed5-80a2-ab85d9c5e983", + "name": "quarkus-jdbc-postgresql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7aa8ebb-75f9-5760-83da-0efb776aca82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "50e7ad71-bb2d-5ea7-b14b-16f2af03a7d1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment" + }, + "version": { + "uuid": "a19f3cc5-b0ae-5bce-9298-3aeeceb2def0", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af7b0e01-08b1-47d4-9aaa-ad27e63980ae", + "name": "netty-transport-classes-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "0ad86e44-2348-5e16-8fe3-6b2c6e7e0515", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53935580-8eb3-5cca-8042-b56f418b9668", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll" + }, + "version": { + "uuid": "0185e2fe-f7a4-5835-b0a7-8a33b646f7ac", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67892c7a-11d4-4b7b-b46f-24a7cc8ec541", + "name": "quarkus-kubernetes-client-internal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "131c8763-37e2-506b-8272-2f24dc961711", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "540092ab-3cae-53aa-89a6-d296dbb8d666", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment" + }, + "version": { + "uuid": "d32725d7-08bb-592d-94bf-cb360139aa48", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1066e0bb-7548-497c-980b-550cc1820edd", + "name": "quarkus-spring-cloud-config-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75e8c34f-1315-52b7-855e-302c2f9eca63", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5426860f-e318-5957-ab54-964557ec2dd3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment" + }, + "version": { + "uuid": "334f0960-51a3-5d46-b5d2-e0f57302c26e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53324b53-b65a-468c-8dee-ce6d9a08f2b5", + "name": "quarkus-resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87766195-e9b7-5bee-bbb4-6b5accfbb017", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "549ead01-246e-550d-af5c-c02dfa419877", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb" + }, + "version": { + "uuid": "ccf3e0a3-8edd-58fd-972a-9213498be91e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f018766-4313-4c7a-a778-592bc26c11a6", + "name": "quarkus-project-core-extension-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4fea899-2fec-5bbc-9990-c658495b1fd7", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55e2d8dd-e960-55c5-b8df-01bc8d7685ab", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts" + }, + "version": { + "uuid": "3d56ebc9-2182-5476-ad6a-e52329f92dfd", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-327ef349-998d-47db-8ef4-21bfe5779914", + "name": "quarkus-hibernate-validator-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "53fca636-2379-553a-8887-bc2f1d7b45b1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5684bcd5-73a6-5efe-b893-a6e0e04981aa", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment" + }, + "version": { + "uuid": "ae27d675-fd2e-5fd0-aa61-a8b0d3c84544", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7f5d59aa-9228-42b8-a3f5-0716163fe061", + "name": "quarkus-netty", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "555728c4-61d5-5993-8921-d117189ad0f3", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58372844-09e3-570b-aaf8-fba55058aed0", + "purl": "pkg:maven/io.quarkus/quarkus-netty" + }, + "version": { + "uuid": "1dd5ba79-e94b-5bf0-91c8-ee30962ef328", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec1ccf7d-d688-44c3-93d5-19c8f6c5dceb", + "name": "quarkus-mutiny-reactive-streams-operators", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "83bc651c-5e3b-5f3f-8520-a8688a04cc69", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59fe04c0-79a0-5b3c-a4d7-f6dc049e353a", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "bb6f86de-44e8-5c66-87a3-a43ea1193be2", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7aaacfb5-63e7-4237-8724-9885b01d69d9", + "name": "netty-transport-native-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "9ea25261-4666-5890-ba6e-276e8bc8b44e", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cbfb1fc-f145-5877-8d43-a7744abf2614", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll" + }, + "version": { + "uuid": "bd29dfa9-131f-5dcf-9e62-00d7bb0ff1f2", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "classifier": "linux-x86_64", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e726bd24-565e-4d41-8e91-4e56fcd6e092", + "name": "quarkus-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b00dc211-7861-539e-94a6-93f7e4ac03d2", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cc62b0e-55b1-520d-b90a-ac13239ed15a", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment" + }, + "version": { + "uuid": "1eb5ef4b-78fc-57c6-bd05-6ba86de36e09", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2514077c-76f1-4ffe-af42-54d2acd59c41", + "name": "quarkus-resteasy-server-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "313cfe0a-5a18-5edf-a110-97562fcc2202", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d484375-8861-5a41-99dd-88888b2b8099", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi" + }, + "version": { + "uuid": "07c4f418-6449-5516-b5fe-52c4f6a44b8b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-469b2356-b0a4-44fc-98f5-5bf4985b02f7", + "name": "netty-transport-native-unix-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "496d5d3d-dbcb-5267-b6e6-b487f13b1ec1", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e26ff54-86e1-5865-9120-caf4d8c675b6", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common" + }, + "version": { + "uuid": "3ac567ce-d4d2-5a8e-9920-72ae60eee50b", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85f52ce-77e9-427b-afbe-6da5e0c62b84", + "name": "quarkus-development-mode-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad60302-a4b0-5054-8b61-c86152920745", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f7aae84-2005-56e5-8bdc-b961acbdcd5c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi" + }, + "version": { + "uuid": "659aaed0-99be-5089-863e-0db46385256c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0d7a272-831c-42f6-88ab-b5a792ab23aa", + "name": "quarkus-container-image-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6f8c2a3-df85-5c2d-b8d5-0251d6f37924", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "601db209-a947-5fb0-aefe-8c2d04abda4d", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi" + }, + "version": { + "uuid": "f895479a-afcb-5f24-b750-031ab9e6502c", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cdaace3-113e-4e6a-b39d-7823e5729a1d", + "name": "quarkus-ide-launcher", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9dfbdf1f-a6b9-5c2b-b823-40b5ff3ac010", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "603b2397-3a5b-53f9-a573-1082d3fb0db7", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher" + }, + "version": { + "uuid": "94511d2c-d35c-56b5-8e1e-b5d428dabde4", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-840ea6c2-87e7-4e0a-a7a0-f410cfb9bb74", + "name": "quarkus-hibernate-orm-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9ce7315c-bfb1-5052-ac8d-e47197c6c22b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "606f41c2-cd4b-5475-8842-9e8b471324e7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache" + }, + "version": { + "uuid": "7b203c5c-8486-5379-815c-32ade7559d82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85de9ba1-4af2-4360-890a-fb3c92406e4d", + "name": "quarkus-bom-quarkus-platform-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6c91135-8813-5f4d-9939-1e16fab38eaf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=properties", + "base": { + "uuid": "608b078a-3157-51af-b251-236ddaf13b8c", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties" + }, + "version": { + "uuid": "52723653-6f29-549e-be2c-942ebf62e30b", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "properties" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbfa7f5-6442-40e1-adf1-3a2b65da4e2f", + "name": "quarkus-rest-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3c06c604-ba2f-5788-bf6f-71bd5d237eba", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6111dfcc-8e27-5cc1-83d3-76b1ff2f89da", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive" + }, + "version": { + "uuid": "16cba702-241d-5045-bbf4-9d68338d1d6c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51845f32-4339-46c6-80de-e862943c0c2b", + "name": "netty-buffer", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "c1344fcb-371e-568b-b2fd-e45dcd1dfa4f", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61d29143-3655-57fd-b805-dbb97ed8a131", + "purl": "pkg:maven/io.netty/netty-buffer" + }, + "version": { + "uuid": "7333a493-f187-51bf-a9e7-4aaee8d4197d", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1efe8d48-9ca0-41f0-a8dc-3b528e0a1dbd", + "name": "quarkus-kubernetes-service-binding-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bcc45506-7904-5489-acef-542c4975a3ed", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61ffebf8-b19a-5082-bbb9-fb68e9985720", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment" + }, + "version": { + "uuid": "0c520917-692e-58b9-9cd1-a475139a3095", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f38ca008-6e30-4570-8a52-86d6310e4fff", + "name": "quarkus-rest-client-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a66cac8-5dab-586a-ba18-9a9611985936", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "624a470d-b96b-50a2-a708-cf7d986dff11", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment" + }, + "version": { + "uuid": "551becc1-3756-540d-b0c8-cf93c4221f49", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3448e5bc-cf5e-465a-98cd-a6fc3633b54a", + "name": "quarkus-kubernetes-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "376edac8-5252-5d52-aefc-cce4f12c94eb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62c9ebc6-11a6-5975-a976-1f512103302e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment" + }, + "version": { + "uuid": "f92274a5-35e5-5080-aad2-b76bb272ecb8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b290413d-9e73-48ca-a143-5dafbb284bb9", + "name": "quarkus-smallrye-graphql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64966b95-c985-53da-80f9-2726b77e2e82", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "633b364a-02e6-5128-8a4a-6d5375a661d8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client" + }, + "version": { + "uuid": "29c2b97d-06e2-57bb-a02a-f341c95f5187", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d3b863f-5cf1-4841-9ce5-6c2bcb4c0d72", + "name": "quarkus-smallrye-health", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "85df758c-6a7a-54d5-91dd-95fb09354950", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "63ec2a64-4992-5542-a90a-46dc9805ecb9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health" + }, + "version": { + "uuid": "f45aa69f-6389-5e57-a3a9-8d5b794e6ebf", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-71b29963-fc1b-4654-a866-a1ec76cebd7d", + "name": "quarkus-credentials", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cd908986-4f09-5cc0-9e66-892b8b57da8b", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6411d779-f8ca-5c3d-9de4-815f4afde735", + "purl": "pkg:maven/io.quarkus/quarkus-credentials" + }, + "version": { + "uuid": "4e43b03d-3dd2-5622-bf17-9c71f88f2e31", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a22bfe5b-ef1f-4a49-9ce2-315d2d1beb7b", + "name": "quarkus-kubernetes-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ebabcbfe-9983-5cd4-80df-456011f84237", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6507bc59-508d-5fe5-ab71-4b1ca01ff7a2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment" + }, + "version": { + "uuid": "61d0ca9d-617d-526c-b0c6-c055419dbbf9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4e179fc-c681-47af-b0d8-c52d96bf1ea9", + "name": "quarkus-spring-data-jpa-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a8df2c2-0c79-5645-ad98-f7e19aebd0ae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "66bc1f0d-d9d4-5d6d-8d12-b8be47537cda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment" + }, + "version": { + "uuid": "dbce6f46-e85e-55a1-b74e-c7151a0c9cb4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3bbacd3-f091-424f-939d-c1378ecb782d", + "name": "quarkus-spring-data-jpa", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b44663e0-9ee5-5f36-916b-eb00f62a78f7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6740305e-0e0d-56ae-99c8-caf035a7c670", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa" + }, + "version": { + "uuid": "efd2a5fe-ab1a-5bc6-acdb-cf4389e7edd1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a73043-6937-4489-9298-1df0dfa993b4", + "name": "quarkus-resteasy-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b928e8e0-0d90-54c9-a1f3-d6e1299ab896", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67eecca9-6db1-5bd3-af32-003cdd1c1d47", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment" + }, + "version": { + "uuid": "ac361a7e-f8b1-58e4-990e-8f215a993578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb769aa7-79a8-4027-85f8-663a6e608e7a", + "name": "quarkus-resteasy-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fee6d74f-1ea6-5777-8b11-d7bb3da3f049", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "681cab9b-59b4-560f-a2f5-114ff84fb40e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment" + }, + "version": { + "uuid": "572b5e60-54b8-5150-b13d-0ad9285f22f5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22ddd669-6b59-4f75-9456-4107da25a846", + "name": "quarkus-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d51b6412-27bf-5cc5-b320-a4b042f6602a", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "685f9310-4963-5b61-81c3-e24794bebdb9", + "purl": "pkg:maven/io.quarkus/quarkus-datasource" + }, + "version": { + "uuid": "59f283e2-3341-5876-8371-8ea3d5a58ee4", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-546b6b7f-8ea5-4b1b-a68a-a2cfb81894a1", + "name": "quarkus-oidc-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "781835bc-e503-5bbe-8bca-d5f67ccc8a47", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68a69722-24d6-5a5f-87d1-3d8ec913a712", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client" + }, + "version": { + "uuid": "19f17aa3-1193-51bb-a069-9d0d5505ccab", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67c75e67-7962-4288-addc-33e4ec2a6a50", + "name": "quarkus-kafka-streams-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6748482-0c44-5bdb-9443-63c1f56f2e0c", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68eaa406-15e3-5cf7-9b9a-609af9365262", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment" + }, + "version": { + "uuid": "2c8b74a8-fd93-5db4-b3ff-832258c95c92", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e8531f1-ed6d-4fbf-8715-7955a4984ec9", + "name": "quarkus-devtools-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a326ce23-4646-5471-84ba-bd3eeeba3e33", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "695d2180-1c51-5de5-82bb-54269d863059", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts" + }, + "version": { + "uuid": "3de59fcf-681e-5a6c-9242-84eed01e02ce", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-220d857b-a0b9-4588-b0e2-b97e38aa1777", + "name": "quarkus-hibernate-orm", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b90207c1-91d5-575d-8df7-4c5e39e07035", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69c179e4-10ed-52ab-81f5-60806e45ff33", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm" + }, + "version": { + "uuid": "dae9dba5-ef0a-589c-92fc-b3642379468c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61297055-dc7c-4de8-83e0-49d8c789bafd", + "name": "quarkus-spring-di-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b09381c0-2bac-57a1-90fc-450d374d2e14", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cd910a-9ca2-5f74-aafc-2922fe1337d4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment" + }, + "version": { + "uuid": "a0bebf09-db58-5a6b-922d-8e63a2a41dfe", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88843e4c-c6ec-4599-b536-70f02bba4af3", + "name": "quarkus-smallrye-jwt", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6cf2155-c2df-578c-b569-62a6d85f2f9f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69d6bb9e-332e-5c9f-9fda-bdfdad05e926", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt" + }, + "version": { + "uuid": "d3f33244-139a-5c32-b81f-e550a54a7c7e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2098e3c2-f2b5-4825-94fa-27bc00d73abe", + "name": "quarkus-agroal-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "26052c2e-e865-5ff1-b9db-297e28cdf07d", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a84b29e-4eb9-53cc-afac-2616eb070f5c", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi" + }, + "version": { + "uuid": "015918b6-1eeb-5e10-a6dd-4d3c7022d4ed", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fed4b130-efcd-4ef1-8836-26b7b5cea154", + "name": "quarkus-jdbc-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ea086e9b-f88e-53a5-9ee1-c7f8ad45f58d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b182f90-d410-58a3-ac06-c131126a9732", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql" + }, + "version": { + "uuid": "c099b094-1ff5-5e8a-a2d0-b435756eff22", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7436880a-b688-4e53-9a1d-059439f90c5b", + "name": "quarkus-jaxp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b9a5a210-7483-591a-b0e7-03c1b6d69a18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b1b957d-a2f3-54c1-b168-9c6bdfd63634", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment" + }, + "version": { + "uuid": "fd21c841-7149-5283-a472-9c140de833d3", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-940e26c2-1b38-4b6b-86ce-610ad349447a", + "name": "quarkus-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd5cadb4-0a04-5aad-a4ed-5a1c1ee2f019", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ba3b95f-dd9f-5213-9c30-fd2fe57d104a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin" + }, + "version": { + "uuid": "5355eb2e-2bd0-5462-8dbb-df577008899a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc5df4fa-1d77-40f3-bf66-34fc9fa1bc52", + "name": "quarkus-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6cfa5672-5d2a-53bd-9b97-ea41cccac1e1", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bf685d7-274d-5000-aa13-d9e508197601", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache" + }, + "version": { + "uuid": "b1a3c4e9-de8e-5a31-84b0-1a06acd4338d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ad0b8ec-0237-49ca-acee-d4c8938d30ff", + "name": "quarkus-smallrye-stork", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0b78bc76-e6d4-59b2-8fb6-6940a523c0b8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c17e661-bf0b-50bb-b566-736d8851e3d3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork" + }, + "version": { + "uuid": "4e553315-531d-5d64-a401-716b1938301d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be2c8d3f-f2cf-4805-94fe-737dd12f4721", + "name": "quarkus-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15445e75-f052-5dfc-b4ab-63ff74f4bba6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c68269e-589c-5bca-8a88-e09700b75e18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb" + }, + "version": { + "uuid": "59dd6f31-ddc9-5ac5-a30e-17dd349958a0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39103775-fc22-4aae-bca6-c91989c8b438", + "name": "quarkus-resteasy-reactive-jsonb-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6035ecba-96b8-591c-8529-68468c94e5b2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d3faf65-3cba-5f4a-af93-fbbc9e494e26", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment" + }, + "version": { + "uuid": "030135a4-e2f4-509f-bee5-97dcd8da13d2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79a49f73-f087-4a3f-80ec-cabd0b66d353", + "name": "quarkus-opentelemetry", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "875c4b2f-35f9-514f-a92d-98e3a9469252", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d569531-d78b-5e63-a709-c526212a1b73", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry" + }, + "version": { + "uuid": "93155d5d-f059-5518-b74b-64353b6478b2", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9dc13228-fe20-4490-adb5-90be2bb678de", + "name": "netty-transport", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "4b4743bf-08af-5e85-ba49-089e61524d69", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbb1cee-48a4-51c3-b0b8-bde2f82066ff", + "purl": "pkg:maven/io.netty/netty-transport" + }, + "version": { + "uuid": "0a7f07a9-1246-5f82-b2a5-9db1253cae88", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b570be0b-25ed-4127-9643-16234239e2e6", + "name": "quarkus-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9eb64eb8-f576-578d-8d3e-04199b7a1e13", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e0f56bb-62cd-506f-8ad3-e5bf3a281056", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment" + }, + "version": { + "uuid": "44a3bda2-7dd9-54e3-9391-cf4f712e3aa8", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78f2a277-47d6-4d5a-b5e1-b410ffcded3b", + "name": "quarkus-scheduler-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fef6935c-7bb1-55f8-8530-638867de5d76", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e1f2194-d4bb-5499-9480-92ab9e1d8d0a", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common" + }, + "version": { + "uuid": "d0678b0d-9604-5b87-8663-53e56bfc8655", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-427a29d6-57fd-4675-8de3-cc6987fc7eef", + "name": "quarkus-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f63fe058-0590-596e-8259-30e03afa9301", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e7521fb-48f6-51f0-befe-83f9bebe57b5", + "purl": "pkg:maven/io.quarkus/quarkus-openshift" + }, + "version": { + "uuid": "8fede6ab-953b-5faf-b21d-7b6aa450de9a", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aebaf362-a78e-4c0a-aa0c-9a0e1c7da821", + "name": "quarkus-undertow-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "adf147ea-6b5c-54dc-93fe-860919414c11", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f483e38-83ee-530a-86c8-682f04cc99b0", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment" + }, + "version": { + "uuid": "0863688e-215b-5901-ac85-71676e8605ce", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7d36a76f-199f-43ee-82cb-7e1e6d21efc5", + "name": "quarkus-oidc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8c732e8b-08bf-5065-af2f-fc8de5ee76ef", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f80022c-2e29-55c0-b2ff-147a7fdcb1fa", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common" + }, + "version": { + "uuid": "beec90c4-1d47-54c4-a25e-06049a3d8516", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a8cff30-f924-42bd-b6e7-cca68547f433", + "name": "quarkus-smallrye-reactive-messaging", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cbdcb5a1-e1a4-57c6-8713-035ad9df9b46", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6fb5f32c-191d-54f6-84f2-9275e4a8b23b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging" + }, + "version": { + "uuid": "eef1a569-0e0f-524f-a853-4940e43bd381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68ae0f2a-018b-4eb4-86da-43832b8d89e9", + "name": "netty-codec", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "adfeb0c7-f3f8-5785-b3c5-a4baf26c16f0", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "70bb8124-bc03-5917-ab6b-5112011967e7", + "purl": "pkg:maven/io.netty/netty-codec" + }, + "version": { + "uuid": "7e3d3cb5-fcbd-510b-9c67-6145b6af291d", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-262ebcf1-72e1-420d-8c35-db55339f3386", + "name": "quarkus-hibernate-search-orm-elasticsearch-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee6c349d-9542-5e7b-a63d-1f79e5c6097f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "723a9e99-126e-5f6a-a9e9-ce835bca17af", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment" + }, + "version": { + "uuid": "23e9428d-af34-5eb2-a567-a05046922d36", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0eb27c33-c07b-4534-ae34-ea73e336dc64", + "name": "quarkus-reactive-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da5db5f5-c917-56c7-a30e-4b25a76ab42e", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73622207-8ffd-5713-9aab-e1f402d3794c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment" + }, + "version": { + "uuid": "42aa7bfb-20a1-577a-b70e-b458238b49c4", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-793c32fe-321f-4132-bab0-5439d9369da3", + "name": "quarkus-smallrye-health-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d15f2d6f-fa63-58b1-8477-c51099005fa9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f0aef9-e57a-52f1-94ff-ac68cec074e4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment" + }, + "version": { + "uuid": "45e1bd90-8585-5ea7-bc51-a20005f69f85", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8dbcf3-62a3-43a4-b4f6-c6bef0ff407d", + "name": "quarkus-grpc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b08a514e-d85e-5351-9475-c103a5c07241", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "74081d31-78ee-5bf3-8cfe-23a3c95b6cdd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment" + }, + "version": { + "uuid": "5f26769a-2465-5f70-bc07-d25cd408ce2e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f6e6a08-d7bd-4ecf-9a8d-8e037cb00f37", + "name": "quarkus-hibernate-orm-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1245d5f-a29f-5dbb-be97-44230b9486d0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7748af30-7cb4-59b4-895f-cb46016bbb72", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi" + }, + "version": { + "uuid": "6f021625-a14e-550d-ba6e-5908cb7aa320", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80a38ed5-1071-4547-8e56-7ef6bb55b058", + "name": "quarkus-spring-data-rest-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32594038-85b6-51ee-95b1-006283768db1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b1c876e-1842-5634-af41-eac112702f5d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment" + }, + "version": { + "uuid": "bcc259db-cc4d-51a0-a419-d9aebfa0644b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e155be86-3227-4103-9edb-77bae78824cd", + "name": "quarkus-spring-boot-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e28ec0c-4664-5492-b2f4-da4dc7b229bd", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b7f25df-d67c-548d-add2-633689b5cfa7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties" + }, + "version": { + "uuid": "2e26faa7-a8d1-50f7-a1d3-25c337ec6e66", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-870db237-fa6c-4865-8985-f52fb4a99c2c", + "name": "quarkus-jaeger", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c63c3edd-d82b-5d24-b833-dd95390a3153", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b85a659-89e9-525b-89be-2647ff8f425b", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger" + }, + "version": { + "uuid": "caec611e-23ed-5414-a897-abf59900d67c", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c99295ab-b562-400b-817c-419cf238d77f", + "name": "quarkus-resteasy-reactive-server-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "956d2efa-7999-569d-9143-46a4fb912c0c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7fe8e55b-1e62-58f6-9aa0-48da0a320cd6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment" + }, + "version": { + "uuid": "11b8a748-0958-5b72-b151-5b5aef1fee04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de65163b-f27a-438f-98fb-a3b39487a797", + "name": "quarkus-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "900e18da-2a3f-5572-9db9-6fdc7c1dddf0", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "803e21b5-c5f5-525f-8da9-75a953d18f1f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson" + }, + "version": { + "uuid": "a32c4f28-1462-5e39-b5e3-255c25ea899f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ae8a270-f743-4a2b-98a8-76fa043e62b2", + "name": "quarkus-keycloak-authorization-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "39aa0936-b303-5c34-83a9-492bebda9ddf", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8096f4f3-7458-590e-9214-5b3e61c58208", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment" + }, + "version": { + "uuid": "3f6c7f88-6862-59c9-902c-fd430d93bd4e", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f15ec78e-edcd-484d-9db1-3f9f7f991946", + "name": "quarkus-spring-web-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ce5d970-42fc-5788-9425-c6aebc1cba8e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80c688a4-d3a8-5445-b3a7-7508d55b95e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment" + }, + "version": { + "uuid": "327f7023-b759-514b-9bef-8cf5dff57545", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e9b381-db68-4826-bc61-817051e1ae2a", + "name": "quarkus-narayana-jta-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "70fdf043-217e-559d-9a2a-fbfb51701053", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80de8c07-ef1c-52cc-b8a6-888ecca10806", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment" + }, + "version": { + "uuid": "3a83f8f0-6e1c-5b58-a6f5-ef004c788c1b", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9bb9a4ac-f467-47a5-8573-2d7c6f5a6537", + "name": "quarkus-jdbc-mysql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cc737316-be25-50bc-88b0-e2380e514f64", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "835553fc-e319-52c2-bc48-55d70a2e8187", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment" + }, + "version": { + "uuid": "ba51d5cb-6edd-5938-a4e6-0cf9148a314c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de924e9f-a767-44d0-a261-b967399024ea", + "name": "quarkus-container-image", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c47e373-6eea-5f0e-94cf-5ec5b5a6c694", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84d91d6f-a02a-5104-acc7-df3f7971a499", + "purl": "pkg:maven/io.quarkus/quarkus-container-image" + }, + "version": { + "uuid": "6d96e730-0745-58b1-8e57-d0a25579fc52", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8250ddf2-3f04-45e6-8221-5a414ed5b9c3", + "name": "quarkus-spring-cloud-config-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3dc8aca-8374-51a5-af20-ea89a4221ca8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85456513-49a5-500f-bf9e-ad975600f71e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client" + }, + "version": { + "uuid": "e5b65e32-3acf-5321-a2a4-04fef8b0b8d6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21b37735-8fa4-436c-9039-40682c6840a1", + "name": "quarkus-hibernate-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c587df9-c5b4-52d8-b945-107f5ae06e67", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8549e270-4cc5-5e0d-ae98-563e798a0e6d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment" + }, + "version": { + "uuid": "93d1e295-f4c4-5840-876d-166c10e0cf76", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e42d136-b872-46a1-8694-aba9187bece3", + "name": "quarkus-hibernate-orm-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1113f065-02a1-5a2b-a24b-6b5a017ba2a3", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86cd0b18-a502-5999-ad85-121edc70dcca", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment" + }, + "version": { + "uuid": "0688e6c6-2486-5688-afc5-2c50c1ce5c8e", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6a140c57-6426-4102-abfd-2ad47a45be45", + "name": "netty-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "71811857-77f1-5c71-818f-39932ff0bb7e", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "870186f2-68c0-54d4-b632-cb524ed17e79", + "purl": "pkg:maven/io.netty/netty-common" + }, + "version": { + "uuid": "2bde327b-738c-593b-a11d-7e5261be5900", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e219e264-7a2a-4ce2-b739-530e599366eb", + "name": "quarkus-undertow-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f0dc1fa5-0fe8-5f34-99de-545c7100c8c1", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "87bfa2aa-0fd1-5f7e-816f-ccae9b3dbec5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi" + }, + "version": { + "uuid": "b96b6835-ac44-51cf-bf99-16a2d8e0b5e5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39c9b12c-f528-4ccc-867e-3e700fd00eb8", + "name": "quarkus-smallrye-graphql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66fdadb4-877a-5096-991a-81a0854af017", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "881457c9-aec4-509c-bfc0-55dcce7942d7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment" + }, + "version": { + "uuid": "3c00118c-2382-5aa0-8375-ce1ab309e54f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7875f88e-5485-4b01-9d8b-a58e422f3b6e", + "name": "quarkus-smallrye-context-propagation", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce888339-535a-5a0d-8385-3bcb4168b77e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "88825f7c-0148-5eb3-92ab-cb823d86c24a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation" + }, + "version": { + "uuid": "4470755c-2368-5c06-8788-14de4b1adc66", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fc7c15b-8c3c-4573-8287-23bfde8997a6", + "name": "resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dccda6ae-0f2f-5a0a-ab47-6c03ef2d7b74", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "89c6538e-8f5c-5dc4-8bed-e6ed0fc7d21b", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive" + }, + "version": { + "uuid": "fab2ee4f-2315-5ad0-bf0a-037f4545a2b6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6159804-c8d6-4237-9761-22f97bc8fccf", + "name": "quarkus-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae311bc2-7848-5c3c-a26a-f2b8f31d1447", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a3c8def-0399-56e6-947c-07a1fb4b44ca", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment" + }, + "version": { + "uuid": "f6a2eee4-b67e-587f-b70f-b727737658ce", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d8fa47-875b-4fbe-9f20-7340e23a90fb", + "name": "quarkus-agroal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f168de3f-4478-5789-acf7-b6c6730dbcc4", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a407fc0-9844-539e-98e6-c380d0722594", + "purl": "pkg:maven/io.quarkus/quarkus-agroal" + }, + "version": { + "uuid": "2a339e09-59c8-5907-9683-9786118e6b64", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-11b7fc0a-bc3c-4578-9667-fd9a2f001f39", + "name": "arc-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45f0c536-c04a-5344-bf57-540f7375ceb4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a7b3a75-2dde-56b0-b441-bfe58d6c94a4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor" + }, + "version": { + "uuid": "6df7d2d7-d694-55ac-85a0-7d2a6a430d16", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5c50423-a678-4d56-9953-7330c3c5e232", + "name": "quarkus-panache-hibernate-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce31edc6-2710-5460-bd71-2a660959e25b", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ab2fe35-5260-57bd-a745-bb22509ac334", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common" + }, + "version": { + "uuid": "a08b583a-f0bd-55a3-9bd3-c89250811f72", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6587db85-8577-4aa7-b4b5-50d4f65b5945", + "name": "quarkus-resteasy-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50df6c36-498b-506f-b5b6-f22cdca035a1", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8b692a6b-ce77-577a-949b-c2793aefae76", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb" + }, + "version": { + "uuid": "31c75ceb-977a-5f70-91fa-84b3c0e6c0c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1af8ffc0-d301-42c2-8980-82f971e3d585", + "name": "quarkus-smallrye-openapi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac3051ce-b7fa-5d1b-8071-4756e914723f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c22239a-29e9-5fd2-8048-9503219b4c15", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment" + }, + "version": { + "uuid": "7b245d36-b6d3-5d84-b9dd-282eb101dc92", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6095bef-676f-4f49-a3db-612888f8200f", + "name": "quarkus-resteasy-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f012f320-f329-5707-90f0-80233d44540d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8de15e7f-5d38-571a-a0d2-baa6da3ffefa", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment" + }, + "version": { + "uuid": "e389d577-7d21-5ace-8276-450f2617ec73", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8ba62f-fcb4-4d1b-88bc-fdf317d55a1d", + "name": "quarkus-netty-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c68068ba-f4ec-5984-8de9-0c803541cf3c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e018191-bd99-5687-b999-4bc37ec3f997", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment" + }, + "version": { + "uuid": "f03e1436-bf6b-5c9e-a0e5-9496f388e74c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a26fda24-bce5-43e6-8b99-a1e89165717a", + "name": "quarkus-kafka-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd66beb3-a365-51e7-aee5-fc221fc3540d", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8f06998b-ffcb-5891-af8f-f7c784117f2e", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client" + }, + "version": { + "uuid": "9fbc9520-e228-5105-8d3c-6fd5f0e33fd8", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33025a1f-2330-4031-be0a-cd2d50e9b2e9", + "name": "quarkus-elytron-security-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4818d536-ecd1-5ded-9623-90a74e5ab213", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9117ba37-1138-590e-a902-c1cb33c00ff3", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment" + }, + "version": { + "uuid": "bfe43c3a-b5e5-50c1-81af-f3ee7d0977cd", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-955f9c35-31d2-4825-a615-5d5c24b2ec36", + "name": "quarkus-reactive-mssql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d232d104-560d-5908-a63d-8f28ea917d8c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "919f5488-b06a-574d-9a79-fef7466711a0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client" + }, + "version": { + "uuid": "1c444ca8-d051-5508-b4c9-019bed0a1531", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16606645-7867-45a5-b5da-6dae9c252d11", + "name": "quarkus-devservices-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4cb84e06-cb6b-5bc9-992e-23061c9135ad", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b0c71e-9d37-5127-88d1-32b5584fea3e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql" + }, + "version": { + "uuid": "fe48a8a2-ad04-5236-8bf9-63412e2b649d", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7a70cd-8eb7-490f-a75d-94dfb14619d1", + "name": "quarkus-caffeine-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc54d22-b269-5028-82a5-eb5fac9fa9e6", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "93ee44b8-118d-5fe0-98b0-c8811c36f64f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment" + }, + "version": { + "uuid": "ab10c629-cb60-58b3-8939-4fcbc12cdec0", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7a8e72d-00f8-41e5-815b-433e55057177", + "name": "quarkus-container-image-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "570db129-156d-5573-a298-64c82816868f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94511500-7e2d-5455-94cc-92336ce41ffd", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment" + }, + "version": { + "uuid": "2faa4353-5e95-523c-9e00-1b54c6a21e3f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05906e73-54bb-4c23-9172-898c76bd6d55", + "name": "quarkus-spring-di", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a5692e79-903d-5125-9df2-0b8bc3418bac", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94a4a80a-b08f-5fec-89fe-84bab45c7edf", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di" + }, + "version": { + "uuid": "c3320e62-70a1-5e58-9858-dda7172306ab", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62cb4303-30df-443f-bbd1-16e8e0701445", + "name": "quarkus-hibernate-orm-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9091fb5c-790e-5c4b-a5c4-6373814af611", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97734d36-fd79-5fa8-b849-14b92bc5547f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache" + }, + "version": { + "uuid": "74088374-2888-59c5-a21b-9de6275f5c8a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a1a98e3-53bf-4e66-9fe5-13ac6b6d049a", + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "805c7c4f-8b37-5dc1-baa8-d193b49e9397", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978a364c-8815-5146-9f51-df97ad59dc2e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin" + }, + "version": { + "uuid": "1a8e0e98-de1d-59d2-9702-03caa5827a41", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39ebd0ce-1c2e-40be-80ce-22b10eb8b48d", + "name": "quarkus-spring-scheduled-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "29cca5b2-78a8-5ad2-9935-32e52e736e1e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97af3578-54eb-5a12-a6d2-d0f39229cc93", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment" + }, + "version": { + "uuid": "ff268798-f104-51a1-8278-75f64881d56f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4d78d43-66d4-4e33-a0e4-9d163885efaa", + "name": "quarkus-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "592e29f9-da5b-56c9-9d65-28ebaf6d825e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97eec557-775f-542f-ba39-f15c6d84442f", + "purl": "pkg:maven/io.quarkus/quarkus-vertx" + }, + "version": { + "uuid": "e7343811-020f-5b12-943e-8cb34cdaa63e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5b2e399-8783-4c82-bf88-c922daeff8d4", + "name": "quarkus-reactive-mssql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d83c7999-1f0b-5dfc-9013-68e0db3accc5", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "98909be2-ed23-5db6-b364-6eeeda380e57", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment" + }, + "version": { + "uuid": "7dcd7aae-6975-5ac1-80d5-c20e95d4b699", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cc633ec-b6ac-452d-b4c5-d3cb497c88ea", + "name": "quarkus-micrometer-registry-prometheus-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1532096-16d8-5f77-b992-6a8281551132", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b077a81-e987-595f-885a-8c0a2e5a2cb4", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment" + }, + "version": { + "uuid": "358086a9-a452-5cca-a9af-71d39039f097", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a15d46a-bb11-40b5-8320-24670429d36a", + "name": "quarkus-resteasy-reactive-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee333e07-55af-595b-b0ce-4ea31785a8e3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b3468b6-cba7-590f-91ea-e408afcf66a5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment" + }, + "version": { + "uuid": "1825399a-e96e-5c0d-8573-4789961cc988", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-912eb1f1-f103-4b17-bc87-0d597056e584", + "name": "quarkus-logging-json", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ffc7fa3-6fba-51c8-a81a-ef4f7c4fd2a6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b735f2f-6ac1-5323-94d0-db693fd230e6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json" + }, + "version": { + "uuid": "fd07d24e-1029-5de1-a3bf-6b270a5139a5", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e70cf4f4-c7a5-49d0-9efd-96173cd3d73c", + "name": "quarkus-container-image-util", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aaf4b651-c295-57d5-a024-8b83a4b165f5", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bca9925-dedb-5efd-9a91-2e84c276f60a", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util" + }, + "version": { + "uuid": "207a230a-12a6-5c63-822a-278e66616c3b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9aa8f03-f9c7-43a3-803a-bec9ed624ab5", + "name": "quarkus-container-image-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "86731ecb-63a2-571e-b9c5-f5cebdc88a2e", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bdb7289-f52b-51f4-86dc-d038b99795d0", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment" + }, + "version": { + "uuid": "c76b5491-ca1a-5835-b587-10a74f11e531", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b214ec95-bc6f-4aa4-bf20-555f320034d8", + "name": "quarkus-resteasy-reactive-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3617f8da-e4f2-502b-b5a3-88939f7f4a42", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c14c788-bf52-596e-9734-779af6967284", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment" + }, + "version": { + "uuid": "65d504ee-537c-5c0d-8be6-d8930138d3d4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d557514-5b60-4186-a560-c2d513993881", + "name": "quarkus-resteasy-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f2787103-d68b-50bc-a837-c99cdd1c2879", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c3864c6-f91f-51f3-9db6-f70304b7425e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment" + }, + "version": { + "uuid": "adc6fdb3-e783-562c-ba53-a01772beb6af", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21fd301e-8966-4ffa-a7af-e4f639430f55", + "name": "quarkus-kubernetes-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca59ae9-378c-54c2-8924-44c4178ed253", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c66fb58-da6c-5c32-ac44-20a02871050b", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config" + }, + "version": { + "uuid": "6d6010bf-e5bb-5d4a-b523-a4fd21600186", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22f7d732-1f1d-44f3-bb4b-99d1b3c08a2f", + "name": "quarkus-spring-scheduled", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dcbc748a-5278-52b6-a9ea-6d059857fe3a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c924777-a53a-5e47-a978-e4b7b7f0372e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled" + }, + "version": { + "uuid": "a6245182-ff1c-56fb-a548-0e6c98ab1f4f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f4f85f7-1eff-4487-869a-28717ad63a00", + "name": "quarkus-devtools-message-writer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c3089677-7ed5-5e80-bcb0-7c9bf3d206ff", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9df043cd-9411-5a0c-b890-0bb8f486f239", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer" + }, + "version": { + "uuid": "9ca065a0-36ee-5213-b715-cdbbf893562c", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-014069d6-89c8-4277-aac0-6963bd5005a7", + "name": "quarkus-arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac9b931f-aa73-559e-83bf-3ca2a91950c8", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e4c3064-2c18-528d-aa07-701eea978318", + "purl": "pkg:maven/io.quarkus/quarkus-arc" + }, + "version": { + "uuid": "3b13dd42-42a6-58bf-afc9-353894a765a7", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dba054e-c67f-4ecc-b9f9-28278f946f46", + "name": "quarkus-smallrye-jwt-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "72b8bc46-3c8d-5107-a96f-bb334d88e484", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e64c5b0-7983-571a-8b07-1343eb6c07a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment" + }, + "version": { + "uuid": "da1597a1-9955-5cea-84e6-9e77a75d77c1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6634e80c-0a68-4852-8ed8-6f1412906dc1", + "name": "quarkus-micrometer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8149cb27-43eb-530d-a5c3-9862d8751717", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ec07e2c-785f-51f0-a277-07119eb3c876", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment" + }, + "version": { + "uuid": "077f4245-969c-5509-9850-57b828d5a874", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3af81bab-d8fd-47aa-b86f-c08d77bfb53d", + "name": "quarkus-smallrye-reactive-messaging-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5e6f667e-1bd1-5c85-bad1-52f5435657ab", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9eeb7ed8-013c-55cf-a68c-22ff0aea137b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment" + }, + "version": { + "uuid": "68913a3c-f609-531b-81ef-7f640e828566", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7da82dc2-dc81-4112-a044-6ac0dc771cfd", + "name": "quarkus-avro", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4093e8d1-c6b1-56b6-a26c-914a596ac177", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a21b936d-f87a-5868-bf25-c2da931fc246", + "purl": "pkg:maven/io.quarkus/quarkus-avro" + }, + "version": { + "uuid": "817d4f59-f970-5273-8cdd-6bec155c197f", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc1a9190-6b70-4834-8e0e-48b74fd172a1", + "name": "quarkus-jdbc-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0875f742-36df-5828-96c9-af456be678e7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2aa172b-411e-5444-8b2e-d42cb4415f8b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql" + }, + "version": { + "uuid": "a6c0b74c-5619-537b-98a5-97f7772723fe", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e53806d0-e917-4ba5-8c09-c5325e4e4a29", + "name": "quarkus-scheduler-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7daf0177-7c44-5ce2-abdd-c10da99f4cab", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2cafc28-0a55-5463-9fa7-8d02dc70391f", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment" + }, + "version": { + "uuid": "556b676f-f02f-595e-a33e-ce3e19b828a6", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c3625f7-cede-42f6-941f-2cadd1dd02ed", + "name": "quarkus-smallrye-health-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1ac15027-2f56-56e9-854b-6c4f2a962b62", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44bef55-7920-56ab-8345-d3f36424051b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi" + }, + "version": { + "uuid": "ffe857ff-5085-5e3d-9620-296c47d47956", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d368d8b-0b86-4df5-a0e7-82382f49f40b", + "name": "quarkus-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b7ee19f-b6cd-5170-8b2f-c2d8054a2d52", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a462f106-9e7e-551f-ae30-9c385ea9c469", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common" + }, + "version": { + "uuid": "bc5e3e5a-9007-5fea-84f7-32d5c220be54", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a1956e07-7ad1-414e-bee0-f0332544dde1", + "name": "quarkus-jdbc-oracle-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "74773f81-2b44-57ef-8cb9-640f3773974d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a46c9370-742a-5834-aeca-78315f0cef6e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment" + }, + "version": { + "uuid": "e68f7c7c-ae7d-506e-9c19-8288b87110b1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63df3915-1b7c-4e1c-8711-81404b9c3882", + "name": "quarkus-bootstrap-maven-resolver", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87748030-57fa-5eb1-8949-271458c4eb89", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a4d204ab-0029-5780-8b93-4988d8b6f602", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver" + }, + "version": { + "uuid": "245b37ef-554e-59b2-ae47-f62ed4cc66ee", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-891df0b5-9db2-489c-8a78-8988e576f238", + "name": "quarkus-mutiny", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88ee5c2b-40b3-503d-8000-24a7f6490dba", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a50c1576-98e5-5270-bee9-03db1bc4e63d", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny" + }, + "version": { + "uuid": "558092c3-cec1-549d-80a7-1ce75c7c8a2b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ee77a41-e8a7-4b5c-b576-f9125b138d84", + "name": "resteasy-reactive-common-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c16d9da6-2b73-513c-94d0-f952e66b9167", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a517a429-c199-5768-a449-b12f40024453", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor" + }, + "version": { + "uuid": "6b4684eb-705f-54ef-b04a-f5087b69838c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0eb5efa-d271-4c76-a518-d8248b2c6bf6", + "name": "quarkus-spring-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "515b624b-e7a8-5890-afad-ad61efc2de64", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a56c5039-7863-50d3-a09c-2a13355cf17d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache" + }, + "version": { + "uuid": "d2ecb6ae-29f1-5a86-93fc-0f072dbbc07c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c769adc5-011d-47d5-bc2a-e58edd9ecb76", + "name": "quarkus-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5ae7faa-1491-5cc9-b011-e86818db6e5f", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5b81d9a-cdea-5e75-bc2c-943d256d3a9d", + "purl": "pkg:maven/io.quarkus/quarkus-qute" + }, + "version": { + "uuid": "289de4a4-d62d-57ff-8cf1-7eeec2b4b2d0", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-008baaa8-8056-48c3-b019-24a82b3a4bf1", + "name": "quarkus-smallrye-metrics", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd26dc77-054e-502c-bc44-3c6b80e74fad", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c9830d-7f73-5389-9dba-e9cb66ba91d2", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics" + }, + "version": { + "uuid": "2a37afdd-d720-5891-b85e-ca69d6d9c46f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98ddc554-a57b-4498-b1b2-b0b64e276ede", + "name": "quarkus-smallrye-opentracing", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a3ba153b-e142-52ff-8678-6a07343b1840", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5d3be76-744f-5808-ae51-cd7152c10edb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing" + }, + "version": { + "uuid": "0483a86b-4be2-5e41-9ab8-9481363bdc29", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f451c0cb-ec89-4a82-8f9a-7800470d831c", + "name": "quarkus-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a6fda76-aba0-5f9a-8eec-962e34658d62", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5f50241-7b05-58ec-a676-5c7f98134e67", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment" + }, + "version": { + "uuid": "0620bcbf-dcf9-5a3f-8a2e-ada6a9131612", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec4b24cb-1c51-4692-a5ab-b5d57ed62005", + "name": "quarkus-resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e2882ee-e8f2-5caa-bf21-d228086703e0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a63eacd6-584c-5dd6-ad64-daa1377f4af0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson" + }, + "version": { + "uuid": "fc9dbe74-fa58-5478-9216-30891383f491", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ef03e2c-bb4a-49bc-888a-18cc01d830e8", + "name": "resteasy-reactive-common-types", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da8218aa-1bed-5788-82a1-3d0cbe251c66", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7006e0d-50f6-5e50-a334-097abe32ac60", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types" + }, + "version": { + "uuid": "7d9453dd-b7f7-5648-8eed-6504c777dd0a", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad24d95c-698b-43c8-a36b-57e68ac1cba5", + "name": "quarkus-devservices-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "669552ab-82ce-5109-b276-ed2b71b37951", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7071bc7-2ab2-573b-998d-fbc29756eb93", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql" + }, + "version": { + "uuid": "907db670-f9ba-52ac-b8e0-106b7b21b2c3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29c17706-1d5a-40ae-8498-087c7932c404", + "name": "quarkus-smallrye-metrics-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6fe294e9-f209-5483-b98a-9c9308a9ab2c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a91b7192-9283-5f97-805b-321b3349c545", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment" + }, + "version": { + "uuid": "02a8a9ea-afec-50e7-8afd-8c38bdc90381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfa97a5d-0a3a-422c-b533-495986937ab0", + "name": "quarkus-websockets-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8718bc4b-91f4-58b8-8ce2-a2b62a1582b3", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9b32bec-1535-58aa-bd9e-5e5b6ae73372", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment" + }, + "version": { + "uuid": "a9331cac-8dd6-5970-8ddf-e6dd187663cd", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15dbdcaa-d711-4c14-a539-6e75bfe91a59", + "name": "resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa9f9f22-7ec2-539b-a3e6-db40a84ad862", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab04c64f-975d-5573-a615-7d2bbdae0bfd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson" + }, + "version": { + "uuid": "bca9dc53-6971-5836-a00e-ce89d99e5a8c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc31759e-a95b-4640-9bbc-c2fe5954eb79", + "name": "quarkus-jaeger-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb08d125-73d6-5057-8e9b-f0a6f83359c4", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab7c597d-4fb3-5346-a38b-93a986f86aaf", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment" + }, + "version": { + "uuid": "25632245-49ed-5c4b-a915-663d53c8be7a", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d0668cf-8d30-47aa-9d14-63806309258d", + "name": "quarkus-jsonb-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88714dff-3c3d-5355-9918-6535fdca4139", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "abd436b3-604f-5064-822c-14b38771497a", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi" + }, + "version": { + "uuid": "d2084924-2339-59ae-8d71-668f4b37176c", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92f47d5-6d74-4dfa-9a03-1017989ea3ca", + "name": "quarkus-resteasy-multipart", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a7d46a6a-8561-510e-9e2b-d588b6ab56b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aca1f02c-7f73-5c80-997f-391190a548a7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart" + }, + "version": { + "uuid": "ec5f69d6-0b02-5a8b-8d24-501783dc5514", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6cb4a43a-380f-40b3-b196-54b1f46395f8", + "name": "quarkus-narayana-jta", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5313707f-d662-5b75-a796-642bda3b77c2", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad2dee77-d472-5cf1-96ef-83a361d66fed", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta" + }, + "version": { + "uuid": "d50fb45f-283b-53fa-872c-f7ca5f53d4fc", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90f322fe-ae88-4695-be77-8f60e6b06d3d", + "name": "quarkus-mailer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0688ee06-5888-5216-957c-94739a0f0869", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae4bf923-0e17-54f3-a6a2-e429010c9743", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment" + }, + "version": { + "uuid": "765cdd7c-5b8f-5793-8864-3a10c765c677", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a58c69b-be61-48cf-8ba2-af220e958f23", + "name": "quarkus-kubernetes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b230e2bb-3462-5899-880a-280f096d0e73", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae5704d8-da92-5d2c-9fad-37b7b9d8e2ce", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes" + }, + "version": { + "uuid": "ab28e575-2a40-56da-b59a-8025b69b36fb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f9e643e-0c95-4c7a-a496-a755dcfcdfac", + "name": "quarkus-oidc-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "13bfa14d-7e22-5378-aa7f-98ec6dc4df8f", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af73962a-e96b-5b6d-9bb4-7055d5005aaf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment" + }, + "version": { + "uuid": "ed12e1be-db8b-5daa-a559-ca91dcafd1d0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28e51f46-74c7-49cd-8c3d-d1a5afecfbae", + "name": "quarkus-hibernate-search-orm-elasticsearch", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d4f24d3-9d33-58e1-bcb2-fe6e3561f16b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b003df58-6a0b-5761-ad37-aebccd7ae80a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch" + }, + "version": { + "uuid": "2d9612fb-9177-5271-9aad-1d9576c124e0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4249d006-888b-4ecf-aefd-bbc1aa25bb4e", + "name": "netty-handler-proxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "623955d6-e466-5312-9ac7-54acab01333e", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b056e5c5-162b-59b4-85c7-2a2f4055db3b", + "purl": "pkg:maven/io.netty/netty-handler-proxy" + }, + "version": { + "uuid": "b20cfab0-0860-5b79-8785-2f81bf383389", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78450b9e-300f-4e78-85a1-35441de0ad66", + "name": "quarkus-transaction-annotations", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8f6fa2ef-e221-5e0e-bd6f-2eb291f0a872", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b094d2f2-26f5-589f-a9aa-b2293997787e", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations" + }, + "version": { + "uuid": "0085ea99-2b38-5c5a-a407-75af872e7141", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e97119c-0fde-45b4-9b9a-425ca2acdf3f", + "name": "quarkus-swagger-ui-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "57c5a24c-606b-5a93-9c2a-75781efc6465", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1937ef8-56bd-51d4-83a2-7c5cc5c2c2a1", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment" + }, + "version": { + "uuid": "60f441f3-d7d8-5024-b00c-7c1b8efbb077", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f466ccaa-7abe-47f7-aaee-babef544025f", + "name": "quarkus-resteasy-multipart-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ef86130-0f3f-52b5-b90b-ba8ca10a46a6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1e53941-21b4-5688-9d60-de6797c2450b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment" + }, + "version": { + "uuid": "33235e9f-a1d9-54bb-9cf1-2e20231f70f7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67cc2dc5-fee0-48ef-b6c0-7fbf34c8211a", + "name": "quarkus-rest-client-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45578196-ca80-55ee-9774-a4c44e749451", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b34fc052-8b75-5228-b4ea-29e2ab12bf46", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson" + }, + "version": { + "uuid": "75e92e4d-e142-5fcd-90bf-dbc83b51ee7b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5aa8685-839d-4a12-b7cb-1f413418ebf0", + "name": "quarkus-agroal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f894eaba-d07d-5744-9c29-25100d5c450f", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b50622f4-f7b2-5458-9c2e-9e22f1448f76", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment" + }, + "version": { + "uuid": "67eec0b0-0d30-55c5-a312-a6b94d94ab32", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-248daae5-2712-4d93-afb5-04001ed14f36", + "name": "quarkus-datasource-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3ed57da3-c579-518d-9a2a-8584fb119536", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b512e741-660a-5a85-829b-87e3449751ff", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi" + }, + "version": { + "uuid": "4cf989c2-7a4d-5e25-8384-e3c4748acafe", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97d3be1c-7f9f-4676-b32f-fe8c98e68b87", + "name": "quarkus-grpc-codegen", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cf95cbe5-417c-59e0-aa98-00bd2e5a4675", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b580173b-e9d4-53f1-9970-e0498e968f46", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen" + }, + "version": { + "uuid": "2f598641-f28c-52ee-87d2-436a9a32e2b7", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c1338d6-3b15-4d64-ab3e-a10c4fab864e", + "name": "quarkus-security-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4125770e-844a-5eed-aca7-f4154a21fef8", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7f7f1e8-25ad-529c-a456-c475ed534902", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi" + }, + "version": { + "uuid": "78b19386-0ab9-583b-9ace-3f99176c753b", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b406a7eb-2a55-4a47-8a6a-30859cd87319", + "name": "quarkus-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7df6f9b-ab20-5f55-b526-c007b3325b2a", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b8a536ff-e7ba-5ccc-a0e2-b59d6686167a", + "purl": "pkg:maven/io.quarkus/quarkus-cache" + }, + "version": { + "uuid": "1ac726da-4b50-5760-a8b5-f622f6ce8fc4", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f78207a2-0a6a-4972-8c81-2b0827135754", + "name": "quarkus-resteasy-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "73bf5c22-bb19-58e4-bf6f-a3ced74c9597", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba6ea902-3057-5e32-b4c4-564c667d5864", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi" + }, + "version": { + "uuid": "02ddde8b-12f0-5ca0-991c-a3f844a2a1dc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-abd5ee81-d6ec-4a56-92df-f2086ded8879", + "name": "quarkus-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "59daad81-458a-532e-8e4b-bac83b96abc6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bab686d6-fd7b-596e-a316-20c86f16b245", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment" + }, + "version": { + "uuid": "80b9e62d-9008-5d69-a5bb-cd0b03c8134d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83a64c36-23c6-4450-a8e9-ca5bb7e6177b", + "name": "quarkus-spring-boot-properties-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ecb7f2f-6e43-5fc4-962a-ed48dd1935e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc7db2c8-98df-5847-9ff0-b66674644633", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment" + }, + "version": { + "uuid": "92e2bbb5-a0c8-5c9f-ae43-781fb70ac666", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-811bdc6a-22a1-4e19-a700-86361456bcf1", + "name": "quarkus-extension-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f6a5013c-4047-59b3-9fea-882f7cdb0450", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc887a8b-fa8a-5674-a92b-ae516c054e8d", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor" + }, + "version": { + "uuid": "564602ff-daa0-51d7-b0a4-49b1959571b1", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b8ba8cf-d579-4811-abed-fbdca1363287", + "name": "quarkus-opentelemetry-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9d4415cb-eb17-5b29-ad16-f202f3d06a14", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bd6e8f49-b1fc-52b5-bca1-63c2f5bc8881", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment" + }, + "version": { + "uuid": "42705cfa-6638-5dd6-a0a1-ec273e7b3bb7", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bfc6b7bf-551b-41db-ac76-3858e44c4950", + "name": "quarkus-rest-client-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88a8026c-0e3d-5889-9692-0dd368c00273", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "beb64354-4f34-57f5-adeb-55dc35b8252f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson" + }, + "version": { + "uuid": "b2e7d260-aa64-5011-8abe-d5b5f3c550b8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb0e264c-0781-438c-82d1-6a3f4adafe74", + "name": "quarkus-hibernate-validator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ffca768-1aac-5286-b6b9-0345aa49c08c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf7829a4-4d05-5542-b6cd-d3858f454b96", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator" + }, + "version": { + "uuid": "7d28776d-c068-547d-8aa3-8dea9c4e2e41", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127304a6-d01f-4f8a-8685-bb175bc628ae", + "name": "quarkus-rest-client-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb1a455a-f6ba-554d-af23-34fab2c30ed5", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf90e9c9-dbdb-5812-a939-846823cdde5c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment" + }, + "version": { + "uuid": "ccd1e9e5-e77c-5942-9195-e89f29048b26", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46b5ba29-c5e1-422c-bd89-a4cd7d32918f", + "name": "quarkus-scheduler-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f8a3d3a1-a04a-56e3-b5ec-7c0eeb92be1b", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c179b651-c10e-5827-9dcc-07c24d6963ca", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api" + }, + "version": { + "uuid": "aebae22b-7fad-5724-aadf-f7e93ca21312", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e15a6ad-2737-46e0-bd65-bcd52e336e09", + "name": "quarkus-jackson-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "117ffc0d-d066-502d-9ab0-db9a87e5bf16", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c1b86c4d-7b22-56ee-afb4-bd47394447ed", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi" + }, + "version": { + "uuid": "e3c590c3-a642-5a25-92f5-c74633e19f7f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b30ef8d-3d57-4f2a-84d5-3792712a5c92", + "name": "quarkus-reactive-pg-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae0a9100-69a5-5795-953a-06a41f1f2cbc", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c237b650-b89b-5888-aeb1-9fedef81f41b", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client" + }, + "version": { + "uuid": "b89903ba-462e-5340-9102-6f5ec3b28bf6", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ed8f6a1-0abe-45b3-95eb-4d10f4c549ad", + "name": "resteasy-reactive-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "51fe20ab-f04d-5a95-b6e4-b677b7fa4ee8", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c24bdc76-cbee-5602-8925-cb320cb67033", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client" + }, + "version": { + "uuid": "bb7b4eb4-8570-5880-a9fd-5bfbcb470654", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5efbc662-6a25-48e1-a1f5-82695b1637e7", + "name": "quarkus-infinispan-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e7e676-1070-5342-9efb-b0f15e12e1c3", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c304a290-381b-5ec7-9c62-dae6bdfc4712", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment" + }, + "version": { + "uuid": "02009d12-be92-56e0-bb8a-c7103317b927", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a088b32e-bcd3-4454-92ff-7304dde872b9", + "name": "quarkus-rest-client-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7da94023-a664-5603-b887-6146d1d8a79a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c3792597-babb-5cdf-be19-edf43e05de75", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment" + }, + "version": { + "uuid": "98d5f791-db47-5589-8faf-17eb6bc9e0f3", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c4d89d8-2cd3-44dc-a7db-667df14518a5", + "name": "quarkus-security-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c48073a9-9245-5fd9-a574-b009fafc5115", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c4600f25-a848-5551-98b3-72a94b7d8856", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi" + }, + "version": { + "uuid": "5a692d37-61f1-52a8-9520-2d543e0c5c31", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d08c424a-7e73-4b95-8d82-1147e41cec83", + "name": "quarkus-class-change-agent", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "201e7f0e-c1a1-56cd-84fa-640545076a13", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c57fc5d6-3a8c-528a-baa1-3891ef904b8f", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent" + }, + "version": { + "uuid": "fe5596ef-7151-5682-9fdd-4c0dd78b707d", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c542ebd4-13cc-4af1-ad60-63ca9441b2d4", + "name": "quarkus-spring-web", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "91d52121-2e68-50f0-b83c-6017c3eb60d1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c618deec-c4c6-527f-aca7-3de7bfec0062", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web" + }, + "version": { + "uuid": "b3fc4345-ddf4-576d-9f53-1f4dde44b98e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5791f9bf-f838-4ba2-a1ad-39aa09c0152b", + "name": "quarkus-hal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "21b1b624-f6ca-5b26-875a-8ed46a9c0ec0", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6298040-511d-513b-b3c9-2e11972101f9", + "purl": "pkg:maven/io.quarkus/quarkus-hal" + }, + "version": { + "uuid": "ed41b090-b79d-52e0-9570-30368d3070fb", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38c8759d-36e5-4db3-b309-afd4ed74cb72", + "name": "quarkus-mutiny-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4b8c9126-6fd4-54c5-8e9b-0f56fb13432b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c62b7ee3-361d-54ab-9d31-52cfc86baa59", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment" + }, + "version": { + "uuid": "c4512ecd-bd30-5d5e-963c-d75c38c4e75e", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-608cf97a-3031-476d-b2bf-2645ab517851", + "name": "quarkus-grpc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0fc58592-7b41-53b3-810b-c02a9e213a8c", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c7c15f09-74a1-5c81-aa71-0af88c0e48fb", + "purl": "pkg:maven/io.quarkus/quarkus-grpc" + }, + "version": { + "uuid": "0584ccb5-f648-5cfc-82f1-146e452a4bee", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95be5c33-d6f8-4ed4-92f2-9baedb8a154a", + "name": "quarkus-oidc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a95f54c6-930e-560c-a51c-4d02b4739661", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8042e2e-4275-51ce-921a-1dcae7fc6761", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment" + }, + "version": { + "uuid": "3e0b9512-38c9-5de7-a662-39d3f36a3723", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e95a024-ee66-43b9-835b-2d11d5b493c0", + "name": "quarkus-resteasy-reactive-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dc8315da-46e5-536c-a642-07e59fad8155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c81b2d5d-9c8f-5286-851b-fec430be2d1d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment" + }, + "version": { + "uuid": "990e83d9-051c-5dad-916a-fead476aa663", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-093f8d34-1829-444e-b121-fd46d2e5a21d", + "name": "quarkus-reactive-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "454fde09-ab4c-527f-a07a-3c391e5c8050", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cab0d335-9258-5745-be2b-ae02849cccca", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource" + }, + "version": { + "uuid": "b6744a9f-1826-5338-86a3-24a219de8a6c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8f3d595-7c07-4985-aa1b-7f6ae8ecf957", + "name": "quarkus-scheduler-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "feeff538-4da3-5c93-a9e9-4837e2ab9089", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cc20cca2-8727-5b76-8462-adb1a4faa9bf", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin" + }, + "version": { + "uuid": "2483cc67-fa54-5dfc-8893-11ec9d90cd42", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-602547e7-1ca6-4ccd-aa95-19219c7593a6", + "name": "netty-codec-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "fac6032a-a3fd-56f3-922e-65a6bda2358d", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ccec22eb-096f-5a75-b202-76243cef0248", + "purl": "pkg:maven/io.netty/netty-codec-dns" + }, + "version": { + "uuid": "c2c003af-376a-554f-b25b-40daaed23825", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10b8f85c-d5bf-4887-af22-1a42526378ef", + "name": "quarkus-resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "997392c0-a505-53c2-b7a5-74bcc72276f6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cdc79fdd-3e5e-5215-809b-85fc11bf9608", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common" + }, + "version": { + "uuid": "9a4d1bdf-74ad-542e-a639-3302f7ba899d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4fb3aa8-cc92-473b-8c65-dbd6ee2936a8", + "name": "quarkus-spring-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "807d6824-d29f-5abe-90bc-f8a69a3d96c2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ceea7fb8-e1de-57d7-bede-60be4dca1173", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment" + }, + "version": { + "uuid": "e4de23fd-6bce-59ed-9731-d52c7508d17a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83341b2f-4f40-4aae-aab5-bf4bc15a2465", + "name": "quarkus-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "48382e1d-9bb2-5d55-bf16-5b2a0a8bd1b6", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf328f3f-3eb4-5533-83cf-b5a3e4bedc43", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment" + }, + "version": { + "uuid": "529aecde-30c7-56d4-acc7-3c58957e57aa", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f8138770-4cf7-48e9-b95a-5c6864329306", + "name": "arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba957310-890b-538d-b97b-c05f2322bc0d", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d21608ed-1ee4-58c1-99a8-413afa5f8ccf", + "purl": "pkg:maven/io.quarkus.arc/arc" + }, + "version": { + "uuid": "c819ccd9-8801-5468-a2c6-9a61b33066e3", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e955d9b8-7ace-4a5f-8d82-119b7dd30d1f", + "name": "quarkus-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e67580-8cb6-52f2-ad55-392b99d3f2ae", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2df7e32-548d-52f0-b31d-61463b78ce90", + "purl": "pkg:maven/io.quarkus/quarkus-core" + }, + "version": { + "uuid": "7389656f-66f0-51d7-b6a7-455db9a42336", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-430d898a-9b8b-456c-9151-e2b4e0783056", + "name": "netty-handler", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "48f562d1-fdfd-59b7-bd23-861503f31e5d", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3f4c0dd-ef9c-54fe-b6dd-b37380718a57", + "purl": "pkg:maven/io.netty/netty-handler" + }, + "version": { + "uuid": "a6382423-1382-51d7-bcd6-cfb2eab7d764", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dca658aa-d4db-434b-b895-d5e09ddba8fb", + "name": "resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4bcb077e-f913-54ce-88c1-67f1973627d9", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d4c55081-7168-52ed-a06d-d0ab9e759c41", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb" + }, + "version": { + "uuid": "21f067d5-a339-56ae-b081-0c3e6910a773", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e89a745-9815-415c-a8fc-b5497276f778", + "name": "quarkus-resteasy-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32359031-6957-5c22-9f49-489e923fe155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d5c854aa-d090-5a8b-bfbf-f11937c47d10", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment" + }, + "version": { + "uuid": "82696dd7-340b-5ca9-b6a7-4ab6c465f5ba", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada002be-08e4-435f-bf50-8e6d55f9b77c", + "name": "quarkus-smallrye-opentracing-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "856c4344-2286-5319-b39b-69f20904dbf1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d60f7e69-97cf-598f-8d1b-fcb93ab64dbd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment" + }, + "version": { + "uuid": "e764743d-ab22-517b-b774-9034f3c1c8a7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9796fe6-4b5a-4b7e-8653-cb95a1ff838b", + "name": "quarkus-kubernetes-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d5813eb-0754-5eb5-a9fd-fcd36abae683", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7a5f7a6-29fa-5062-92bd-ab610b82cfcf", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi" + }, + "version": { + "uuid": "d01383c9-fc4a-58ee-8989-443e28f3bf14", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85f7155f-dab6-4acf-bd55-edede3d537bc", + "name": "quarkus-funqy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "25538422-f163-5615-9733-f625dfa931b9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea70cc-1d71-5a39-b561-9849b7d6028b", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common" + }, + "version": { + "uuid": "c82d962b-6c27-5358-80ad-85acb0c9485e", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89daeb0b-4b00-4a9a-8023-4493375007b6", + "name": "quarkus-kafka-streams", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fba76d19-f75f-5ec3-8872-8fda2fc9c0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d86b5909-6339-5e49-866b-959bc438d0d1", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams" + }, + "version": { + "uuid": "88d4c728-e472-5778-a2a9-41789dd19093", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ab92847-6833-4cbc-889e-9e3b642f34a7", + "name": "resteasy-reactive-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c2f71c2-f2dc-5fb0-a106-f1bc68152e35", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d87835e6-dacd-5973-a64c-cafa75b464bc", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx" + }, + "version": { + "uuid": "0d0a31c9-bb9e-5d9a-889d-c4f0df9721d3", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-650b38c4-a6dd-4548-b1e3-e51ee70fe873", + "name": "quarkus-infinispan-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0279c963-bcb0-50c7-a934-4760a3c662f8", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d880a9de-1fd0-515b-889e-cb5b9c41f88c", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client" + }, + "version": { + "uuid": "62046603-515f-5349-bcc2-3a7f3d663547", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1b1b481-bffc-4251-b88c-8f7bb1a7ebbb", + "name": "quarkus-rest-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14785047-21c1-54c4-8f96-94ea0a9b2c1c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8dba6cf-5bc5-5e20-b593-59981049c708", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment" + }, + "version": { + "uuid": "14fc877f-ebd6-5108-a32a-6e04dc3b475f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-690d153a-efba-4ef6-b4aa-2d5cae094615", + "name": "qute-generator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66171e88-dfcf-5b5a-a0fe-3a6e747d49a6", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d9271688-db97-54a8-8722-f3bccd40680e", + "purl": "pkg:maven/io.quarkus.qute/qute-generator" + }, + "version": { + "uuid": "383c0104-7806-5449-ac08-f2f27401671a", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be426b66-efcf-47c2-9754-d2ebfd69f56e", + "name": "quarkus-grpc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b14c7b20-9b29-5c4a-9b84-bb0f66bfdaae", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "daf1f007-48ad-5a93-a9d0-dc0c4047d945", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common" + }, + "version": { + "uuid": "bbb398d7-242b-52fb-982b-75dc1d8e8517", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-966819c8-4b85-4652-bc70-741853a3bea1", + "name": "quarkus-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a303325-e379-565d-b5cb-14b8ac2fda0b", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db42d908-5b79-5b91-8ba6-fa7fdd7ac877", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment" + }, + "version": { + "uuid": "41885b45-cb19-55fa-a9ab-2dda632044f1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9605d0d9-87de-4b9b-b587-54e284668fed", + "name": "quarkus-smallrye-fault-tolerance", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c8781235-c16b-5e9f-b94f-95aeec466dc8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db56d4dc-1396-5cd2-8c0e-66be2437859d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance" + }, + "version": { + "uuid": "1412d8f8-dfb9-50ff-8efd-6f0ac64ecad7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-013f6933-003d-4ef5-a401-24c420f56ff1", + "name": "quarkus-elytron-security-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f616fe4a-a0bd-590f-982b-1bb95971314b", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc70fd20-11e1-53a5-b48d-8bae6254ee82", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common" + }, + "version": { + "uuid": "74c5e920-6550-51f1-b0b1-99939e267379", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59a180d8-feee-48d2-9aaf-a6513e310bd2", + "name": "quarkus-vertx-latebound-mdc-provider", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ef5ab1b4-46e1-5339-81ea-5e55d7d0321b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc91c9d5-b0f4-5297-851c-5a472cd087f8", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider" + }, + "version": { + "uuid": "e7c3c379-25a6-5094-ac3b-7b874a4ac817", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2062c257-0917-4fd1-bd7c-e5a210910f9e", + "name": "quarkus-kubernetes-client-internal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "169e4ab2-eff5-5d1d-a88b-52bc508ec8a7", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ddf5ef6a-eab6-5e2a-8c6b-6f45e0a6a8fd", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal" + }, + "version": { + "uuid": "7f390824-05d2-54b5-ba89-4f8bd977f018", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e4a901e-0b68-419e-8212-a227cd8e71ff", + "name": "quarkus-jsonp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b03f382a-9cb6-549a-8745-dcd1187bfc67", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "df4d2555-8aeb-5ab2-93a5-4a36ddbb10e1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp" + }, + "version": { + "uuid": "ee805429-45cb-5eac-92f9-8e11f4a66528", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80bc7637-1960-4c68-90ca-4dc28fc8415e", + "name": "quarkus-config-yaml", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d5c1f5f4-03a4-5d77-8dab-fc1b0e4bec04", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0cfa164-e24f-5b71-a915-b4858839cdf9", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml" + }, + "version": { + "uuid": "d9709101-564f-5048-b0f6-37eda91a58cc", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bbd4631-877a-4cd1-9e7c-a6b3aa1f084a", + "name": "quarkus-smallrye-graphql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "79739ec7-e63b-5a7d-9525-e351fdf1169c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e112d705-5c6c-5861-82b9-5ff3c03e9f35", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql" + }, + "version": { + "uuid": "7f6e2d54-2fe3-5622-a494-53d0a6085615", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f44cd4be-ff38-4113-8870-427088038534", + "name": "resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9034b075-cf42-5792-834e-c29cd9d74da6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2b0226e-c82f-516a-8704-64d8c0bc3f53", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common" + }, + "version": { + "uuid": "08c021d3-e5c2-5f14-838a-c52f59526abd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a28718a-6654-4edb-b6e1-ff9de003532f", + "name": "quarkus-resteasy-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b72385f-2a52-5862-ae6f-d44b0b864115", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2cbbd8b-1589-5bac-8c83-0f1c8e9a4945", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment" + }, + "version": { + "uuid": "0f000bd1-dc2f-55f2-9603-ad98e863f030", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62974fba-c40c-43e3-ae89-6c661116f1e0", + "name": "quarkus-funqy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "586516a1-bae6-59f3-883c-d5161830f3a9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b726f7-1ffc-544c-b0f5-cc2814ebc939", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment" + }, + "version": { + "uuid": "3bdc2633-4b46-5918-a015-a873309d8238", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b2e4ff2-32ef-4e07-b427-bb0d226b8679", + "name": "quarkus-arc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c85f974c-55ff-5023-ad95-e323ef574b20", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3f03d71-d00e-52f7-a235-38ba3c986354", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment" + }, + "version": { + "uuid": "58ff6c08-889c-52e0-94b6-0e9c83590b4e", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27573c70-8e12-47bb-b75d-b8ed41d7e89f", + "name": "quarkus-grpc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3848a13f-d5b0-5eae-81e0-e2a7a088bce5", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e45ada50-e9b6-54dc-82c8-e8b9225aa855", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment" + }, + "version": { + "uuid": "bf3f57ee-649c-5c63-9910-08a9ac7d15dd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cc097e7-0dfe-422d-a8c7-ced13be42e49", + "name": "quarkus-resteasy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1a7817fa-dbdc-52b5-ae15-9082a79a2415", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e60775c8-fe8f-5978-8449-2f016a9b0c4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment" + }, + "version": { + "uuid": "cddcd2eb-6050-50fc-a751-2594beb8dfa4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b87fed48-0e65-4836-8abc-4b61e726ff18", + "name": "quarkus-resteasy-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee5d61e3-0323-53c2-ac84-1ef590b22c04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e669abd1-f82b-5919-8ac1-aece2f195ea3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb" + }, + "version": { + "uuid": "665eadea-578a-54ff-9fa0-c0030854bb1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfec06df-816e-48d2-a5a4-227d3f2319bd", + "name": "quarkus-mailer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "95d0c540-d850-51d9-990c-7cce57293931", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e78e6247-5399-599c-9ba9-1e640160036f", + "purl": "pkg:maven/io.quarkus/quarkus-mailer" + }, + "version": { + "uuid": "be287883-1030-5b26-8df5-ee3d2cea0f1a", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d475896-ed03-40a8-9566-10ce151f6a58", + "name": "quarkus-jacoco-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6b7ad12-44ba-5448-abce-a4611f9c72f8", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7ac0bdb-68a4-5eba-97f6-0e73eaaaf17c", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment" + }, + "version": { + "uuid": "b50dbcc0-2d0d-54b6-8449-06ce9eef1447", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbb77795-a272-4d8b-b96c-962a725dff02", + "name": "quarkus-grpc-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e58951cd-7e8e-5cd9-b060-a5b55d076ce2", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e80c7cbf-a286-52b1-ac4d-514b834ee826", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api" + }, + "version": { + "uuid": "b1487a52-d207-5661-ba97-e054fd1f5e3e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aab96740-45e5-43f2-8390-96913f4221ff", + "name": "quarkus-panache-hibernate-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4e4d3a7-0ff0-518e-9b10-4deb8e88f0ce", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e811932b-e98f-5c7b-a767-0d738dd995a4", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment" + }, + "version": { + "uuid": "f913b684-02c6-5b50-9b43-fed9fa87c765", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86d9d71d-1c84-4148-a1ce-ea15349aba4d", + "name": "quarkus-vertx-http", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "528a575d-5ed9-5aaa-9882-14701d64b51e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e883632e-4401-5912-a5c7-de4c7af2ae01", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http" + }, + "version": { + "uuid": "c040304d-22b4-5d85-9b32-55ae9bfffa52", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53a65c3c-f086-458e-832b-69c04378d7c8", + "name": "quarkus-devservices-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c092f342-19b5-5cea-ba43-14cb48a07962", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8adee06-4843-5d22-bf57-92f0cba83251", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb" + }, + "version": { + "uuid": "74a34ae2-79a7-5516-9180-79bd64df9b4e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b191a999-9c96-43ca-b4dd-fb4b95f4566b", + "name": "quarkus-websockets-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e67eca41-b7a7-5a1d-a9e8-12c9b49c8861", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eafd7de3-5568-59e0-bcf4-770c03a8cabe", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client" + }, + "version": { + "uuid": "f4b66788-0c3f-5fa1-8246-c76346a9d1c7", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6ecbbd9-31bf-46fd-afda-8082120f5260", + "name": "quarkus-bom", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "269366bb-0d1a-5058-a752-d2cc434431c6", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=pom", + "base": { + "uuid": "eb87eb3b-0dbf-5f1b-9198-94f453fd74f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom" + }, + "version": { + "uuid": "c0201f09-3d0a-5739-9cf3-8ad19dd177f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "pom" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1eb4772a-bf1d-4f54-9078-adb6f5de182a", + "name": "quarkus-jaxrs-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8e4868f4-f769-5997-a539-9a39cfd17982", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebcd4297-30fe-57fb-a57e-802840b432bc", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive" + }, + "version": { + "uuid": "53c02973-c2de-5a01-9973-2410e071c50d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-77e38c05-e480-494e-b2cd-d47343c7a753", + "name": "quarkus-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "62015e78-a111-5b6e-8ed0-6b21e2c819b9", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec1b3715-dc3b-5d58-b839-f5c1ea208fc7", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment" + }, + "version": { + "uuid": "395d0c26-cfa7-58a7-bd0c-5a31f12a9f5e", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8a9a75-ccf4-4bd0-9ec0-c2b947602e42", + "name": "quarkus-jdbc-mssql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d6241b2e-c46d-561c-b8d8-244f7df7e60e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed09daa8-fe60-5150-9bc3-80a922275e74", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment" + }, + "version": { + "uuid": "a9e43bab-f27b-5a8a-b905-acdf1e011ec9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fc0c2c9-cb88-4e61-9421-785575d71b94", + "name": "quarkus-elasticsearch-rest-client-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "68d3db42-c217-5cfa-b90f-de03550b974d", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed33883e-cc22-53fd-80a0-36888b8f605e", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment" + }, + "version": { + "uuid": "6b290289-1fd6-5b72-918a-74ddf3a67400", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b1fb757-698b-451a-988e-4981f06da7d0", + "name": "quarkus-hibernate-orm-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "96067568-b359-56b1-85df-4cf4d5ddc4f1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "edd63df2-6b50-51cd-9709-0a231c19f89a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment" + }, + "version": { + "uuid": "590f04c1-a30d-594c-ab0f-6f0a2367da28", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43bb5522-f8bf-424c-a355-159f43444802", + "name": "quarkus-hibernate-orm-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "384fb55f-3690-59c3-9712-dcbe3d478837", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ee8503c7-2ea8-5f6c-87a4-573ee712d1c0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment" + }, + "version": { + "uuid": "0d5d0124-c32d-58b8-89be-cead6a776f64", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad6306f7-6154-4775-8ea8-f763bfe0f3d7", + "name": "quarkus-reactive-routes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fbb05629-88e5-5674-b504-76eb76a64cd2", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eebdff8b-0aab-58ab-ba5f-6b4c7aebda98", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes" + }, + "version": { + "uuid": "b8086ec8-1779-53d4-9039-adc82ff66861", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21db41a7-5d44-46b7-87fc-95f3417a784a", + "name": "netty-codec-http2", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "b5d0e298-efc7-55b5-a7dd-b78996689fb7", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef580dbe-9fdf-522f-93a7-aef4219fb71a", + "purl": "pkg:maven/io.netty/netty-codec-http2" + }, + "version": { + "uuid": "9accb509-993f-5f93-a36c-cf507582f098", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662fff21-daee-434b-8f55-a64e21b2e441", + "name": "quarkus-oidc-client-reactive-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45547554-2c80-528e-ac46-ca83133ec585", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef86f974-20cd-526c-b7f8-14fb80a1f084", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment" + }, + "version": { + "uuid": "72bcd38d-cf79-57a9-9f62-85c1f672ab05", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69393a69-98da-4426-b814-20f6ca44fea4", + "name": "quarkus-logging-json-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16af5276-7f3b-567d-88e1-189ddbc1b1ab", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0347c68-31d3-551b-b452-988c218428b2", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment" + }, + "version": { + "uuid": "26f32942-d724-5a0d-b072-3b44af40571b", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2a671aa-786d-4d70-a832-3e833dfeaad6", + "name": "quarkus-apache-httpclient", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f97f2fd1-b9fe-5285-8775-3b6f0acbb386", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c07707-2d3c-56be-a8a9-2c806e49d209", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient" + }, + "version": { + "uuid": "217278b8-5cd9-548e-a04b-2296557b3fd0", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c74fb5d-4161-429a-aafe-9d768ddd7163", + "name": "quarkus-websockets-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36858a25-2eba-56a5-8877-8bd9f17c5dbb", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0d9ca44-ef29-5feb-a477-37859493bc9b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment" + }, + "version": { + "uuid": "621e668f-41fe-53a7-96f0-f986103dae3b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91d643af-450c-4c6a-80a9-d55a38eb7f71", + "name": "quarkus-credentials-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fec58798-c2d9-5308-86d8-994336dad58e", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0e1122e-d37e-5641-9427-59491383748c", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment" + }, + "version": { + "uuid": "59aa699c-bb4a-538e-adf4-441855b38fea", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0973486-3136-4c68-9275-92f6e6a39268", + "name": "quarkus-resteasy-reactive-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14d78abf-0845-5e04-bcda-a523fa5b1455", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0f0c6f1-d24f-5705-9e9a-fcf627a1d4c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb" + }, + "version": { + "uuid": "da82c5d0-b620-59eb-88c8-ab3cf62dc29f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56b7e34e-abe8-4180-8dbc-a0aeae6af3fb", + "name": "quarkus-rest-client-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1f120145-691e-5886-946b-cde974c59f96", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0fe896a-e8f2-5e61-b765-adf9f0526b91", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config" + }, + "version": { + "uuid": "bce8fbbd-4207-50e1-a76f-59b67ca59fc9", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eef8f7cd-876b-48bf-bb62-1d1bf799282f", + "name": "quarkus-reactive-mysql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f734ec00-f2b0-529a-91e2-94d3dd5875c1", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f121d3e1-6188-5288-8ac2-83ed471a08ce", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment" + }, + "version": { + "uuid": "79a25ffc-602c-5034-b55c-a32a8922b983", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95897968-1b5a-4cb0-9f28-1388a3119668", + "name": "quarkus-devtools-registry-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a93abe61-4511-5388-bc92-fcaa9be4bb38", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f1252251-456e-5f2f-a68d-0a0c513198bb", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client" + }, + "version": { + "uuid": "b926dee3-9b8e-51c4-9f86-d13d261e5c4f", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-591524a2-6096-4a68-8de6-fb3cf5d5affd", + "name": "quarkus-micrometer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e939d082-66a9-5fe0-b190-c098bfbd5612", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f14cc204-8f1b-5060-902e-a2e00aad23f2", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer" + }, + "version": { + "uuid": "cba221ec-b1cb-5dc9-b194-262ff36443ff", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-102b6d6b-905e-4229-bc15-3f118d26aec7", + "name": "quarkus-quartz", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "11648f8e-675f-51eb-aae3-3e40ad9b1178", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f29a31fa-e2dd-520b-b980-420fbee5326b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz" + }, + "version": { + "uuid": "60645d69-3a02-5e14-b927-319b8dd60ae6", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8a2feac-a9ac-4664-8e83-f2b1e3e2c8b7", + "name": "quarkus-resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "225cedf5-8a3d-571a-964e-addf20718734", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4ea9a18-592b-5dbd-9b7d-234c8e523512", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive" + }, + "version": { + "uuid": "901e6e40-6bc9-5bee-96cb-cd4ca571c98e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59710b04-2df6-469c-8b45-8cf0ff826175", + "name": "quarkus-vertx-http-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32c4828e-1191-585b-a481-1598d8da7815", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f556a5a6-1969-5992-ae52-1430aad891f9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi" + }, + "version": { + "uuid": "8af646d7-5a51-59fd-9328-791543cd1c5c", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20d3d91a-c402-48f6-88f8-1f8648b1e02f", + "name": "resteasy-reactive-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7b4b25b-c224-5795-9d79-ba5bf1f0c7c6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5a9b0f6-b7bf-5bfa-83cc-9de4c403dd64", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor" + }, + "version": { + "uuid": "9221c6e9-fe08-59d9-9301-9236ea906aaf", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b898f7d-3cb2-4ec4-af73-48d7e6f626f7", + "name": "quarkus-resteasy-reactive-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d568bc94-a6a6-5510-9e60-aef0df7e4e28", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f60a5134-41da-518d-9fef-337a58d15926", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment" + }, + "version": { + "uuid": "fee91d1e-e00f-5697-ad27-caa0844bf7e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ecb52933-aeae-473a-82f9-a1b9fab9b3fe", + "name": "quarkus-scheduler", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5f62b6b-706c-5db7-96cc-2f5666a05487", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f62c3c31-8cd0-5de0-ab91-a3afdb05d786", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler" + }, + "version": { + "uuid": "fec0f312-fb75-55ed-9a9f-3cd2372d7683", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1725bb8-81f0-4344-9d93-0f4ed4734455", + "name": "quarkus-mongodb-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd124370-245d-503c-b4a4-a7e755ae8cdd", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f702a7a5-4ce5-5073-a22a-407778c5931d", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment" + }, + "version": { + "uuid": "343bb041-791f-5dd6-9b9d-3374b78da85f", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46a56d3e-d55c-44c0-a6a1-e187f966b92e", + "name": "quarkus-caffeine", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b7dabb-49f5-5fe5-b33c-cfd3aaa60a1f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f79a6a97-7816-5abf-a159-c492616d357c", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine" + }, + "version": { + "uuid": "40e8fdfc-9e4f-5fd1-a546-8acab5fafa1d", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc7559fa-fcc9-4b10-a3fc-448510790327", + "name": "quarkus-hibernate-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ea927d5-5f2d-5538-ac45-a54f6d4e4513", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f81cfaf3-0ceb-54f0-9171-120e509fd7b7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive" + }, + "version": { + "uuid": "367d45c3-e5b7-5b50-9c7f-62ddbe600fbd", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5331ffbc-79e7-49a2-8c4a-221ab76a35ab", + "name": "quarkus-smallrye-jwt-build-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "992ce94e-a7f5-5272-b837-345ad0f503b9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f825cbd1-9668-55d4-94d7-3ddc9cbdf4a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment" + }, + "version": { + "uuid": "d686325c-4ae5-5f03-8bc6-3de81402452b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-789a4d1e-fce0-4bb3-aa33-d92514d6e206", + "name": "quarkus-oidc-client-reactive-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d79179f0-6fec-5b7c-b158-640dea77fe96", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f9a5116c-f4d3-5faa-94bf-0f14fa09b739", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter" + }, + "version": { + "uuid": "538bec89-69d3-5cfc-a9d8-237e5a51e407", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234c3199-c4ca-4821-a483-54ecff90c70a", + "name": "quarkus-oidc-client-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b9fb1f9-f2f9-5c08-8eb7-a614a362e66d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fa4011fb-d6d3-5191-a4bf-49a93e063d9d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter" + }, + "version": { + "uuid": "1bd61d7f-a4f6-5ba4-ad12-1aba94c2bff9", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bd4233e-d61a-4ba0-a3f3-1d7e3b8a708e", + "name": "quarkus-rest-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b15ba520-a315-5e71-8330-e835f569504d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb6347e3-04c6-5fdd-8f2b-929cae211192", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment" + }, + "version": { + "uuid": "bf4135b5-79bb-5f57-8d45-53f755883379", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38841359-b95b-4d67-8041-1d30d1532308", + "name": "quarkus-jsonp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "949cddbd-bd4f-5baf-b012-df5bc2f835e6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc2ca471-59a3-54b8-8e44-5e87d8aae35e", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment" + }, + "version": { + "uuid": "3e7256b7-3354-5957-986c-7bc5cdc61b0f", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0feec1-e291-47fc-a341-b5589b7a7b18", + "name": "quarkus-jdbc-mariadb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "427ac6de-e23f-513f-bf84-da830f776322", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc7dde74-e9ce-5055-a26b-ef114fee1bfa", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment" + }, + "version": { + "uuid": "1feaf60b-57fc-5b39-b7c8-e1e5ad5b6c39", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f651c33-f00f-48fa-9a9c-6165889783ce", + "name": "quarkus-rest-client-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e8dfe966-ecee-53f0-a815-6f868d2b2947", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd2eb40f-6220-501d-a020-a6bf30b08c1b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment" + }, + "version": { + "uuid": "c46a3ee2-e815-5260-abce-8a88dfcdd481", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fd84e1d-6ec2-4bf7-9052-97482f7e6e6d", + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "288c8dfb-be21-54b4-801a-13f03e3a7de6", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fed8bd05-98d6-5ad6-b63e-95b67c2d5501", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment" + }, + "version": { + "uuid": "2de7c15a-ad26-5e7c-92e6-aab028ee5a3f", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2022-45787", + "title": "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "description": "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", + "reserved": "2022-11-22T08:49:26.227Z", + "published": "2023-01-06T09:31:40.118Z", + "modified": "2024-08-03T14:17:04.186Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-312"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2022-45787", + "title": "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "description": "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", + "reserved": "2022-11-22T08:49:26.227Z", + "published": "2023-01-06T09:31:40.118Z", + "modified": "2024-08-03T14:17:04.186Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-312"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2022-45787", + "title": "Apache James MIME4J: Temporary File Information Disclosure in MIME4J TempFileStorageProvider", + "description": "Unproper laxist permissions on the temporary files used by MIME4J TempFileStorageProvider may lead to information disclosure to other local users. This issue affects Apache James MIME4J version 0.8.8 and prior versions.\n\nWe recommend users to upgrade to MIME4j version 0.8.9 or later.\n", + "reserved": "2022-11-22T08:49:26.227Z", + "published": "2023-01-06T09:31:40.118Z", + "modified": "2024-08-03T14:17:04.186Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-312"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:afc27082-2db2-411d-9fbf-ecf151e659e2", + "identifier": "https://www.redhat.com/#CVE-2023-34455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-16T00:00:00Z", + "modified": "2023-11-14T21:49:01Z", + "withdrawn": null, + "title": "snappy-java: Unchecked chunk length leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34455", + "title": "snappy-java's unchecked chunk length leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to use of an unchecked chunk length, an unrecoverable fatal error can occur in versions prior to 1.1.10.1.\n\nThe code in the function hasNextChunk in the fileSnappyInputStream.java checks if a given stream has more chunks to read. It does that by attempting to read 4 bytes. If it wasn’t possible to read the 4 bytes, the function returns false. Otherwise, if 4 bytes were available, the code treats them as the length of the next chunk.\n\nIn the case that the `compressed` variable is null, a byte array is allocated with the size given by the input data. Since the code doesn’t test the legality of the `chunkSize` variable, it is possible to pass a negative number (such as 0xFFFFFFFF which is -1), which will cause the code to raise a `java.lang.NegativeArraySizeException` exception. A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF), which would raise the fatal `java.lang.OutOfMemoryError` error.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T17:15:00.311Z", + "modified": "2024-08-02T16:10:07.032Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-770"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.xerial.snappy/snappy-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:2398047e-b7ff-4d62-a3c9-8537bf1cc259", + "identifier": "https://www.redhat.com/#CVE-2023-24815", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-02-09T00:00:00Z", + "modified": "2023-11-14T21:13:41Z", + "withdrawn": null, + "title": "vertx-web: StaticHandler disclosure of classpath resources on Windows when mounted on a wildcard route", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-24815", + "title": "Disclosure of classpath resources on Windows when mounted on a wildcard route in vertx-web", + "description": "Vert.x-Web is a set of building blocks for building web applications in the java programming language. When running vertx web applications that serve files using `StaticHandler` on Windows Operating Systems and Windows File Systems, if the mount point is a wildcard (`*`) then an attacker can exfiltrate any class path resource. When computing the relative path to locate the resource, in case of wildcards, the code: `return \"/\" + rest;` from `Utils.java` returns the user input (without validation) as the segment to lookup. Even though checks are performed to avoid escaping the sandbox, given that the input was not sanitized `\\` are not properly handled and an attacker can build a path that is valid within the classpath. This issue only affects users deploying in windows environments and upgrading is the advised remediation path. There are no known workarounds for this vulnerability.", + "reserved": "2023-01-30T14:43:33.704Z", + "published": "2023-02-09T17:36:32.589Z", + "modified": "2024-08-02T11:03:19.277Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-22"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "io.vertx/vertx-web", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:dfeb9adc-f84b-4099-ae68-9245716519d8", + "identifier": "https://www.redhat.com/#CVE-2023-0044", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-01-04T00:00:00Z", + "modified": "2023-11-13T11:31:31Z", + "withdrawn": null, + "title": "quarkus-vertx-http: a cross-site attack may be initiated which might lead to the Information Disclosure", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-0044", + "title": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "description": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "reserved": "2023-01-04T00:00:00Z", + "published": "2023-02-23T00:00:00Z", + "modified": "2024-08-02T04:54:32.575Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.7:*:*:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-0044", + "title": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "description": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "reserved": "2023-01-04T00:00:00Z", + "published": "2023-02-23T00:00:00Z", + "modified": "2024-08-02T04:54:32.575Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:*:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-0044", + "title": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "description": "If the Quarkus Form Authentication session cookie Path attribute is set to `/` then a cross-site attack may be initiated which might lead to the Information Disclosure. This attack can be prevented with the Quarkus CSRF Prevention feature.", + "reserved": "2023-01-04T00:00:00Z", + "published": "2023-02-23T00:00:00Z", + "modified": "2024-08-02T04:54:32.575Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "io.quarkus/quarkus-vertx-http", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:b8410e22-c78b-4e7c-833f-cd178ff292fd", + "identifier": "https://www.redhat.com/#CVE-2023-0481", + "issuer": { + "id": "6ff67f2f-e529-48b0-9c79-00836ca1cd3d", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-01-26T00:00:00Z", + "modified": "2023-11-08T16:38:37Z", + "withdrawn": null, + "title": "quarkus: insecure permissions on temp files", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-0481", + "title": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-24T00:00:00Z", + "modified": "2024-08-02T05:10:56.412Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-c75ad779-f881-4294-91fc-13f15fbe5937", + "name": "quarkus-smallrye-fault-tolerance-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b753449-ab99-535d-ae48-1e4652e27c9d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0053930b-fc7e-55f5-989b-9d24c42013af", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment" + }, + "version": { + "uuid": "4b69e35e-eb62-5323-9fb8-7eafc5a1e4cd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-963a5dc2-f752-4322-91aa-9202ce5b7627", + "name": "quarkus-kubernetes-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4fce46cc-d8ee-50c7-98e4-69b6f4196c9d", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "00753d70-3fe2-5037-8769-a3c88017cf2a", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client" + }, + "version": { + "uuid": "46cb9b22-db73-569b-a256-d39a586eccc3", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10924038-802a-4b46-bea1-ba40f8a69d68", + "name": "quarkus-reactive-pg-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9cc51d22-3ffc-5276-b66e-1264e8182dee", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0144a611-3fe3-5d49-a582-df718dac1942", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment" + }, + "version": { + "uuid": "e6ab830b-ec56-5077-a356-a758b8a1ec5c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b10c491-6cc7-4e34-8fda-4304354ee8be", + "name": "netty-codec-haproxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5dcb0860-e5e3-59f0-848d-996d11c20100", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01ede4e7-577b-5b8c-83c2-35e67072f081", + "purl": "pkg:maven/io.netty/netty-codec-haproxy" + }, + "version": { + "uuid": "d2aeff2e-cd45-5cd5-bc74-d51493da6f5d", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4069f58d-012b-42e6-a77e-000c62f03316", + "name": "quarkus-websockets", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "faf09dd1-b130-5628-af99-a385018a4957", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01f503a1-5e40-57f2-8a52-b67d6f404d23", + "purl": "pkg:maven/io.quarkus/quarkus-websockets" + }, + "version": { + "uuid": "6e1c6213-3a16-51f4-a1e5-7f5523cdf720", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea171641-55ac-4468-b81b-316fa79fc0de", + "name": "quarkus-openshift-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee9c4594-9b58-52da-b70a-da630780c549", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02313e6b-a3fe-5c66-94a3-0c86f7ecb3fb", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client" + }, + "version": { + "uuid": "583347d7-1842-51bf-8c28-ac834a3b75cd", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30ce168f-eb43-4b4c-9358-12dc79f90972", + "name": "quarkus-reactive-routes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "172a965e-e5ba-5e46-981d-9757b8ecc795", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02eb391b-299f-5dfc-9c4c-298e8968529a", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment" + }, + "version": { + "uuid": "58126ec0-fbf6-5dda-b7e5-a25110e84426", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c02d592-d862-467b-9c71-103132700b9b", + "name": "quarkus-openshift-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7067713-9cd8-550e-b213-781fabb2211c", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04532551-313b-559a-b97c-583ecc4698ec", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment" + }, + "version": { + "uuid": "6014ebba-8ec6-5435-9f87-8d0c72a8d211", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af60960-e683-45e0-8b17-a51483f95706", + "name": "netty-codec-http", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "82ba94c0-71df-584b-86e7-2139624ad86a", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "045c6e1d-aa20-5e7c-94f1-21b64e3eca51", + "purl": "pkg:maven/io.netty/netty-codec-http" + }, + "version": { + "uuid": "d54f383c-04df-52c4-bae2-7e9c3cdf9a02", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e44cd9b-4d69-46e8-a111-0b07f9a6c017", + "name": "quarkus-hibernate-orm-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c4b6669f-4b7a-5def-b683-87c242523c82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "052dc802-11ad-51b9-aa38-58f15de32de7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment" + }, + "version": { + "uuid": "8a9ba57f-1303-56ac-a4b3-5baf4ddf5ce7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb185e6c-c910-4ff4-b263-42bd43fae2e1", + "name": "quarkus-resteasy-reactive-jackson-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "52c2f192-4efa-5eb1-967c-8939b6ff9578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "056802f2-3e2c-5206-a404-b3b6cefdcba7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common" + }, + "version": { + "uuid": "dccc1534-4d79-5dd3-a7b8-0450eaf05f9f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d741f3b-de3b-41c0-a09b-e778a10d50d8", + "name": "quarkus-spring-data-rest", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4de1ff-52df-5b0e-acb9-68d97df641b1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05cc8b99-1c5b-507d-bd60-c4f1ef8c0bff", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest" + }, + "version": { + "uuid": "1a08fd68-72cf-5a64-95b7-235f7f3c4200", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-930c4e5d-370b-4fb3-88c6-7a602a33af09", + "name": "quarkus-resteasy-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8116e156-f21a-5af7-80a8-e816ae881c8a", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05d27302-4e62-5271-9422-ea5ad094f2b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson" + }, + "version": { + "uuid": "dcfde42e-704f-52e1-b668-de5457271533", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-caad14dc-7bb9-4ca2-bdea-5a302ee09cb6", + "name": "quarkus-datasource-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2fbe4407-ac04-5760-aa82-a4c3fea02a66", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "067ed295-e259-5cde-bab0-2be520fb9a4e", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common" + }, + "version": { + "uuid": "bb1a32ba-5bb2-5d2c-a44a-bec96cb54df0", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2fd1018-55a9-449e-8179-7c7133a73e59", + "name": "quarkus-smallrye-graphql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6d669066-1aed-5e7f-a15c-24a4f5889f9a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07b0350b-13bc-5d76-a010-d7d581558de3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment" + }, + "version": { + "uuid": "ae2df958-63ef-5dba-b320-0aab51cf2167", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-040633a2-c94e-4d10-9e93-8a397e19b4a4", + "name": "quarkus-smallrye-metrics-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d7d7a9df-d1fe-5f23-a542-cfc65acec28a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08116430-432a-544d-ba75-e6e2af6f1dae", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi" + }, + "version": { + "uuid": "810aff8b-bcb7-5b91-8820-83805a824589", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b03dbf7-47e6-4a26-9d40-10f963dffa40", + "name": "quarkus-funqy-knative-events", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6676117-c46f-508b-8c2c-38c1d9eb06f5", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09beffbc-6f1a-5c3a-908a-ab96701fa478", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events" + }, + "version": { + "uuid": "bc91be4b-3ea7-5aea-8d11-d2d088c124bf", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cecd6c10-5e51-4661-b215-e716a0fd5028", + "name": "quarkus-resteasy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d315a338-83ee-50d2-b558-666f9a873014", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0aada068-a0d8-5d14-b2a9-fac85d5b9d36", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common" + }, + "version": { + "uuid": "be0d3b4d-c77c-52c4-a81f-849249009250", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-beaa0bc7-60f2-4ef9-aa3a-8d4d332bc63c", + "name": "quarkus-bom-quarkus-platform-descriptor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50cbf391-7d3b-5e6e-8529-6f995b8ed895", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004?classifier=2.13.8.Final-redhat-00004&repository_url=https://maven.repository.redhat.com/ga/&type=json", + "base": { + "uuid": "0ba7b14f-83c3-5748-8b63-d8393c9c47cf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor" + }, + "version": { + "uuid": "f866e0e9-4fa5-591f-a17d-055cab03cf9f", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "classifier": "2.13.8.Final-redhat-00004", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "json" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07a82943-c3ca-40ff-bcd8-b26b49b269c9", + "name": "quarkus-devservices-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d63b4298-8cb6-5dc0-b5f9-c65c4783e54a", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0c3d1642-f967-52c6-9563-8ae08aed1534", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment" + }, + "version": { + "uuid": "4184d1c4-d0eb-5486-ac5c-30342a302664", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-890fe6a5-a463-4223-8eb2-ae0741e27b48", + "name": "quarkus-devtools-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d44d6dec-d7a1-5910-9d8d-6c9f704eb5d2", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cbb3638-6fec-54e7-85a4-7816e3477c1a", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common" + }, + "version": { + "uuid": "e906f715-8c37-570a-86e9-e4a64aeb9c44", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d610f39-ecfb-42cc-b1bc-0c3dfb5b3383", + "name": "quarkus-micrometer-registry-prometheus", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "24893cca-eb67-555a-ad5d-8c5c8cab8d29", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4de25a-e9c8-50eb-ad77-87f0c9c18261", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus" + }, + "version": { + "uuid": "bc558ab7-8541-5d1f-98b4-84f4919c7532", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88136270-63a0-486b-b333-4448f6b3e0ae", + "name": "quarkus-smallrye-reactive-messaging-kafka-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d62ff1c4-016f-5956-a900-c2c4a7379742", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e019485-c37f-5857-9221-646d283e9fa0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment" + }, + "version": { + "uuid": "d1e90615-bbcc-5937-ad66-dd04fed3fbd0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-798a1f7b-8448-45e0-95ab-e22434cfe547", + "name": "quarkus-smallrye-reactive-messaging-amqp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cda87336-713c-5d33-8f52-04150751e7be", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e0c5a15-13d1-5974-9782-4c89f7ba1948", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment" + }, + "version": { + "uuid": "3321a6fc-4e78-5799-8b53-62cbb507dd24", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5cd2b4bb-adc0-41f6-a11a-b68aa5db6a29", + "name": "quarkus-devservices-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3fa188eb-4411-5abb-ad9c-fa1bc0b08b2b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f215144-4d67-5011-832b-093bf8336898", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle" + }, + "version": { + "uuid": "13e73e0a-a4e9-5ea8-942d-b4a21ea27642", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c9146da0-9a91-4258-bb90-3e666b34e65a", + "name": "quarkus-oidc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "acbfe2a7-35d6-5f3d-9967-c4d64d11f399", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f3759a0-76d0-5dd9-ab4b-6e42209b1afe", + "purl": "pkg:maven/io.quarkus/quarkus-oidc" + }, + "version": { + "uuid": "e9128e2d-89f4-5df7-8ec2-0c4e8ce3a1d3", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e7af422-d69c-4589-b530-49a3035246ac", + "name": "quarkus-kafka-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "126be05f-6cdb-53cb-9188-2fab6cc5499f", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f4b3a06-497a-5721-b378-43fe8e916630", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment" + }, + "version": { + "uuid": "bb3ccbdb-bbf0-5300-84ea-f9e899524323", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c88b3e7-e466-413c-9923-e5b0cf3b9f2e", + "name": "qute-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "67cdaca7-1133-5cc5-af6f-597b1e2460fd", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f57a6b2-fbef-5521-8d8b-d64230e75c09", + "purl": "pkg:maven/io.quarkus.qute/qute-core" + }, + "version": { + "uuid": "7321b3ab-98b4-5e25-8f1d-a0f0df9849d9", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0689851-37cc-404c-bd26-327853190726", + "name": "quarkus-resteasy-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5166c1a2-c2b1-5b8e-a687-8d50bfcd174c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "10c95e5b-29bb-5165-8a1c-a3dca9c79578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common" + }, + "version": { + "uuid": "9631e555-61ea-5396-92e8-2dd43272a413", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-25ad8e4d-7ce5-46bf-b7cc-5b65086c5f41", + "name": "quarkus-hal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b362b10-fe81-5909-a1ea-b51e52ef11d1", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1116d663-dff4-5fe2-ae14-ea020b725970", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment" + }, + "version": { + "uuid": "24c66fb6-e441-50d8-bab8-cc8f422f7305", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1eb5d62-38cb-48cc-9dd9-4aca1d2e21cf", + "name": "quarkus-mongodb-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "93ba4c2b-0dda-5870-a029-7187f7a4d253", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1160cff9-6b7a-521c-ba4d-c45c0225c0b0", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client" + }, + "version": { + "uuid": "86d453aa-4d73-5c0e-b4a6-8b3b4be9a154", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ef4669b-667a-49b2-ba30-a9ad9e6787c3", + "name": "quarkus-quartz-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "457a8985-cb9b-59ea-b19f-880f103fc0ec", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1291070b-4ea5-5dea-9d7c-98c37774284b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment" + }, + "version": { + "uuid": "003b9e3f-d0f9-5c52-a21f-ad7a4da02699", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e181d5-3aad-4491-a629-b05326a56316", + "name": "quarkus-smallrye-openapi-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a4344ad8-56f1-575d-ae68-ee37d6cf23f0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13aa85ea-3c30-5a02-8aa7-d165775c6ab0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi" + }, + "version": { + "uuid": "f765c3d8-15ce-5d20-bce4-12e46865e2d5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f95c789f-1905-43b6-8b69-8a7a3669b8ae", + "name": "quarkus-devservices-db2", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "db82485d-a60a-5e54-bb11-74a4e8c01227", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13b6b528-37ac-5ce6-8aa3-76b1a7819de1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2" + }, + "version": { + "uuid": "5f8cd5a5-c806-55b1-acf9-402bad08d3df", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0847b30f-f479-45a2-befd-b500606d0a21", + "name": "quarkus-bootstrap-runner", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d13c7ee0-65dc-5fe6-8792-0af78121ee79", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1474df3b-f69c-5cb2-a912-7c1335c3f8fe", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner" + }, + "version": { + "uuid": "9b7a31ef-3c5e-54d6-ac78-94d5e8f2d9d8", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40ff2b19-5336-47b9-8be6-874cbb33f868", + "name": "quarkus-bootstrap-app-model", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50668bbc-169b-528b-a3a0-a39e94c86e93", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "15f803ab-ea0c-5f5b-9d7d-a6b8c7b2e373", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model" + }, + "version": { + "uuid": "7d204113-798a-538e-88d4-9fb77d3a5462", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44db22f7-4bea-4ebd-bad2-aeadc182c4a3", + "name": "quarkus-oidc-client-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad57b00-7f93-5039-bc04-21e9340b26fc", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1665dfb5-4082-5ac9-9b9a-385fd48966b0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment" + }, + "version": { + "uuid": "1619ab32-934e-5441-8f61-62af1fddcd33", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0777bb4-ea20-412f-8e8d-be7cd6502a23", + "name": "quarkus-vertx-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca4b353-48e7-5133-89ce-05253f3bd43b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16ba7b38-569a-5d7b-8432-d23400b4dfd2", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment" + }, + "version": { + "uuid": "81110a25-6497-5c48-aed2-5211ae522ea9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1e4344ce-8f61-4e85-a4ac-cbc383fe414c", + "name": "quarkus-jdbc-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16b126be-46f0-5cc9-b3f3-fddd32d6fd44", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16c681da-2698-5821-9fd8-e51e211bacec", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle" + }, + "version": { + "uuid": "7b58af65-6264-5f57-bb1d-a453db39b16e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-394e6200-3abb-41ab-837e-71aee668281c", + "name": "netty-codec-socks", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5e694d2e-c97c-5ae1-adbe-0ecf77a50c7b", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1848b072-9a0d-556e-940d-0b438ab5288f", + "purl": "pkg:maven/io.netty/netty-codec-socks" + }, + "version": { + "uuid": "5944b774-9704-5c48-8276-b3be3378b68e", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fea042f-0b52-4848-b1aa-cf5912bb8b1c", + "name": "quarkus-vertx-http-dev-console-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36172ba0-f9b1-5fca-8d0f-d63ee435eaaf", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "184953ef-e38b-58e8-9704-49b3ece829ba", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi" + }, + "version": { + "uuid": "5b678f67-8cb3-5376-a49a-e7cb53e5eb73", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0400ac2-fc96-462a-9d0a-955f391e234f", + "name": "quarkus-resteasy", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3be65ade-f215-52b5-a273-515cac52e577", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "187f3361-720d-51ed-993c-b4c00e35852e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy" + }, + "version": { + "uuid": "bbbf817b-3732-5fe7-b5a1-bf3685d072c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-488833fa-2eb5-462f-9390-1a50042f479b", + "name": "quarkus-smallrye-context-propagation-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15ac265a-140b-591c-88d8-bc24f43e5147", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18853b4f-555c-53ec-b794-5edbadc55d02", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment" + }, + "version": { + "uuid": "3b027b54-5d45-589b-8afd-f914da1a2f04", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85dbdfbc-56da-4359-996c-ad639b0ccc2c", + "name": "quarkus-builder", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "02df10a9-8be4-5b82-bcb8-50bed2e763ba", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1916fc34-85b7-5f63-ab90-6ecec8b1ce1a", + "purl": "pkg:maven/io.quarkus/quarkus-builder" + }, + "version": { + "uuid": "36b4ea26-2f55-51b2-ac54-f39d16a45853", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b46ddd9-d99a-4c66-9523-289f6026b66e", + "name": "quarkus-jdbc-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f36b5f92-114a-5218-8f0a-8559b31257fd", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19d02fa0-fde1-5743-b375-8a34ccc2c3b7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb" + }, + "version": { + "uuid": "6732fc94-5ce4-5eed-a508-7dc960a0ba82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-570f27f1-a31e-41f8-a6ba-8eedaefb9858", + "name": "quarkus-avro-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "43490349-7757-53bb-a03e-de54514b2e90", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1abdcfc6-1537-538f-8f87-72691b7158cf", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment" + }, + "version": { + "uuid": "84a51b5c-d691-5f4e-92d8-cb54350f66f2", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc0eeda4-74cc-405d-9ca9-655595411b22", + "name": "quarkus-jdbc-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ab7e2cc6-6aff-5119-829e-8c32475d80d3", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ad66f4e-408a-5350-b9e6-653dd071e9d6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql" + }, + "version": { + "uuid": "fa419877-adb4-5ff8-9687-e8e5bf6c2ef9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2209db79-4483-43f5-885c-60c286409a7b", + "name": "quarkus-rest-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64a7aa8f-2aa4-5056-b79b-40e1eea2c42b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1bfe22cb-466d-5361-90be-c32dcf46b1a0", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client" + }, + "version": { + "uuid": "eea24528-6d2e-5210-a98a-5971811cceab", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a46eaf1-30da-4472-a0b5-36964582cec6", + "name": "quarkus-devservices-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f723d346-6d21-53e5-8d7f-1f9e50d3ec44", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1c3f3382-5e3c-51dc-ae00-785846666f54", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common" + }, + "version": { + "uuid": "9510fcdc-5d00-5dc5-857e-fdde705acd89", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1330df4-c726-44d9-9178-79a6ef546808", + "name": "quarkus-kubernetes-client-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2517fb14-202d-5941-ad18-e07db6fe5f04", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1dc1e346-9422-5706-8800-7cde9bff5c30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi" + }, + "version": { + "uuid": "31a1043e-dd45-5cd8-be56-489539b49e30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a61c38d0-4f04-440b-a9b4-becbeee59bc6", + "name": "netty-resolver-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ff246236-cca3-53c8-a9c9-1a2311dd64ab", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f8db150-de5b-5f90-b46b-6055cd758488", + "purl": "pkg:maven/io.netty/netty-resolver-dns" + }, + "version": { + "uuid": "ffac9578-0a40-5f50-9892-050cd80eeda9", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9372be64-184e-4fd2-a5b9-80310e496c4f", + "name": "quarkus-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5db35609-0222-5804-9c69-6a87b29d42d2", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f92a80f-62ca-50cf-a859-f4813f772dce", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb" + }, + "version": { + "uuid": "b472e0a6-fc8b-5e2f-8735-00b43b748ee6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42356885-c7d2-466c-9965-99fd66844813", + "name": "quarkus-swagger-ui", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b9f041-eb3e-514f-ba5d-f3d3c7632b0b", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2048835b-663d-5d6c-81b4-0f80447bef9d", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui" + }, + "version": { + "uuid": "86be783d-ec7b-55db-8b22-4caf074dcb10", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30d9acf6-2342-44b9-a159-6f54083b5516", + "name": "quarkus-kubernetes-service-binding-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d26fc174-a72b-5984-bead-5981fbbee8d8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "218cb45a-f09c-5bfb-b66e-00a3a8fdae95", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi" + }, + "version": { + "uuid": "0d7d47de-b91f-5864-8ee1-2642593ff93e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-466c1ab1-7bf1-4a11-b7c8-0d03cb34d1c5", + "name": "quarkus-undertow", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a538551-22ec-5fa5-b898-a991f552c2ee", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "22c33f8e-bd68-5cee-af99-cc09b1d811d9", + "purl": "pkg:maven/io.quarkus/quarkus-undertow" + }, + "version": { + "uuid": "722a7259-2cf9-5f77-947a-42ae541244ab", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2747f7b-172b-402a-84f5-ce178c42b25e", + "name": "quarkus-grpc-stubs", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a9a749f6-34e2-5453-a250-142ebc0528df", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f1434d-6fa8-5182-825d-f735df474e36", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs" + }, + "version": { + "uuid": "914298cb-edff-5299-a9e4-51d27d93092b", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f85b9c37-05a9-4266-bf89-6545a1a306fd", + "name": "quarkus-devtools-utilities", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa84e16b-ffb4-58fa-91ef-7184eef2a243", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "247eade4-d56c-5be4-b380-6c936cfdb311", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities" + }, + "version": { + "uuid": "75e7121e-49fe-5c35-92e7-d3a022db7d11", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbaf8f9-748e-4d7b-b7b0-2e09f9e66b95", + "name": "quarkus-funqy-knative-events-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0f788013-6907-53d9-be7d-911653385954", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "24e68003-fe62-5274-a783-72ef4b90f610", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment" + }, + "version": { + "uuid": "cedd0d04-82b5-5650-8572-7fcfb0cb43b6", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ecb352-da4c-46a3-8617-ed458ced2f45", + "name": "quarkus-spring-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4fbcef-f593-5439-8b4d-2b8fe7fb5fbc", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "25ec0e4d-1dd8-53cf-8288-3e494f6e03ef", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment" + }, + "version": { + "uuid": "6c0587e4-ad91-5401-be4e-35ab299c79f0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73e410a9-68e6-4bf9-8f12-edc691d73fb5", + "name": "quarkus-jaxrs-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8ef67e10-656f-543d-be30-58f489bcc039", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26333b28-d4ea-5b5c-9677-7bd6707b0de0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment" + }, + "version": { + "uuid": "a6b69aab-84f9-598b-b2a9-7c3db52c131a", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80ea2723-f5ed-4cca-b320-8f79063510a8", + "name": "quarkus-smallrye-reactive-messaging-kafka", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "01df1fb2-5f06-5dcc-9fcf-f9883fdbad20", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "263d3de7-dae6-5693-bf59-9ce5430cdf89", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "2199814e-48a1-5032-a08f-4f0471c15240", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ed98591-d051-43ab-9c74-1f3381d9a9a9", + "name": "quarkus-core-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "47594949-10d7-535c-9fe7-f07a3ad50de2", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26c0201b-9938-5d35-909d-803c549d9dd8", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment" + }, + "version": { + "uuid": "7ba38899-a09f-57d4-b351-8f218a26f18f", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3be0ff6-a286-4a04-91f9-7812df6702e1", + "name": "quarkus-spring-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6a1d83c6-a770-5d88-9215-fdbf79bcc710", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b632501-d073-58f0-89a7-0654a3f4a1ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security" + }, + "version": { + "uuid": "daa90c50-b765-590b-be8b-bd34bd7fdfda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4818f59c-b5f7-467b-9d40-fc29a7630d3e", + "name": "quarkus-kubernetes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a99298a9-3375-5152-89ce-02802c75e179", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2c6eead0-ce88-59b4-994a-f637fe92224e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment" + }, + "version": { + "uuid": "ea6e86f7-9a83-5b53-8c9f-ee8eda9ac0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1223d116-41df-41a1-b07a-29fde984dab3", + "name": "quarkus-smallrye-openapi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75f9bfc7-9c89-52fb-873b-c3ec01a7e7e9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d403acb-b8ec-5cd8-af33-bcf472f17ff3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi" + }, + "version": { + "uuid": "d687a1b2-586b-5610-b49a-ffc20b8e8c17", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1d0db57-c472-4dee-ab3b-16b01b8e2faa", + "name": "quarkus-smallrye-reactive-messaging-amqp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17962b0d-0f0f-588e-bffd-e2c42d1d5c8b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "303891d4-b794-5dd1-8f5e-fa37b3254386", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "1586e35c-2e5d-5746-8d80-1ce6baa6d8a4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cc93b96-b2a4-4e8a-bae4-9a519bb47cb7", + "name": "quarkus-resteasy-reactive-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd47493d-a094-5720-b2ea-ebfbfd996e75", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30ec5893-e9bc-5c50-8d3f-66c4eda95a9c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment" + }, + "version": { + "uuid": "76423c53-f3c1-51d2-abf2-d40d6085a749", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a2fa8319-ca3e-4f93-90f0-8ea931df3d13", + "name": "quarkus-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "167a84fd-94d7-5ed1-8449-06c7ee696def", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30f2a642-3fe4-5088-8675-18136395deb7", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment" + }, + "version": { + "uuid": "b210e73b-1bcf-51eb-b3f5-ea866ec12e16", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cb52258-3582-430f-84c7-635d63238be3", + "name": "quarkus-smallrye-jwt-build", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a937e4b-d857-5d4d-83b5-d6c192da529e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "31153480-c3ce-5dc7-9a88-787df6c8d95a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build" + }, + "version": { + "uuid": "260f6449-31cf-5a91-90fe-865cd5532223", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e7ee17f7-8e9f-4b81-9c45-ee240e6dc5bd", + "name": "quarkus-jaxrs-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "753da595-381e-5895-9967-86713a79ecae", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3237c3c5-a44f-583d-b704-0becfde42d2e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment" + }, + "version": { + "uuid": "b70565b2-9762-51dd-b1d3-bd72937f313e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-23be191f-7615-4b9d-a2a9-fe707af48c31", + "name": "quarkus-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0df54167-b0f0-5d91-90bc-628a80021cec", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32434ab5-3d47-547d-a69a-fd36ed6539e5", + "purl": "pkg:maven/io.quarkus/quarkus-security" + }, + "version": { + "uuid": "5f7a4e7a-b255-5aa1-9e89-1abc25272c8d", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c550828f-54f2-44d8-856f-eb163a80990b", + "name": "quarkus-devservices-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14888876-a330-52dc-b6a4-6bb287d375d1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32d2f0ae-ff13-5de1-829b-23693a01b58b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql" + }, + "version": { + "uuid": "59c887a6-e4db-5f29-b2dd-e996528a0d34", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c1ba4309-9abc-4e81-93b4-f3ab71b34476", + "name": "quarkus-rest-client-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2601075e-85cd-5985-aa30-9ebf42d00ef8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33a0268c-6e74-564a-932d-abb29d88b37e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment" + }, + "version": { + "uuid": "d9b1dc78-fd6e-55f1-8525-6d5a90b8feae", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4400c49f-c43d-41f1-8eaa-43f112597bc2", + "name": "quarkus-apache-httpclient-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c5bb552-8f6e-5c3d-91c6-90b47be5cb16", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33e14e28-4445-5802-aafb-910c24fc66c6", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment" + }, + "version": { + "uuid": "e226e5fa-8b48-5935-89e5-907b8715af6e", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710139ec-bcd5-4284-bdb0-d859aaa281d5", + "name": "quarkus-resteasy-reactive-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "181b4d1c-08c0-53d4-b4a9-b7111deeebfc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33eaf1e0-cb21-5657-b689-733c72a8cd6b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute" + }, + "version": { + "uuid": "51bbc3e9-f1c5-5329-9424-60578c25ba3d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65c10ba0-12ef-4cb4-8afe-777962394902", + "name": "quarkus-resteasy-reactive-jackson-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "19adc145-7ab3-5a27-bae3-d7fb149d99a0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34210648-b598-573d-a70e-42a801310c31", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment" + }, + "version": { + "uuid": "34cffcdf-15ea-5897-b5ce-8efcd9329428", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5716727a-ca55-4810-8a3c-1da87eeda5d1", + "name": "quarkus-devtools-base-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc64135-ed41-5e03-a2db-75a74e7f5a35", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "346c44ca-ff1a-5e53-97e9-fa6a486356de", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts" + }, + "version": { + "uuid": "33f9310e-5e9f-533f-b6d1-03312662d399", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-780655c8-4460-4858-a9dc-c4b4025184a7", + "name": "quarkus-extension-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "074aef48-23f8-510f-a93d-9d29f8681132", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37df424d-a1e6-5694-ba9c-c3ec797c4996", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin" + }, + "version": { + "uuid": "c5ea19a6-cd5b-530e-bcfe-3730eb957ee6", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f32dd752-29fd-4a6e-a241-2ee80367e4f9", + "name": "quarkus-resteasy-reactive-jsonb-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e895e5a5-e01b-5fa8-a0a3-09f44190b37e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37e1e02e-1b1f-5c91-a23d-4a9dddddbfae", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common" + }, + "version": { + "uuid": "ecb206c3-326d-5390-9621-06d19b856e44", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b295835-4e63-4cb4-93ff-00e07478fb5b", + "name": "quarkus-hibernate-validator-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2415a152-44ff-51d1-a2c5-aae176ce040c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "38d5de8b-3164-593a-9d77-88a69bb3c86d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi" + }, + "version": { + "uuid": "2b54eb43-7eb2-586d-aa56-c264b55fea2d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dec4267d-261f-475c-aa7e-15081cb7b814", + "name": "quarkus-hibernate-orm-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dab0e411-c906-5f26-ba9f-2bc8058b96f9", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a3fa47d-a921-5a4c-9992-6a34cf716a6a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common" + }, + "version": { + "uuid": "c7253c93-72e3-50b1-b537-3866ddb07a1b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-733d691e-dc1c-4948-b66a-c5387651c203", + "name": "quarkus-resteasy-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "751710b5-9c33-5861-b0b6-0d253da6df48", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a53866b-04f7-584e-92e6-9f0101263a1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment" + }, + "version": { + "uuid": "ec4da626-0e3e-5fc6-bdd8-4654a137cdab", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50b4bc78-052a-483c-872c-e0941edd9301", + "name": "quarkus-oidc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba56d11b-d66a-51ca-a310-7913f2b5d487", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a60e3c5-2baa-59a9-b05c-7587eaab9dcf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment" + }, + "version": { + "uuid": "0733fa3a-f274-5d6f-9afe-0a855677db6a", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-87a107c5-424e-47a2-afb3-7ec4e6df38ad", + "name": "quarkus-smallrye-context-propagation-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d0262f1d-9fb8-57f9-bd33-f2fa3c719e5f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a9dcc84-a92e-597d-9f8f-6eb3e7e60b43", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi" + }, + "version": { + "uuid": "4597a3b8-580e-5322-afe7-5c943ea6b55f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e67ac09-7ec1-424b-bd9f-84771a9606f6", + "name": "quarkus-kubernetes-service-binding", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5657c512-f07d-5b08-a5b0-1df803963ff5", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b025fdf-9886-5abb-a20a-bfcd188a9413", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding" + }, + "version": { + "uuid": "0a9cc5f4-c981-519b-a01e-e2657dd9cea2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b4e4a45-acbc-4da4-8926-968db5098c83", + "name": "quarkus-elasticsearch-rest-client-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6db23df-d47a-5974-87a5-613ecb86d1b7", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b0a7b21-a704-5f48-98cb-6444c5ca11a9", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common" + }, + "version": { + "uuid": "ecf40bcf-eed9-512b-be0e-cd79ed9bc74a", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85e1044-8101-47c7-95c2-b53b3f0fe41c", + "name": "quarkus-vertx-http-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14aebacc-daca-591a-b91a-6282afb27fcb", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3c33c6a5-344a-5551-badf-8cb0169abc87", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment" + }, + "version": { + "uuid": "82316ed9-78f9-53bd-9840-cb968b45752a", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16353681-583e-4ef3-9000-3128fa1e23f4", + "name": "quarkus-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a44ceebd-83ae-5d1d-804a-3140a36e2d3e", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d4b8b8e-da71-572b-b188-5710d59a23b7", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment" + }, + "version": { + "uuid": "74202f8e-e160-5ff4-8d52-cd3d2a2c1f80", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff1daa18-ba57-4391-a109-1d4bb7ddd23a", + "name": "quarkus-smallrye-openapi-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d46ba1f7-4fd7-5ce5-adca-093abdb497d4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3db6132b-31c5-546b-a659-ab9100dcf175", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment" + }, + "version": { + "uuid": "72ce2369-8f8a-5ab5-9d2a-d58534c1b3fb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2756596c-da2b-4246-ac12-10ae07ad5ff8", + "name": "quarkus-reactive-mysql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ceba0bcc-8048-575a-8cc9-34e8060f2db3", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42756c7f-ae43-5af9-8daf-3cec4d03251c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client" + }, + "version": { + "uuid": "a1691007-16fe-5ca1-bdc9-3ef909d8efb0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b794473-ef8a-4dc3-83c9-994ce7e416c8", + "name": "netty-resolver", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ca80ea97-d265-54c2-a263-c7069934ac5d", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "43af72a1-d9a4-5b51-bf1d-379c4f361446", + "purl": "pkg:maven/io.netty/netty-resolver" + }, + "version": { + "uuid": "968f513e-9435-5b1b-9174-e53eab15fc83", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e08e39f8-f66a-44f4-93f3-26f8e1e79329", + "name": "resteasy-reactive-client-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45d957a9-f53f-5cdc-8ef4-24a3e79c7dbb", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44b72d4a-b1c0-5ea8-ae55-7a0e3cd79e02", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor" + }, + "version": { + "uuid": "80315b0d-5179-5221-8610-c6dc029aa4f5", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14276dc5-94a5-43cd-84b0-ea71fc2b8222", + "name": "quarkus-container-image-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e628e771-34a3-51dc-97e1-4acb2b8ca5ec", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452eef4d-38b7-5e50-83d4-b96b6642b9db", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift" + }, + "version": { + "uuid": "3648646d-e82b-52db-956a-0d5d4c44e34b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a0388d42-2217-4d3f-affe-1eeea41e4e60", + "name": "quarkus-resteasy-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66cf0916-3d7d-5739-ab86-1661306103e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "46457d81-5f7a-5f5d-bd5d-fe30afdbab4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute" + }, + "version": { + "uuid": "5cecfcb6-7729-571a-9091-8abf39319bd3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cd8d0c3-3d68-412f-9e4d-59afe8b84671", + "name": "quarkus-rest-client-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b26e3805-8e38-587f-9314-db0b8eb67b09", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "479cc516-ed0a-5c70-8359-68da053461b4", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb" + }, + "version": { + "uuid": "5746db2f-3b44-5412-8d2a-1c8b78ccb382", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6de0e4bf-81b7-43ed-ae15-8f708b4d792c", + "name": "quarkus-rest-client-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bad81039-e105-5980-9294-33bc71506a5e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4872774a-8dc7-5e49-8bf2-66cb19c1da1a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb" + }, + "version": { + "uuid": "2fa20e5e-1bdc-59ec-8489-fb83b2c3c69d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac7ae0c2-98ee-41e3-8a91-f00ad1360711", + "name": "quarkus-jacoco", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4f17d7-f0b7-5906-b77c-646509e6e281", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49253c1e-77b2-5bb7-96c9-325533555384", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco" + }, + "version": { + "uuid": "eff2cf0d-a503-5e7a-851f-4b927a617fd1", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3fc3847b-8eed-4203-a3fc-f669fbe653eb", + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "496eab61-3333-567f-98da-f6c3389fa91e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ab88f63-6a37-5ecb-a9f4-093ec03bb2e7", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi" + }, + "version": { + "uuid": "e3097c94-b77c-5e59-978a-756364bf0eac", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d10c8fa-d8b6-4e41-85ef-e5f90624f1e1", + "name": "quarkus-keycloak-authorization", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ed321301-2d42-5939-aa96-70930a231979", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be678d1-5f0d-5d97-88b4-968f4f4bb532", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization" + }, + "version": { + "uuid": "e8c56f6c-62b3-5d14-a5f0-b2c921be6bdb", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a93d1d8b-bd47-42f0-bec2-536f027939c0", + "name": "quarkus-config-yaml-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "69248775-f5fb-5df9-ba0a-0ce8254bd512", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4c38dc0e-c278-5ac8-9de0-eba1263655c1", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment" + }, + "version": { + "uuid": "86ccc4d4-5720-502e-9caa-579b14076aab", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e300fa6-506a-4418-9dbc-ad9457a653ba", + "name": "quarkus-smallrye-stork-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a6337f26-143c-5e7d-90e5-b6628420d368", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd69d1d-36dd-57f0-a22e-c4a565157ac5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment" + }, + "version": { + "uuid": "75d1b7c1-a921-5421-b734-0d15b42ff539", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af03e42-a1c7-40d9-88b4-9beb6c420db1", + "name": "quarkus-resteasy-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e06e08f1-721f-51c5-938d-d36cc57ba5d8", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "502cbae6-cc31-5f4d-8f0b-85e3756a0dfd", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment" + }, + "version": { + "uuid": "2f0746b5-be13-5c33-bc9c-bcc1c00dc8b3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec3162b9-9631-44e6-9bbc-e4f268ef722c", + "name": "quarkus-bootstrap-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1be0493-7f8d-5b02-bcbb-eba30efee1f2", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "505c74b2-b0e1-537b-b012-621d3cb32333", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core" + }, + "version": { + "uuid": "55540482-9dd3-5934-81a7-c55ec6c0b7c0", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-333ec135-ab9f-4c13-8f50-ae0772f08de3", + "name": "quarkus-jaxp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3a43984-dfc9-5bb1-882b-3f21d6efd56f", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5092cd38-f156-5ea5-89ba-5a0f10426fd0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp" + }, + "version": { + "uuid": "5ab2e764-7ebf-5faa-b5b1-46759f6a7e29", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59872fbc-27a5-4ed5-80a2-ab85d9c5e983", + "name": "quarkus-jdbc-postgresql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7aa8ebb-75f9-5760-83da-0efb776aca82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "50e7ad71-bb2d-5ea7-b14b-16f2af03a7d1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment" + }, + "version": { + "uuid": "a19f3cc5-b0ae-5bce-9298-3aeeceb2def0", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af7b0e01-08b1-47d4-9aaa-ad27e63980ae", + "name": "netty-transport-classes-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "0ad86e44-2348-5e16-8fe3-6b2c6e7e0515", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53935580-8eb3-5cca-8042-b56f418b9668", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll" + }, + "version": { + "uuid": "0185e2fe-f7a4-5835-b0a7-8a33b646f7ac", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67892c7a-11d4-4b7b-b46f-24a7cc8ec541", + "name": "quarkus-kubernetes-client-internal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "131c8763-37e2-506b-8272-2f24dc961711", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "540092ab-3cae-53aa-89a6-d296dbb8d666", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment" + }, + "version": { + "uuid": "d32725d7-08bb-592d-94bf-cb360139aa48", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1066e0bb-7548-497c-980b-550cc1820edd", + "name": "quarkus-spring-cloud-config-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75e8c34f-1315-52b7-855e-302c2f9eca63", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5426860f-e318-5957-ab54-964557ec2dd3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment" + }, + "version": { + "uuid": "334f0960-51a3-5d46-b5d2-e0f57302c26e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53324b53-b65a-468c-8dee-ce6d9a08f2b5", + "name": "quarkus-resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87766195-e9b7-5bee-bbb4-6b5accfbb017", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "549ead01-246e-550d-af5c-c02dfa419877", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb" + }, + "version": { + "uuid": "ccf3e0a3-8edd-58fd-972a-9213498be91e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f018766-4313-4c7a-a778-592bc26c11a6", + "name": "quarkus-project-core-extension-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4fea899-2fec-5bbc-9990-c658495b1fd7", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55e2d8dd-e960-55c5-b8df-01bc8d7685ab", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts" + }, + "version": { + "uuid": "3d56ebc9-2182-5476-ad6a-e52329f92dfd", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-327ef349-998d-47db-8ef4-21bfe5779914", + "name": "quarkus-hibernate-validator-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "53fca636-2379-553a-8887-bc2f1d7b45b1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5684bcd5-73a6-5efe-b893-a6e0e04981aa", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment" + }, + "version": { + "uuid": "ae27d675-fd2e-5fd0-aa61-a8b0d3c84544", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7f5d59aa-9228-42b8-a3f5-0716163fe061", + "name": "quarkus-netty", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "555728c4-61d5-5993-8921-d117189ad0f3", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58372844-09e3-570b-aaf8-fba55058aed0", + "purl": "pkg:maven/io.quarkus/quarkus-netty" + }, + "version": { + "uuid": "1dd5ba79-e94b-5bf0-91c8-ee30962ef328", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec1ccf7d-d688-44c3-93d5-19c8f6c5dceb", + "name": "quarkus-mutiny-reactive-streams-operators", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "83bc651c-5e3b-5f3f-8520-a8688a04cc69", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59fe04c0-79a0-5b3c-a4d7-f6dc049e353a", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "bb6f86de-44e8-5c66-87a3-a43ea1193be2", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7aaacfb5-63e7-4237-8724-9885b01d69d9", + "name": "netty-transport-native-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "9ea25261-4666-5890-ba6e-276e8bc8b44e", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cbfb1fc-f145-5877-8d43-a7744abf2614", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll" + }, + "version": { + "uuid": "bd29dfa9-131f-5dcf-9e62-00d7bb0ff1f2", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "classifier": "linux-x86_64", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e726bd24-565e-4d41-8e91-4e56fcd6e092", + "name": "quarkus-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b00dc211-7861-539e-94a6-93f7e4ac03d2", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cc62b0e-55b1-520d-b90a-ac13239ed15a", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment" + }, + "version": { + "uuid": "1eb5ef4b-78fc-57c6-bd05-6ba86de36e09", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2514077c-76f1-4ffe-af42-54d2acd59c41", + "name": "quarkus-resteasy-server-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "313cfe0a-5a18-5edf-a110-97562fcc2202", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d484375-8861-5a41-99dd-88888b2b8099", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi" + }, + "version": { + "uuid": "07c4f418-6449-5516-b5fe-52c4f6a44b8b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-469b2356-b0a4-44fc-98f5-5bf4985b02f7", + "name": "netty-transport-native-unix-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "496d5d3d-dbcb-5267-b6e6-b487f13b1ec1", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e26ff54-86e1-5865-9120-caf4d8c675b6", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common" + }, + "version": { + "uuid": "3ac567ce-d4d2-5a8e-9920-72ae60eee50b", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85f52ce-77e9-427b-afbe-6da5e0c62b84", + "name": "quarkus-development-mode-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad60302-a4b0-5054-8b61-c86152920745", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f7aae84-2005-56e5-8bdc-b961acbdcd5c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi" + }, + "version": { + "uuid": "659aaed0-99be-5089-863e-0db46385256c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0d7a272-831c-42f6-88ab-b5a792ab23aa", + "name": "quarkus-container-image-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6f8c2a3-df85-5c2d-b8d5-0251d6f37924", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "601db209-a947-5fb0-aefe-8c2d04abda4d", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi" + }, + "version": { + "uuid": "f895479a-afcb-5f24-b750-031ab9e6502c", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cdaace3-113e-4e6a-b39d-7823e5729a1d", + "name": "quarkus-ide-launcher", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9dfbdf1f-a6b9-5c2b-b823-40b5ff3ac010", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "603b2397-3a5b-53f9-a573-1082d3fb0db7", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher" + }, + "version": { + "uuid": "94511d2c-d35c-56b5-8e1e-b5d428dabde4", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-840ea6c2-87e7-4e0a-a7a0-f410cfb9bb74", + "name": "quarkus-hibernate-orm-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9ce7315c-bfb1-5052-ac8d-e47197c6c22b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "606f41c2-cd4b-5475-8842-9e8b471324e7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache" + }, + "version": { + "uuid": "7b203c5c-8486-5379-815c-32ade7559d82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85de9ba1-4af2-4360-890a-fb3c92406e4d", + "name": "quarkus-bom-quarkus-platform-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6c91135-8813-5f4d-9939-1e16fab38eaf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=properties", + "base": { + "uuid": "608b078a-3157-51af-b251-236ddaf13b8c", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties" + }, + "version": { + "uuid": "52723653-6f29-549e-be2c-942ebf62e30b", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "properties" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbfa7f5-6442-40e1-adf1-3a2b65da4e2f", + "name": "quarkus-rest-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3c06c604-ba2f-5788-bf6f-71bd5d237eba", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6111dfcc-8e27-5cc1-83d3-76b1ff2f89da", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive" + }, + "version": { + "uuid": "16cba702-241d-5045-bbf4-9d68338d1d6c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51845f32-4339-46c6-80de-e862943c0c2b", + "name": "netty-buffer", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "c1344fcb-371e-568b-b2fd-e45dcd1dfa4f", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61d29143-3655-57fd-b805-dbb97ed8a131", + "purl": "pkg:maven/io.netty/netty-buffer" + }, + "version": { + "uuid": "7333a493-f187-51bf-a9e7-4aaee8d4197d", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1efe8d48-9ca0-41f0-a8dc-3b528e0a1dbd", + "name": "quarkus-kubernetes-service-binding-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bcc45506-7904-5489-acef-542c4975a3ed", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61ffebf8-b19a-5082-bbb9-fb68e9985720", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment" + }, + "version": { + "uuid": "0c520917-692e-58b9-9cd1-a475139a3095", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f38ca008-6e30-4570-8a52-86d6310e4fff", + "name": "quarkus-rest-client-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a66cac8-5dab-586a-ba18-9a9611985936", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "624a470d-b96b-50a2-a708-cf7d986dff11", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment" + }, + "version": { + "uuid": "551becc1-3756-540d-b0c8-cf93c4221f49", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3448e5bc-cf5e-465a-98cd-a6fc3633b54a", + "name": "quarkus-kubernetes-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "376edac8-5252-5d52-aefc-cce4f12c94eb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62c9ebc6-11a6-5975-a976-1f512103302e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment" + }, + "version": { + "uuid": "f92274a5-35e5-5080-aad2-b76bb272ecb8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b290413d-9e73-48ca-a143-5dafbb284bb9", + "name": "quarkus-smallrye-graphql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64966b95-c985-53da-80f9-2726b77e2e82", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "633b364a-02e6-5128-8a4a-6d5375a661d8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client" + }, + "version": { + "uuid": "29c2b97d-06e2-57bb-a02a-f341c95f5187", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d3b863f-5cf1-4841-9ce5-6c2bcb4c0d72", + "name": "quarkus-smallrye-health", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "85df758c-6a7a-54d5-91dd-95fb09354950", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "63ec2a64-4992-5542-a90a-46dc9805ecb9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health" + }, + "version": { + "uuid": "f45aa69f-6389-5e57-a3a9-8d5b794e6ebf", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-71b29963-fc1b-4654-a866-a1ec76cebd7d", + "name": "quarkus-credentials", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cd908986-4f09-5cc0-9e66-892b8b57da8b", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6411d779-f8ca-5c3d-9de4-815f4afde735", + "purl": "pkg:maven/io.quarkus/quarkus-credentials" + }, + "version": { + "uuid": "4e43b03d-3dd2-5622-bf17-9c71f88f2e31", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a22bfe5b-ef1f-4a49-9ce2-315d2d1beb7b", + "name": "quarkus-kubernetes-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ebabcbfe-9983-5cd4-80df-456011f84237", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6507bc59-508d-5fe5-ab71-4b1ca01ff7a2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment" + }, + "version": { + "uuid": "61d0ca9d-617d-526c-b0c6-c055419dbbf9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4e179fc-c681-47af-b0d8-c52d96bf1ea9", + "name": "quarkus-spring-data-jpa-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a8df2c2-0c79-5645-ad98-f7e19aebd0ae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "66bc1f0d-d9d4-5d6d-8d12-b8be47537cda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment" + }, + "version": { + "uuid": "dbce6f46-e85e-55a1-b74e-c7151a0c9cb4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3bbacd3-f091-424f-939d-c1378ecb782d", + "name": "quarkus-spring-data-jpa", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b44663e0-9ee5-5f36-916b-eb00f62a78f7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6740305e-0e0d-56ae-99c8-caf035a7c670", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa" + }, + "version": { + "uuid": "efd2a5fe-ab1a-5bc6-acdb-cf4389e7edd1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a73043-6937-4489-9298-1df0dfa993b4", + "name": "quarkus-resteasy-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b928e8e0-0d90-54c9-a1f3-d6e1299ab896", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67eecca9-6db1-5bd3-af32-003cdd1c1d47", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment" + }, + "version": { + "uuid": "ac361a7e-f8b1-58e4-990e-8f215a993578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb769aa7-79a8-4027-85f8-663a6e608e7a", + "name": "quarkus-resteasy-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fee6d74f-1ea6-5777-8b11-d7bb3da3f049", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "681cab9b-59b4-560f-a2f5-114ff84fb40e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment" + }, + "version": { + "uuid": "572b5e60-54b8-5150-b13d-0ad9285f22f5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22ddd669-6b59-4f75-9456-4107da25a846", + "name": "quarkus-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d51b6412-27bf-5cc5-b320-a4b042f6602a", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "685f9310-4963-5b61-81c3-e24794bebdb9", + "purl": "pkg:maven/io.quarkus/quarkus-datasource" + }, + "version": { + "uuid": "59f283e2-3341-5876-8371-8ea3d5a58ee4", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-546b6b7f-8ea5-4b1b-a68a-a2cfb81894a1", + "name": "quarkus-oidc-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "781835bc-e503-5bbe-8bca-d5f67ccc8a47", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68a69722-24d6-5a5f-87d1-3d8ec913a712", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client" + }, + "version": { + "uuid": "19f17aa3-1193-51bb-a069-9d0d5505ccab", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67c75e67-7962-4288-addc-33e4ec2a6a50", + "name": "quarkus-kafka-streams-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6748482-0c44-5bdb-9443-63c1f56f2e0c", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68eaa406-15e3-5cf7-9b9a-609af9365262", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment" + }, + "version": { + "uuid": "2c8b74a8-fd93-5db4-b3ff-832258c95c92", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e8531f1-ed6d-4fbf-8715-7955a4984ec9", + "name": "quarkus-devtools-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a326ce23-4646-5471-84ba-bd3eeeba3e33", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "695d2180-1c51-5de5-82bb-54269d863059", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts" + }, + "version": { + "uuid": "3de59fcf-681e-5a6c-9242-84eed01e02ce", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-220d857b-a0b9-4588-b0e2-b97e38aa1777", + "name": "quarkus-hibernate-orm", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b90207c1-91d5-575d-8df7-4c5e39e07035", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69c179e4-10ed-52ab-81f5-60806e45ff33", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm" + }, + "version": { + "uuid": "dae9dba5-ef0a-589c-92fc-b3642379468c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61297055-dc7c-4de8-83e0-49d8c789bafd", + "name": "quarkus-spring-di-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b09381c0-2bac-57a1-90fc-450d374d2e14", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cd910a-9ca2-5f74-aafc-2922fe1337d4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment" + }, + "version": { + "uuid": "a0bebf09-db58-5a6b-922d-8e63a2a41dfe", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88843e4c-c6ec-4599-b536-70f02bba4af3", + "name": "quarkus-smallrye-jwt", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6cf2155-c2df-578c-b569-62a6d85f2f9f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69d6bb9e-332e-5c9f-9fda-bdfdad05e926", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt" + }, + "version": { + "uuid": "d3f33244-139a-5c32-b81f-e550a54a7c7e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2098e3c2-f2b5-4825-94fa-27bc00d73abe", + "name": "quarkus-agroal-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "26052c2e-e865-5ff1-b9db-297e28cdf07d", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a84b29e-4eb9-53cc-afac-2616eb070f5c", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi" + }, + "version": { + "uuid": "015918b6-1eeb-5e10-a6dd-4d3c7022d4ed", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fed4b130-efcd-4ef1-8836-26b7b5cea154", + "name": "quarkus-jdbc-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ea086e9b-f88e-53a5-9ee1-c7f8ad45f58d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b182f90-d410-58a3-ac06-c131126a9732", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql" + }, + "version": { + "uuid": "c099b094-1ff5-5e8a-a2d0-b435756eff22", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7436880a-b688-4e53-9a1d-059439f90c5b", + "name": "quarkus-jaxp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b9a5a210-7483-591a-b0e7-03c1b6d69a18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b1b957d-a2f3-54c1-b168-9c6bdfd63634", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment" + }, + "version": { + "uuid": "fd21c841-7149-5283-a472-9c140de833d3", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-940e26c2-1b38-4b6b-86ce-610ad349447a", + "name": "quarkus-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd5cadb4-0a04-5aad-a4ed-5a1c1ee2f019", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ba3b95f-dd9f-5213-9c30-fd2fe57d104a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin" + }, + "version": { + "uuid": "5355eb2e-2bd0-5462-8dbb-df577008899a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc5df4fa-1d77-40f3-bf66-34fc9fa1bc52", + "name": "quarkus-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6cfa5672-5d2a-53bd-9b97-ea41cccac1e1", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bf685d7-274d-5000-aa13-d9e508197601", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache" + }, + "version": { + "uuid": "b1a3c4e9-de8e-5a31-84b0-1a06acd4338d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ad0b8ec-0237-49ca-acee-d4c8938d30ff", + "name": "quarkus-smallrye-stork", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0b78bc76-e6d4-59b2-8fb6-6940a523c0b8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c17e661-bf0b-50bb-b566-736d8851e3d3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork" + }, + "version": { + "uuid": "4e553315-531d-5d64-a401-716b1938301d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be2c8d3f-f2cf-4805-94fe-737dd12f4721", + "name": "quarkus-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15445e75-f052-5dfc-b4ab-63ff74f4bba6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c68269e-589c-5bca-8a88-e09700b75e18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb" + }, + "version": { + "uuid": "59dd6f31-ddc9-5ac5-a30e-17dd349958a0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39103775-fc22-4aae-bca6-c91989c8b438", + "name": "quarkus-resteasy-reactive-jsonb-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6035ecba-96b8-591c-8529-68468c94e5b2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d3faf65-3cba-5f4a-af93-fbbc9e494e26", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment" + }, + "version": { + "uuid": "030135a4-e2f4-509f-bee5-97dcd8da13d2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79a49f73-f087-4a3f-80ec-cabd0b66d353", + "name": "quarkus-opentelemetry", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "875c4b2f-35f9-514f-a92d-98e3a9469252", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d569531-d78b-5e63-a709-c526212a1b73", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry" + }, + "version": { + "uuid": "93155d5d-f059-5518-b74b-64353b6478b2", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9dc13228-fe20-4490-adb5-90be2bb678de", + "name": "netty-transport", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "4b4743bf-08af-5e85-ba49-089e61524d69", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbb1cee-48a4-51c3-b0b8-bde2f82066ff", + "purl": "pkg:maven/io.netty/netty-transport" + }, + "version": { + "uuid": "0a7f07a9-1246-5f82-b2a5-9db1253cae88", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b570be0b-25ed-4127-9643-16234239e2e6", + "name": "quarkus-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9eb64eb8-f576-578d-8d3e-04199b7a1e13", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e0f56bb-62cd-506f-8ad3-e5bf3a281056", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment" + }, + "version": { + "uuid": "44a3bda2-7dd9-54e3-9391-cf4f712e3aa8", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78f2a277-47d6-4d5a-b5e1-b410ffcded3b", + "name": "quarkus-scheduler-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fef6935c-7bb1-55f8-8530-638867de5d76", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e1f2194-d4bb-5499-9480-92ab9e1d8d0a", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common" + }, + "version": { + "uuid": "d0678b0d-9604-5b87-8663-53e56bfc8655", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-427a29d6-57fd-4675-8de3-cc6987fc7eef", + "name": "quarkus-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f63fe058-0590-596e-8259-30e03afa9301", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e7521fb-48f6-51f0-befe-83f9bebe57b5", + "purl": "pkg:maven/io.quarkus/quarkus-openshift" + }, + "version": { + "uuid": "8fede6ab-953b-5faf-b21d-7b6aa450de9a", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aebaf362-a78e-4c0a-aa0c-9a0e1c7da821", + "name": "quarkus-undertow-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "adf147ea-6b5c-54dc-93fe-860919414c11", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f483e38-83ee-530a-86c8-682f04cc99b0", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment" + }, + "version": { + "uuid": "0863688e-215b-5901-ac85-71676e8605ce", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7d36a76f-199f-43ee-82cb-7e1e6d21efc5", + "name": "quarkus-oidc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8c732e8b-08bf-5065-af2f-fc8de5ee76ef", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f80022c-2e29-55c0-b2ff-147a7fdcb1fa", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common" + }, + "version": { + "uuid": "beec90c4-1d47-54c4-a25e-06049a3d8516", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a8cff30-f924-42bd-b6e7-cca68547f433", + "name": "quarkus-smallrye-reactive-messaging", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cbdcb5a1-e1a4-57c6-8713-035ad9df9b46", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6fb5f32c-191d-54f6-84f2-9275e4a8b23b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging" + }, + "version": { + "uuid": "eef1a569-0e0f-524f-a853-4940e43bd381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68ae0f2a-018b-4eb4-86da-43832b8d89e9", + "name": "netty-codec", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "adfeb0c7-f3f8-5785-b3c5-a4baf26c16f0", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "70bb8124-bc03-5917-ab6b-5112011967e7", + "purl": "pkg:maven/io.netty/netty-codec" + }, + "version": { + "uuid": "7e3d3cb5-fcbd-510b-9c67-6145b6af291d", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-262ebcf1-72e1-420d-8c35-db55339f3386", + "name": "quarkus-hibernate-search-orm-elasticsearch-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee6c349d-9542-5e7b-a63d-1f79e5c6097f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "723a9e99-126e-5f6a-a9e9-ce835bca17af", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment" + }, + "version": { + "uuid": "23e9428d-af34-5eb2-a567-a05046922d36", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0eb27c33-c07b-4534-ae34-ea73e336dc64", + "name": "quarkus-reactive-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da5db5f5-c917-56c7-a30e-4b25a76ab42e", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73622207-8ffd-5713-9aab-e1f402d3794c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment" + }, + "version": { + "uuid": "42aa7bfb-20a1-577a-b70e-b458238b49c4", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-793c32fe-321f-4132-bab0-5439d9369da3", + "name": "quarkus-smallrye-health-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d15f2d6f-fa63-58b1-8477-c51099005fa9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f0aef9-e57a-52f1-94ff-ac68cec074e4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment" + }, + "version": { + "uuid": "45e1bd90-8585-5ea7-bc51-a20005f69f85", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8dbcf3-62a3-43a4-b4f6-c6bef0ff407d", + "name": "quarkus-grpc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b08a514e-d85e-5351-9475-c103a5c07241", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "74081d31-78ee-5bf3-8cfe-23a3c95b6cdd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment" + }, + "version": { + "uuid": "5f26769a-2465-5f70-bc07-d25cd408ce2e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f6e6a08-d7bd-4ecf-9a8d-8e037cb00f37", + "name": "quarkus-hibernate-orm-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1245d5f-a29f-5dbb-be97-44230b9486d0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7748af30-7cb4-59b4-895f-cb46016bbb72", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi" + }, + "version": { + "uuid": "6f021625-a14e-550d-ba6e-5908cb7aa320", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80a38ed5-1071-4547-8e56-7ef6bb55b058", + "name": "quarkus-spring-data-rest-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32594038-85b6-51ee-95b1-006283768db1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b1c876e-1842-5634-af41-eac112702f5d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment" + }, + "version": { + "uuid": "bcc259db-cc4d-51a0-a419-d9aebfa0644b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e155be86-3227-4103-9edb-77bae78824cd", + "name": "quarkus-spring-boot-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e28ec0c-4664-5492-b2f4-da4dc7b229bd", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b7f25df-d67c-548d-add2-633689b5cfa7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties" + }, + "version": { + "uuid": "2e26faa7-a8d1-50f7-a1d3-25c337ec6e66", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-870db237-fa6c-4865-8985-f52fb4a99c2c", + "name": "quarkus-jaeger", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c63c3edd-d82b-5d24-b833-dd95390a3153", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b85a659-89e9-525b-89be-2647ff8f425b", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger" + }, + "version": { + "uuid": "caec611e-23ed-5414-a897-abf59900d67c", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c99295ab-b562-400b-817c-419cf238d77f", + "name": "quarkus-resteasy-reactive-server-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "956d2efa-7999-569d-9143-46a4fb912c0c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7fe8e55b-1e62-58f6-9aa0-48da0a320cd6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment" + }, + "version": { + "uuid": "11b8a748-0958-5b72-b151-5b5aef1fee04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de65163b-f27a-438f-98fb-a3b39487a797", + "name": "quarkus-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "900e18da-2a3f-5572-9db9-6fdc7c1dddf0", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "803e21b5-c5f5-525f-8da9-75a953d18f1f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson" + }, + "version": { + "uuid": "a32c4f28-1462-5e39-b5e3-255c25ea899f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ae8a270-f743-4a2b-98a8-76fa043e62b2", + "name": "quarkus-keycloak-authorization-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "39aa0936-b303-5c34-83a9-492bebda9ddf", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8096f4f3-7458-590e-9214-5b3e61c58208", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment" + }, + "version": { + "uuid": "3f6c7f88-6862-59c9-902c-fd430d93bd4e", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f15ec78e-edcd-484d-9db1-3f9f7f991946", + "name": "quarkus-spring-web-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ce5d970-42fc-5788-9425-c6aebc1cba8e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80c688a4-d3a8-5445-b3a7-7508d55b95e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment" + }, + "version": { + "uuid": "327f7023-b759-514b-9bef-8cf5dff57545", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e9b381-db68-4826-bc61-817051e1ae2a", + "name": "quarkus-narayana-jta-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "70fdf043-217e-559d-9a2a-fbfb51701053", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80de8c07-ef1c-52cc-b8a6-888ecca10806", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment" + }, + "version": { + "uuid": "3a83f8f0-6e1c-5b58-a6f5-ef004c788c1b", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9bb9a4ac-f467-47a5-8573-2d7c6f5a6537", + "name": "quarkus-jdbc-mysql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cc737316-be25-50bc-88b0-e2380e514f64", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "835553fc-e319-52c2-bc48-55d70a2e8187", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment" + }, + "version": { + "uuid": "ba51d5cb-6edd-5938-a4e6-0cf9148a314c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de924e9f-a767-44d0-a261-b967399024ea", + "name": "quarkus-container-image", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c47e373-6eea-5f0e-94cf-5ec5b5a6c694", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84d91d6f-a02a-5104-acc7-df3f7971a499", + "purl": "pkg:maven/io.quarkus/quarkus-container-image" + }, + "version": { + "uuid": "6d96e730-0745-58b1-8e57-d0a25579fc52", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8250ddf2-3f04-45e6-8221-5a414ed5b9c3", + "name": "quarkus-spring-cloud-config-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3dc8aca-8374-51a5-af20-ea89a4221ca8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85456513-49a5-500f-bf9e-ad975600f71e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client" + }, + "version": { + "uuid": "e5b65e32-3acf-5321-a2a4-04fef8b0b8d6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21b37735-8fa4-436c-9039-40682c6840a1", + "name": "quarkus-hibernate-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c587df9-c5b4-52d8-b945-107f5ae06e67", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8549e270-4cc5-5e0d-ae98-563e798a0e6d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment" + }, + "version": { + "uuid": "93d1e295-f4c4-5840-876d-166c10e0cf76", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e42d136-b872-46a1-8694-aba9187bece3", + "name": "quarkus-hibernate-orm-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1113f065-02a1-5a2b-a24b-6b5a017ba2a3", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86cd0b18-a502-5999-ad85-121edc70dcca", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment" + }, + "version": { + "uuid": "0688e6c6-2486-5688-afc5-2c50c1ce5c8e", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6a140c57-6426-4102-abfd-2ad47a45be45", + "name": "netty-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "71811857-77f1-5c71-818f-39932ff0bb7e", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "870186f2-68c0-54d4-b632-cb524ed17e79", + "purl": "pkg:maven/io.netty/netty-common" + }, + "version": { + "uuid": "2bde327b-738c-593b-a11d-7e5261be5900", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e219e264-7a2a-4ce2-b739-530e599366eb", + "name": "quarkus-undertow-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f0dc1fa5-0fe8-5f34-99de-545c7100c8c1", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "87bfa2aa-0fd1-5f7e-816f-ccae9b3dbec5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi" + }, + "version": { + "uuid": "b96b6835-ac44-51cf-bf99-16a2d8e0b5e5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39c9b12c-f528-4ccc-867e-3e700fd00eb8", + "name": "quarkus-smallrye-graphql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66fdadb4-877a-5096-991a-81a0854af017", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "881457c9-aec4-509c-bfc0-55dcce7942d7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment" + }, + "version": { + "uuid": "3c00118c-2382-5aa0-8375-ce1ab309e54f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7875f88e-5485-4b01-9d8b-a58e422f3b6e", + "name": "quarkus-smallrye-context-propagation", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce888339-535a-5a0d-8385-3bcb4168b77e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "88825f7c-0148-5eb3-92ab-cb823d86c24a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation" + }, + "version": { + "uuid": "4470755c-2368-5c06-8788-14de4b1adc66", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fc7c15b-8c3c-4573-8287-23bfde8997a6", + "name": "resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dccda6ae-0f2f-5a0a-ab47-6c03ef2d7b74", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "89c6538e-8f5c-5dc4-8bed-e6ed0fc7d21b", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive" + }, + "version": { + "uuid": "fab2ee4f-2315-5ad0-bf0a-037f4545a2b6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6159804-c8d6-4237-9761-22f97bc8fccf", + "name": "quarkus-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae311bc2-7848-5c3c-a26a-f2b8f31d1447", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a3c8def-0399-56e6-947c-07a1fb4b44ca", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment" + }, + "version": { + "uuid": "f6a2eee4-b67e-587f-b70f-b727737658ce", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d8fa47-875b-4fbe-9f20-7340e23a90fb", + "name": "quarkus-agroal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f168de3f-4478-5789-acf7-b6c6730dbcc4", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a407fc0-9844-539e-98e6-c380d0722594", + "purl": "pkg:maven/io.quarkus/quarkus-agroal" + }, + "version": { + "uuid": "2a339e09-59c8-5907-9683-9786118e6b64", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-11b7fc0a-bc3c-4578-9667-fd9a2f001f39", + "name": "arc-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45f0c536-c04a-5344-bf57-540f7375ceb4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a7b3a75-2dde-56b0-b441-bfe58d6c94a4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor" + }, + "version": { + "uuid": "6df7d2d7-d694-55ac-85a0-7d2a6a430d16", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5c50423-a678-4d56-9953-7330c3c5e232", + "name": "quarkus-panache-hibernate-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce31edc6-2710-5460-bd71-2a660959e25b", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ab2fe35-5260-57bd-a745-bb22509ac334", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common" + }, + "version": { + "uuid": "a08b583a-f0bd-55a3-9bd3-c89250811f72", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6587db85-8577-4aa7-b4b5-50d4f65b5945", + "name": "quarkus-resteasy-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50df6c36-498b-506f-b5b6-f22cdca035a1", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8b692a6b-ce77-577a-949b-c2793aefae76", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb" + }, + "version": { + "uuid": "31c75ceb-977a-5f70-91fa-84b3c0e6c0c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1af8ffc0-d301-42c2-8980-82f971e3d585", + "name": "quarkus-smallrye-openapi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac3051ce-b7fa-5d1b-8071-4756e914723f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c22239a-29e9-5fd2-8048-9503219b4c15", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment" + }, + "version": { + "uuid": "7b245d36-b6d3-5d84-b9dd-282eb101dc92", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6095bef-676f-4f49-a3db-612888f8200f", + "name": "quarkus-resteasy-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f012f320-f329-5707-90f0-80233d44540d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8de15e7f-5d38-571a-a0d2-baa6da3ffefa", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment" + }, + "version": { + "uuid": "e389d577-7d21-5ace-8276-450f2617ec73", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8ba62f-fcb4-4d1b-88bc-fdf317d55a1d", + "name": "quarkus-netty-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c68068ba-f4ec-5984-8de9-0c803541cf3c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e018191-bd99-5687-b999-4bc37ec3f997", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment" + }, + "version": { + "uuid": "f03e1436-bf6b-5c9e-a0e5-9496f388e74c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a26fda24-bce5-43e6-8b99-a1e89165717a", + "name": "quarkus-kafka-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd66beb3-a365-51e7-aee5-fc221fc3540d", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8f06998b-ffcb-5891-af8f-f7c784117f2e", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client" + }, + "version": { + "uuid": "9fbc9520-e228-5105-8d3c-6fd5f0e33fd8", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33025a1f-2330-4031-be0a-cd2d50e9b2e9", + "name": "quarkus-elytron-security-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4818d536-ecd1-5ded-9623-90a74e5ab213", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9117ba37-1138-590e-a902-c1cb33c00ff3", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment" + }, + "version": { + "uuid": "bfe43c3a-b5e5-50c1-81af-f3ee7d0977cd", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-955f9c35-31d2-4825-a615-5d5c24b2ec36", + "name": "quarkus-reactive-mssql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d232d104-560d-5908-a63d-8f28ea917d8c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "919f5488-b06a-574d-9a79-fef7466711a0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client" + }, + "version": { + "uuid": "1c444ca8-d051-5508-b4c9-019bed0a1531", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16606645-7867-45a5-b5da-6dae9c252d11", + "name": "quarkus-devservices-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4cb84e06-cb6b-5bc9-992e-23061c9135ad", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b0c71e-9d37-5127-88d1-32b5584fea3e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql" + }, + "version": { + "uuid": "fe48a8a2-ad04-5236-8bf9-63412e2b649d", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7a70cd-8eb7-490f-a75d-94dfb14619d1", + "name": "quarkus-caffeine-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc54d22-b269-5028-82a5-eb5fac9fa9e6", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "93ee44b8-118d-5fe0-98b0-c8811c36f64f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment" + }, + "version": { + "uuid": "ab10c629-cb60-58b3-8939-4fcbc12cdec0", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7a8e72d-00f8-41e5-815b-433e55057177", + "name": "quarkus-container-image-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "570db129-156d-5573-a298-64c82816868f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94511500-7e2d-5455-94cc-92336ce41ffd", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment" + }, + "version": { + "uuid": "2faa4353-5e95-523c-9e00-1b54c6a21e3f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05906e73-54bb-4c23-9172-898c76bd6d55", + "name": "quarkus-spring-di", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a5692e79-903d-5125-9df2-0b8bc3418bac", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94a4a80a-b08f-5fec-89fe-84bab45c7edf", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di" + }, + "version": { + "uuid": "c3320e62-70a1-5e58-9858-dda7172306ab", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62cb4303-30df-443f-bbd1-16e8e0701445", + "name": "quarkus-hibernate-orm-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9091fb5c-790e-5c4b-a5c4-6373814af611", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97734d36-fd79-5fa8-b849-14b92bc5547f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache" + }, + "version": { + "uuid": "74088374-2888-59c5-a21b-9de6275f5c8a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a1a98e3-53bf-4e66-9fe5-13ac6b6d049a", + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "805c7c4f-8b37-5dc1-baa8-d193b49e9397", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978a364c-8815-5146-9f51-df97ad59dc2e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin" + }, + "version": { + "uuid": "1a8e0e98-de1d-59d2-9702-03caa5827a41", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39ebd0ce-1c2e-40be-80ce-22b10eb8b48d", + "name": "quarkus-spring-scheduled-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "29cca5b2-78a8-5ad2-9935-32e52e736e1e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97af3578-54eb-5a12-a6d2-d0f39229cc93", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment" + }, + "version": { + "uuid": "ff268798-f104-51a1-8278-75f64881d56f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4d78d43-66d4-4e33-a0e4-9d163885efaa", + "name": "quarkus-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "592e29f9-da5b-56c9-9d65-28ebaf6d825e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97eec557-775f-542f-ba39-f15c6d84442f", + "purl": "pkg:maven/io.quarkus/quarkus-vertx" + }, + "version": { + "uuid": "e7343811-020f-5b12-943e-8cb34cdaa63e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5b2e399-8783-4c82-bf88-c922daeff8d4", + "name": "quarkus-reactive-mssql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d83c7999-1f0b-5dfc-9013-68e0db3accc5", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "98909be2-ed23-5db6-b364-6eeeda380e57", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment" + }, + "version": { + "uuid": "7dcd7aae-6975-5ac1-80d5-c20e95d4b699", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cc633ec-b6ac-452d-b4c5-d3cb497c88ea", + "name": "quarkus-micrometer-registry-prometheus-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1532096-16d8-5f77-b992-6a8281551132", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b077a81-e987-595f-885a-8c0a2e5a2cb4", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment" + }, + "version": { + "uuid": "358086a9-a452-5cca-a9af-71d39039f097", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a15d46a-bb11-40b5-8320-24670429d36a", + "name": "quarkus-resteasy-reactive-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee333e07-55af-595b-b0ce-4ea31785a8e3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b3468b6-cba7-590f-91ea-e408afcf66a5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment" + }, + "version": { + "uuid": "1825399a-e96e-5c0d-8573-4789961cc988", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-912eb1f1-f103-4b17-bc87-0d597056e584", + "name": "quarkus-logging-json", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ffc7fa3-6fba-51c8-a81a-ef4f7c4fd2a6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b735f2f-6ac1-5323-94d0-db693fd230e6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json" + }, + "version": { + "uuid": "fd07d24e-1029-5de1-a3bf-6b270a5139a5", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e70cf4f4-c7a5-49d0-9efd-96173cd3d73c", + "name": "quarkus-container-image-util", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aaf4b651-c295-57d5-a024-8b83a4b165f5", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bca9925-dedb-5efd-9a91-2e84c276f60a", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util" + }, + "version": { + "uuid": "207a230a-12a6-5c63-822a-278e66616c3b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9aa8f03-f9c7-43a3-803a-bec9ed624ab5", + "name": "quarkus-container-image-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "86731ecb-63a2-571e-b9c5-f5cebdc88a2e", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bdb7289-f52b-51f4-86dc-d038b99795d0", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment" + }, + "version": { + "uuid": "c76b5491-ca1a-5835-b587-10a74f11e531", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b214ec95-bc6f-4aa4-bf20-555f320034d8", + "name": "quarkus-resteasy-reactive-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3617f8da-e4f2-502b-b5a3-88939f7f4a42", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c14c788-bf52-596e-9734-779af6967284", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment" + }, + "version": { + "uuid": "65d504ee-537c-5c0d-8be6-d8930138d3d4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d557514-5b60-4186-a560-c2d513993881", + "name": "quarkus-resteasy-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f2787103-d68b-50bc-a837-c99cdd1c2879", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c3864c6-f91f-51f3-9db6-f70304b7425e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment" + }, + "version": { + "uuid": "adc6fdb3-e783-562c-ba53-a01772beb6af", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21fd301e-8966-4ffa-a7af-e4f639430f55", + "name": "quarkus-kubernetes-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca59ae9-378c-54c2-8924-44c4178ed253", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c66fb58-da6c-5c32-ac44-20a02871050b", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config" + }, + "version": { + "uuid": "6d6010bf-e5bb-5d4a-b523-a4fd21600186", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22f7d732-1f1d-44f3-bb4b-99d1b3c08a2f", + "name": "quarkus-spring-scheduled", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dcbc748a-5278-52b6-a9ea-6d059857fe3a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c924777-a53a-5e47-a978-e4b7b7f0372e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled" + }, + "version": { + "uuid": "a6245182-ff1c-56fb-a548-0e6c98ab1f4f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f4f85f7-1eff-4487-869a-28717ad63a00", + "name": "quarkus-devtools-message-writer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c3089677-7ed5-5e80-bcb0-7c9bf3d206ff", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9df043cd-9411-5a0c-b890-0bb8f486f239", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer" + }, + "version": { + "uuid": "9ca065a0-36ee-5213-b715-cdbbf893562c", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-014069d6-89c8-4277-aac0-6963bd5005a7", + "name": "quarkus-arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac9b931f-aa73-559e-83bf-3ca2a91950c8", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e4c3064-2c18-528d-aa07-701eea978318", + "purl": "pkg:maven/io.quarkus/quarkus-arc" + }, + "version": { + "uuid": "3b13dd42-42a6-58bf-afc9-353894a765a7", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dba054e-c67f-4ecc-b9f9-28278f946f46", + "name": "quarkus-smallrye-jwt-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "72b8bc46-3c8d-5107-a96f-bb334d88e484", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e64c5b0-7983-571a-8b07-1343eb6c07a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment" + }, + "version": { + "uuid": "da1597a1-9955-5cea-84e6-9e77a75d77c1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6634e80c-0a68-4852-8ed8-6f1412906dc1", + "name": "quarkus-micrometer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8149cb27-43eb-530d-a5c3-9862d8751717", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ec07e2c-785f-51f0-a277-07119eb3c876", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment" + }, + "version": { + "uuid": "077f4245-969c-5509-9850-57b828d5a874", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3af81bab-d8fd-47aa-b86f-c08d77bfb53d", + "name": "quarkus-smallrye-reactive-messaging-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5e6f667e-1bd1-5c85-bad1-52f5435657ab", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9eeb7ed8-013c-55cf-a68c-22ff0aea137b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment" + }, + "version": { + "uuid": "68913a3c-f609-531b-81ef-7f640e828566", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7da82dc2-dc81-4112-a044-6ac0dc771cfd", + "name": "quarkus-avro", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4093e8d1-c6b1-56b6-a26c-914a596ac177", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a21b936d-f87a-5868-bf25-c2da931fc246", + "purl": "pkg:maven/io.quarkus/quarkus-avro" + }, + "version": { + "uuid": "817d4f59-f970-5273-8cdd-6bec155c197f", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc1a9190-6b70-4834-8e0e-48b74fd172a1", + "name": "quarkus-jdbc-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0875f742-36df-5828-96c9-af456be678e7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2aa172b-411e-5444-8b2e-d42cb4415f8b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql" + }, + "version": { + "uuid": "a6c0b74c-5619-537b-98a5-97f7772723fe", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e53806d0-e917-4ba5-8c09-c5325e4e4a29", + "name": "quarkus-scheduler-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7daf0177-7c44-5ce2-abdd-c10da99f4cab", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2cafc28-0a55-5463-9fa7-8d02dc70391f", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment" + }, + "version": { + "uuid": "556b676f-f02f-595e-a33e-ce3e19b828a6", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c3625f7-cede-42f6-941f-2cadd1dd02ed", + "name": "quarkus-smallrye-health-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1ac15027-2f56-56e9-854b-6c4f2a962b62", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44bef55-7920-56ab-8345-d3f36424051b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi" + }, + "version": { + "uuid": "ffe857ff-5085-5e3d-9620-296c47d47956", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d368d8b-0b86-4df5-a0e7-82382f49f40b", + "name": "quarkus-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b7ee19f-b6cd-5170-8b2f-c2d8054a2d52", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a462f106-9e7e-551f-ae30-9c385ea9c469", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common" + }, + "version": { + "uuid": "bc5e3e5a-9007-5fea-84f7-32d5c220be54", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a1956e07-7ad1-414e-bee0-f0332544dde1", + "name": "quarkus-jdbc-oracle-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "74773f81-2b44-57ef-8cb9-640f3773974d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a46c9370-742a-5834-aeca-78315f0cef6e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment" + }, + "version": { + "uuid": "e68f7c7c-ae7d-506e-9c19-8288b87110b1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63df3915-1b7c-4e1c-8711-81404b9c3882", + "name": "quarkus-bootstrap-maven-resolver", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87748030-57fa-5eb1-8949-271458c4eb89", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a4d204ab-0029-5780-8b93-4988d8b6f602", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver" + }, + "version": { + "uuid": "245b37ef-554e-59b2-ae47-f62ed4cc66ee", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-891df0b5-9db2-489c-8a78-8988e576f238", + "name": "quarkus-mutiny", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88ee5c2b-40b3-503d-8000-24a7f6490dba", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a50c1576-98e5-5270-bee9-03db1bc4e63d", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny" + }, + "version": { + "uuid": "558092c3-cec1-549d-80a7-1ce75c7c8a2b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ee77a41-e8a7-4b5c-b576-f9125b138d84", + "name": "resteasy-reactive-common-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c16d9da6-2b73-513c-94d0-f952e66b9167", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a517a429-c199-5768-a449-b12f40024453", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor" + }, + "version": { + "uuid": "6b4684eb-705f-54ef-b04a-f5087b69838c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0eb5efa-d271-4c76-a518-d8248b2c6bf6", + "name": "quarkus-spring-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "515b624b-e7a8-5890-afad-ad61efc2de64", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a56c5039-7863-50d3-a09c-2a13355cf17d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache" + }, + "version": { + "uuid": "d2ecb6ae-29f1-5a86-93fc-0f072dbbc07c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c769adc5-011d-47d5-bc2a-e58edd9ecb76", + "name": "quarkus-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5ae7faa-1491-5cc9-b011-e86818db6e5f", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5b81d9a-cdea-5e75-bc2c-943d256d3a9d", + "purl": "pkg:maven/io.quarkus/quarkus-qute" + }, + "version": { + "uuid": "289de4a4-d62d-57ff-8cf1-7eeec2b4b2d0", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-008baaa8-8056-48c3-b019-24a82b3a4bf1", + "name": "quarkus-smallrye-metrics", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd26dc77-054e-502c-bc44-3c6b80e74fad", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c9830d-7f73-5389-9dba-e9cb66ba91d2", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics" + }, + "version": { + "uuid": "2a37afdd-d720-5891-b85e-ca69d6d9c46f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98ddc554-a57b-4498-b1b2-b0b64e276ede", + "name": "quarkus-smallrye-opentracing", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a3ba153b-e142-52ff-8678-6a07343b1840", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5d3be76-744f-5808-ae51-cd7152c10edb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing" + }, + "version": { + "uuid": "0483a86b-4be2-5e41-9ab8-9481363bdc29", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f451c0cb-ec89-4a82-8f9a-7800470d831c", + "name": "quarkus-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a6fda76-aba0-5f9a-8eec-962e34658d62", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5f50241-7b05-58ec-a676-5c7f98134e67", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment" + }, + "version": { + "uuid": "0620bcbf-dcf9-5a3f-8a2e-ada6a9131612", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec4b24cb-1c51-4692-a5ab-b5d57ed62005", + "name": "quarkus-resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e2882ee-e8f2-5caa-bf21-d228086703e0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a63eacd6-584c-5dd6-ad64-daa1377f4af0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson" + }, + "version": { + "uuid": "fc9dbe74-fa58-5478-9216-30891383f491", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ef03e2c-bb4a-49bc-888a-18cc01d830e8", + "name": "resteasy-reactive-common-types", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da8218aa-1bed-5788-82a1-3d0cbe251c66", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7006e0d-50f6-5e50-a334-097abe32ac60", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types" + }, + "version": { + "uuid": "7d9453dd-b7f7-5648-8eed-6504c777dd0a", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad24d95c-698b-43c8-a36b-57e68ac1cba5", + "name": "quarkus-devservices-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "669552ab-82ce-5109-b276-ed2b71b37951", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7071bc7-2ab2-573b-998d-fbc29756eb93", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql" + }, + "version": { + "uuid": "907db670-f9ba-52ac-b8e0-106b7b21b2c3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29c17706-1d5a-40ae-8498-087c7932c404", + "name": "quarkus-smallrye-metrics-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6fe294e9-f209-5483-b98a-9c9308a9ab2c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a91b7192-9283-5f97-805b-321b3349c545", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment" + }, + "version": { + "uuid": "02a8a9ea-afec-50e7-8afd-8c38bdc90381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfa97a5d-0a3a-422c-b533-495986937ab0", + "name": "quarkus-websockets-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8718bc4b-91f4-58b8-8ce2-a2b62a1582b3", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9b32bec-1535-58aa-bd9e-5e5b6ae73372", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment" + }, + "version": { + "uuid": "a9331cac-8dd6-5970-8ddf-e6dd187663cd", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15dbdcaa-d711-4c14-a539-6e75bfe91a59", + "name": "resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa9f9f22-7ec2-539b-a3e6-db40a84ad862", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab04c64f-975d-5573-a615-7d2bbdae0bfd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson" + }, + "version": { + "uuid": "bca9dc53-6971-5836-a00e-ce89d99e5a8c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc31759e-a95b-4640-9bbc-c2fe5954eb79", + "name": "quarkus-jaeger-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb08d125-73d6-5057-8e9b-f0a6f83359c4", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab7c597d-4fb3-5346-a38b-93a986f86aaf", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment" + }, + "version": { + "uuid": "25632245-49ed-5c4b-a915-663d53c8be7a", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d0668cf-8d30-47aa-9d14-63806309258d", + "name": "quarkus-jsonb-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88714dff-3c3d-5355-9918-6535fdca4139", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "abd436b3-604f-5064-822c-14b38771497a", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi" + }, + "version": { + "uuid": "d2084924-2339-59ae-8d71-668f4b37176c", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92f47d5-6d74-4dfa-9a03-1017989ea3ca", + "name": "quarkus-resteasy-multipart", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a7d46a6a-8561-510e-9e2b-d588b6ab56b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aca1f02c-7f73-5c80-997f-391190a548a7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart" + }, + "version": { + "uuid": "ec5f69d6-0b02-5a8b-8d24-501783dc5514", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6cb4a43a-380f-40b3-b196-54b1f46395f8", + "name": "quarkus-narayana-jta", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5313707f-d662-5b75-a796-642bda3b77c2", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad2dee77-d472-5cf1-96ef-83a361d66fed", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta" + }, + "version": { + "uuid": "d50fb45f-283b-53fa-872c-f7ca5f53d4fc", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90f322fe-ae88-4695-be77-8f60e6b06d3d", + "name": "quarkus-mailer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0688ee06-5888-5216-957c-94739a0f0869", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae4bf923-0e17-54f3-a6a2-e429010c9743", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment" + }, + "version": { + "uuid": "765cdd7c-5b8f-5793-8864-3a10c765c677", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a58c69b-be61-48cf-8ba2-af220e958f23", + "name": "quarkus-kubernetes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b230e2bb-3462-5899-880a-280f096d0e73", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae5704d8-da92-5d2c-9fad-37b7b9d8e2ce", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes" + }, + "version": { + "uuid": "ab28e575-2a40-56da-b59a-8025b69b36fb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f9e643e-0c95-4c7a-a496-a755dcfcdfac", + "name": "quarkus-oidc-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "13bfa14d-7e22-5378-aa7f-98ec6dc4df8f", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af73962a-e96b-5b6d-9bb4-7055d5005aaf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment" + }, + "version": { + "uuid": "ed12e1be-db8b-5daa-a559-ca91dcafd1d0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28e51f46-74c7-49cd-8c3d-d1a5afecfbae", + "name": "quarkus-hibernate-search-orm-elasticsearch", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d4f24d3-9d33-58e1-bcb2-fe6e3561f16b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b003df58-6a0b-5761-ad37-aebccd7ae80a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch" + }, + "version": { + "uuid": "2d9612fb-9177-5271-9aad-1d9576c124e0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4249d006-888b-4ecf-aefd-bbc1aa25bb4e", + "name": "netty-handler-proxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "623955d6-e466-5312-9ac7-54acab01333e", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b056e5c5-162b-59b4-85c7-2a2f4055db3b", + "purl": "pkg:maven/io.netty/netty-handler-proxy" + }, + "version": { + "uuid": "b20cfab0-0860-5b79-8785-2f81bf383389", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78450b9e-300f-4e78-85a1-35441de0ad66", + "name": "quarkus-transaction-annotations", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8f6fa2ef-e221-5e0e-bd6f-2eb291f0a872", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b094d2f2-26f5-589f-a9aa-b2293997787e", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations" + }, + "version": { + "uuid": "0085ea99-2b38-5c5a-a407-75af872e7141", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e97119c-0fde-45b4-9b9a-425ca2acdf3f", + "name": "quarkus-swagger-ui-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "57c5a24c-606b-5a93-9c2a-75781efc6465", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1937ef8-56bd-51d4-83a2-7c5cc5c2c2a1", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment" + }, + "version": { + "uuid": "60f441f3-d7d8-5024-b00c-7c1b8efbb077", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f466ccaa-7abe-47f7-aaee-babef544025f", + "name": "quarkus-resteasy-multipart-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ef86130-0f3f-52b5-b90b-ba8ca10a46a6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1e53941-21b4-5688-9d60-de6797c2450b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment" + }, + "version": { + "uuid": "33235e9f-a1d9-54bb-9cf1-2e20231f70f7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67cc2dc5-fee0-48ef-b6c0-7fbf34c8211a", + "name": "quarkus-rest-client-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45578196-ca80-55ee-9774-a4c44e749451", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b34fc052-8b75-5228-b4ea-29e2ab12bf46", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson" + }, + "version": { + "uuid": "75e92e4d-e142-5fcd-90bf-dbc83b51ee7b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5aa8685-839d-4a12-b7cb-1f413418ebf0", + "name": "quarkus-agroal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f894eaba-d07d-5744-9c29-25100d5c450f", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b50622f4-f7b2-5458-9c2e-9e22f1448f76", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment" + }, + "version": { + "uuid": "67eec0b0-0d30-55c5-a312-a6b94d94ab32", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-248daae5-2712-4d93-afb5-04001ed14f36", + "name": "quarkus-datasource-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3ed57da3-c579-518d-9a2a-8584fb119536", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b512e741-660a-5a85-829b-87e3449751ff", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi" + }, + "version": { + "uuid": "4cf989c2-7a4d-5e25-8384-e3c4748acafe", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97d3be1c-7f9f-4676-b32f-fe8c98e68b87", + "name": "quarkus-grpc-codegen", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cf95cbe5-417c-59e0-aa98-00bd2e5a4675", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b580173b-e9d4-53f1-9970-e0498e968f46", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen" + }, + "version": { + "uuid": "2f598641-f28c-52ee-87d2-436a9a32e2b7", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c1338d6-3b15-4d64-ab3e-a10c4fab864e", + "name": "quarkus-security-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4125770e-844a-5eed-aca7-f4154a21fef8", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7f7f1e8-25ad-529c-a456-c475ed534902", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi" + }, + "version": { + "uuid": "78b19386-0ab9-583b-9ace-3f99176c753b", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b406a7eb-2a55-4a47-8a6a-30859cd87319", + "name": "quarkus-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7df6f9b-ab20-5f55-b526-c007b3325b2a", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b8a536ff-e7ba-5ccc-a0e2-b59d6686167a", + "purl": "pkg:maven/io.quarkus/quarkus-cache" + }, + "version": { + "uuid": "1ac726da-4b50-5760-a8b5-f622f6ce8fc4", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f78207a2-0a6a-4972-8c81-2b0827135754", + "name": "quarkus-resteasy-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "73bf5c22-bb19-58e4-bf6f-a3ced74c9597", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba6ea902-3057-5e32-b4c4-564c667d5864", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi" + }, + "version": { + "uuid": "02ddde8b-12f0-5ca0-991c-a3f844a2a1dc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-abd5ee81-d6ec-4a56-92df-f2086ded8879", + "name": "quarkus-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "59daad81-458a-532e-8e4b-bac83b96abc6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bab686d6-fd7b-596e-a316-20c86f16b245", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment" + }, + "version": { + "uuid": "80b9e62d-9008-5d69-a5bb-cd0b03c8134d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83a64c36-23c6-4450-a8e9-ca5bb7e6177b", + "name": "quarkus-spring-boot-properties-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ecb7f2f-6e43-5fc4-962a-ed48dd1935e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc7db2c8-98df-5847-9ff0-b66674644633", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment" + }, + "version": { + "uuid": "92e2bbb5-a0c8-5c9f-ae43-781fb70ac666", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-811bdc6a-22a1-4e19-a700-86361456bcf1", + "name": "quarkus-extension-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f6a5013c-4047-59b3-9fea-882f7cdb0450", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc887a8b-fa8a-5674-a92b-ae516c054e8d", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor" + }, + "version": { + "uuid": "564602ff-daa0-51d7-b0a4-49b1959571b1", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b8ba8cf-d579-4811-abed-fbdca1363287", + "name": "quarkus-opentelemetry-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9d4415cb-eb17-5b29-ad16-f202f3d06a14", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bd6e8f49-b1fc-52b5-bca1-63c2f5bc8881", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment" + }, + "version": { + "uuid": "42705cfa-6638-5dd6-a0a1-ec273e7b3bb7", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bfc6b7bf-551b-41db-ac76-3858e44c4950", + "name": "quarkus-rest-client-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88a8026c-0e3d-5889-9692-0dd368c00273", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "beb64354-4f34-57f5-adeb-55dc35b8252f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson" + }, + "version": { + "uuid": "b2e7d260-aa64-5011-8abe-d5b5f3c550b8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb0e264c-0781-438c-82d1-6a3f4adafe74", + "name": "quarkus-hibernate-validator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ffca768-1aac-5286-b6b9-0345aa49c08c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf7829a4-4d05-5542-b6cd-d3858f454b96", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator" + }, + "version": { + "uuid": "7d28776d-c068-547d-8aa3-8dea9c4e2e41", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127304a6-d01f-4f8a-8685-bb175bc628ae", + "name": "quarkus-rest-client-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb1a455a-f6ba-554d-af23-34fab2c30ed5", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf90e9c9-dbdb-5812-a939-846823cdde5c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment" + }, + "version": { + "uuid": "ccd1e9e5-e77c-5942-9195-e89f29048b26", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46b5ba29-c5e1-422c-bd89-a4cd7d32918f", + "name": "quarkus-scheduler-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f8a3d3a1-a04a-56e3-b5ec-7c0eeb92be1b", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c179b651-c10e-5827-9dcc-07c24d6963ca", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api" + }, + "version": { + "uuid": "aebae22b-7fad-5724-aadf-f7e93ca21312", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e15a6ad-2737-46e0-bd65-bcd52e336e09", + "name": "quarkus-jackson-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "117ffc0d-d066-502d-9ab0-db9a87e5bf16", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c1b86c4d-7b22-56ee-afb4-bd47394447ed", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi" + }, + "version": { + "uuid": "e3c590c3-a642-5a25-92f5-c74633e19f7f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b30ef8d-3d57-4f2a-84d5-3792712a5c92", + "name": "quarkus-reactive-pg-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae0a9100-69a5-5795-953a-06a41f1f2cbc", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c237b650-b89b-5888-aeb1-9fedef81f41b", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client" + }, + "version": { + "uuid": "b89903ba-462e-5340-9102-6f5ec3b28bf6", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ed8f6a1-0abe-45b3-95eb-4d10f4c549ad", + "name": "resteasy-reactive-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "51fe20ab-f04d-5a95-b6e4-b677b7fa4ee8", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c24bdc76-cbee-5602-8925-cb320cb67033", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client" + }, + "version": { + "uuid": "bb7b4eb4-8570-5880-a9fd-5bfbcb470654", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5efbc662-6a25-48e1-a1f5-82695b1637e7", + "name": "quarkus-infinispan-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e7e676-1070-5342-9efb-b0f15e12e1c3", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c304a290-381b-5ec7-9c62-dae6bdfc4712", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment" + }, + "version": { + "uuid": "02009d12-be92-56e0-bb8a-c7103317b927", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a088b32e-bcd3-4454-92ff-7304dde872b9", + "name": "quarkus-rest-client-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7da94023-a664-5603-b887-6146d1d8a79a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c3792597-babb-5cdf-be19-edf43e05de75", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment" + }, + "version": { + "uuid": "98d5f791-db47-5589-8faf-17eb6bc9e0f3", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c4d89d8-2cd3-44dc-a7db-667df14518a5", + "name": "quarkus-security-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c48073a9-9245-5fd9-a574-b009fafc5115", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c4600f25-a848-5551-98b3-72a94b7d8856", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi" + }, + "version": { + "uuid": "5a692d37-61f1-52a8-9520-2d543e0c5c31", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d08c424a-7e73-4b95-8d82-1147e41cec83", + "name": "quarkus-class-change-agent", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "201e7f0e-c1a1-56cd-84fa-640545076a13", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c57fc5d6-3a8c-528a-baa1-3891ef904b8f", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent" + }, + "version": { + "uuid": "fe5596ef-7151-5682-9fdd-4c0dd78b707d", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c542ebd4-13cc-4af1-ad60-63ca9441b2d4", + "name": "quarkus-spring-web", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "91d52121-2e68-50f0-b83c-6017c3eb60d1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c618deec-c4c6-527f-aca7-3de7bfec0062", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web" + }, + "version": { + "uuid": "b3fc4345-ddf4-576d-9f53-1f4dde44b98e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5791f9bf-f838-4ba2-a1ad-39aa09c0152b", + "name": "quarkus-hal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "21b1b624-f6ca-5b26-875a-8ed46a9c0ec0", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6298040-511d-513b-b3c9-2e11972101f9", + "purl": "pkg:maven/io.quarkus/quarkus-hal" + }, + "version": { + "uuid": "ed41b090-b79d-52e0-9570-30368d3070fb", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38c8759d-36e5-4db3-b309-afd4ed74cb72", + "name": "quarkus-mutiny-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4b8c9126-6fd4-54c5-8e9b-0f56fb13432b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c62b7ee3-361d-54ab-9d31-52cfc86baa59", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment" + }, + "version": { + "uuid": "c4512ecd-bd30-5d5e-963c-d75c38c4e75e", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-608cf97a-3031-476d-b2bf-2645ab517851", + "name": "quarkus-grpc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0fc58592-7b41-53b3-810b-c02a9e213a8c", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c7c15f09-74a1-5c81-aa71-0af88c0e48fb", + "purl": "pkg:maven/io.quarkus/quarkus-grpc" + }, + "version": { + "uuid": "0584ccb5-f648-5cfc-82f1-146e452a4bee", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95be5c33-d6f8-4ed4-92f2-9baedb8a154a", + "name": "quarkus-oidc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a95f54c6-930e-560c-a51c-4d02b4739661", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8042e2e-4275-51ce-921a-1dcae7fc6761", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment" + }, + "version": { + "uuid": "3e0b9512-38c9-5de7-a662-39d3f36a3723", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e95a024-ee66-43b9-835b-2d11d5b493c0", + "name": "quarkus-resteasy-reactive-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dc8315da-46e5-536c-a642-07e59fad8155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c81b2d5d-9c8f-5286-851b-fec430be2d1d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment" + }, + "version": { + "uuid": "990e83d9-051c-5dad-916a-fead476aa663", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-093f8d34-1829-444e-b121-fd46d2e5a21d", + "name": "quarkus-reactive-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "454fde09-ab4c-527f-a07a-3c391e5c8050", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cab0d335-9258-5745-be2b-ae02849cccca", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource" + }, + "version": { + "uuid": "b6744a9f-1826-5338-86a3-24a219de8a6c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8f3d595-7c07-4985-aa1b-7f6ae8ecf957", + "name": "quarkus-scheduler-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "feeff538-4da3-5c93-a9e9-4837e2ab9089", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cc20cca2-8727-5b76-8462-adb1a4faa9bf", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin" + }, + "version": { + "uuid": "2483cc67-fa54-5dfc-8893-11ec9d90cd42", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-602547e7-1ca6-4ccd-aa95-19219c7593a6", + "name": "netty-codec-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "fac6032a-a3fd-56f3-922e-65a6bda2358d", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ccec22eb-096f-5a75-b202-76243cef0248", + "purl": "pkg:maven/io.netty/netty-codec-dns" + }, + "version": { + "uuid": "c2c003af-376a-554f-b25b-40daaed23825", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10b8f85c-d5bf-4887-af22-1a42526378ef", + "name": "quarkus-resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "997392c0-a505-53c2-b7a5-74bcc72276f6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cdc79fdd-3e5e-5215-809b-85fc11bf9608", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common" + }, + "version": { + "uuid": "9a4d1bdf-74ad-542e-a639-3302f7ba899d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4fb3aa8-cc92-473b-8c65-dbd6ee2936a8", + "name": "quarkus-spring-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "807d6824-d29f-5abe-90bc-f8a69a3d96c2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ceea7fb8-e1de-57d7-bede-60be4dca1173", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment" + }, + "version": { + "uuid": "e4de23fd-6bce-59ed-9731-d52c7508d17a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83341b2f-4f40-4aae-aab5-bf4bc15a2465", + "name": "quarkus-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "48382e1d-9bb2-5d55-bf16-5b2a0a8bd1b6", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf328f3f-3eb4-5533-83cf-b5a3e4bedc43", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment" + }, + "version": { + "uuid": "529aecde-30c7-56d4-acc7-3c58957e57aa", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f8138770-4cf7-48e9-b95a-5c6864329306", + "name": "arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba957310-890b-538d-b97b-c05f2322bc0d", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d21608ed-1ee4-58c1-99a8-413afa5f8ccf", + "purl": "pkg:maven/io.quarkus.arc/arc" + }, + "version": { + "uuid": "c819ccd9-8801-5468-a2c6-9a61b33066e3", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e955d9b8-7ace-4a5f-8d82-119b7dd30d1f", + "name": "quarkus-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e67580-8cb6-52f2-ad55-392b99d3f2ae", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2df7e32-548d-52f0-b31d-61463b78ce90", + "purl": "pkg:maven/io.quarkus/quarkus-core" + }, + "version": { + "uuid": "7389656f-66f0-51d7-b6a7-455db9a42336", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-430d898a-9b8b-456c-9151-e2b4e0783056", + "name": "netty-handler", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "48f562d1-fdfd-59b7-bd23-861503f31e5d", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3f4c0dd-ef9c-54fe-b6dd-b37380718a57", + "purl": "pkg:maven/io.netty/netty-handler" + }, + "version": { + "uuid": "a6382423-1382-51d7-bcd6-cfb2eab7d764", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dca658aa-d4db-434b-b895-d5e09ddba8fb", + "name": "resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4bcb077e-f913-54ce-88c1-67f1973627d9", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d4c55081-7168-52ed-a06d-d0ab9e759c41", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb" + }, + "version": { + "uuid": "21f067d5-a339-56ae-b081-0c3e6910a773", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e89a745-9815-415c-a8fc-b5497276f778", + "name": "quarkus-resteasy-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32359031-6957-5c22-9f49-489e923fe155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d5c854aa-d090-5a8b-bfbf-f11937c47d10", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment" + }, + "version": { + "uuid": "82696dd7-340b-5ca9-b6a7-4ab6c465f5ba", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada002be-08e4-435f-bf50-8e6d55f9b77c", + "name": "quarkus-smallrye-opentracing-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "856c4344-2286-5319-b39b-69f20904dbf1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d60f7e69-97cf-598f-8d1b-fcb93ab64dbd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment" + }, + "version": { + "uuid": "e764743d-ab22-517b-b774-9034f3c1c8a7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9796fe6-4b5a-4b7e-8653-cb95a1ff838b", + "name": "quarkus-kubernetes-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d5813eb-0754-5eb5-a9fd-fcd36abae683", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7a5f7a6-29fa-5062-92bd-ab610b82cfcf", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi" + }, + "version": { + "uuid": "d01383c9-fc4a-58ee-8989-443e28f3bf14", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85f7155f-dab6-4acf-bd55-edede3d537bc", + "name": "quarkus-funqy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "25538422-f163-5615-9733-f625dfa931b9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea70cc-1d71-5a39-b561-9849b7d6028b", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common" + }, + "version": { + "uuid": "c82d962b-6c27-5358-80ad-85acb0c9485e", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89daeb0b-4b00-4a9a-8023-4493375007b6", + "name": "quarkus-kafka-streams", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fba76d19-f75f-5ec3-8872-8fda2fc9c0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d86b5909-6339-5e49-866b-959bc438d0d1", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams" + }, + "version": { + "uuid": "88d4c728-e472-5778-a2a9-41789dd19093", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ab92847-6833-4cbc-889e-9e3b642f34a7", + "name": "resteasy-reactive-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c2f71c2-f2dc-5fb0-a106-f1bc68152e35", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d87835e6-dacd-5973-a64c-cafa75b464bc", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx" + }, + "version": { + "uuid": "0d0a31c9-bb9e-5d9a-889d-c4f0df9721d3", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-650b38c4-a6dd-4548-b1e3-e51ee70fe873", + "name": "quarkus-infinispan-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0279c963-bcb0-50c7-a934-4760a3c662f8", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d880a9de-1fd0-515b-889e-cb5b9c41f88c", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client" + }, + "version": { + "uuid": "62046603-515f-5349-bcc2-3a7f3d663547", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1b1b481-bffc-4251-b88c-8f7bb1a7ebbb", + "name": "quarkus-rest-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14785047-21c1-54c4-8f96-94ea0a9b2c1c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8dba6cf-5bc5-5e20-b593-59981049c708", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment" + }, + "version": { + "uuid": "14fc877f-ebd6-5108-a32a-6e04dc3b475f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-690d153a-efba-4ef6-b4aa-2d5cae094615", + "name": "qute-generator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66171e88-dfcf-5b5a-a0fe-3a6e747d49a6", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d9271688-db97-54a8-8722-f3bccd40680e", + "purl": "pkg:maven/io.quarkus.qute/qute-generator" + }, + "version": { + "uuid": "383c0104-7806-5449-ac08-f2f27401671a", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be426b66-efcf-47c2-9754-d2ebfd69f56e", + "name": "quarkus-grpc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b14c7b20-9b29-5c4a-9b84-bb0f66bfdaae", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "daf1f007-48ad-5a93-a9d0-dc0c4047d945", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common" + }, + "version": { + "uuid": "bbb398d7-242b-52fb-982b-75dc1d8e8517", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-966819c8-4b85-4652-bc70-741853a3bea1", + "name": "quarkus-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a303325-e379-565d-b5cb-14b8ac2fda0b", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db42d908-5b79-5b91-8ba6-fa7fdd7ac877", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment" + }, + "version": { + "uuid": "41885b45-cb19-55fa-a9ab-2dda632044f1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9605d0d9-87de-4b9b-b587-54e284668fed", + "name": "quarkus-smallrye-fault-tolerance", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c8781235-c16b-5e9f-b94f-95aeec466dc8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db56d4dc-1396-5cd2-8c0e-66be2437859d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance" + }, + "version": { + "uuid": "1412d8f8-dfb9-50ff-8efd-6f0ac64ecad7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-013f6933-003d-4ef5-a401-24c420f56ff1", + "name": "quarkus-elytron-security-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f616fe4a-a0bd-590f-982b-1bb95971314b", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc70fd20-11e1-53a5-b48d-8bae6254ee82", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common" + }, + "version": { + "uuid": "74c5e920-6550-51f1-b0b1-99939e267379", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59a180d8-feee-48d2-9aaf-a6513e310bd2", + "name": "quarkus-vertx-latebound-mdc-provider", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ef5ab1b4-46e1-5339-81ea-5e55d7d0321b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc91c9d5-b0f4-5297-851c-5a472cd087f8", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider" + }, + "version": { + "uuid": "e7c3c379-25a6-5094-ac3b-7b874a4ac817", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2062c257-0917-4fd1-bd7c-e5a210910f9e", + "name": "quarkus-kubernetes-client-internal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "169e4ab2-eff5-5d1d-a88b-52bc508ec8a7", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ddf5ef6a-eab6-5e2a-8c6b-6f45e0a6a8fd", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal" + }, + "version": { + "uuid": "7f390824-05d2-54b5-ba89-4f8bd977f018", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e4a901e-0b68-419e-8212-a227cd8e71ff", + "name": "quarkus-jsonp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b03f382a-9cb6-549a-8745-dcd1187bfc67", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "df4d2555-8aeb-5ab2-93a5-4a36ddbb10e1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp" + }, + "version": { + "uuid": "ee805429-45cb-5eac-92f9-8e11f4a66528", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80bc7637-1960-4c68-90ca-4dc28fc8415e", + "name": "quarkus-config-yaml", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d5c1f5f4-03a4-5d77-8dab-fc1b0e4bec04", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0cfa164-e24f-5b71-a915-b4858839cdf9", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml" + }, + "version": { + "uuid": "d9709101-564f-5048-b0f6-37eda91a58cc", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bbd4631-877a-4cd1-9e7c-a6b3aa1f084a", + "name": "quarkus-smallrye-graphql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "79739ec7-e63b-5a7d-9525-e351fdf1169c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e112d705-5c6c-5861-82b9-5ff3c03e9f35", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql" + }, + "version": { + "uuid": "7f6e2d54-2fe3-5622-a494-53d0a6085615", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a28718a-6654-4edb-b6e1-ff9de003532f", + "name": "quarkus-resteasy-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b72385f-2a52-5862-ae6f-d44b0b864115", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2cbbd8b-1589-5bac-8c83-0f1c8e9a4945", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment" + }, + "version": { + "uuid": "0f000bd1-dc2f-55f2-9603-ad98e863f030", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62974fba-c40c-43e3-ae89-6c661116f1e0", + "name": "quarkus-funqy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "586516a1-bae6-59f3-883c-d5161830f3a9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b726f7-1ffc-544c-b0f5-cc2814ebc939", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment" + }, + "version": { + "uuid": "3bdc2633-4b46-5918-a015-a873309d8238", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b2e4ff2-32ef-4e07-b427-bb0d226b8679", + "name": "quarkus-arc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c85f974c-55ff-5023-ad95-e323ef574b20", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3f03d71-d00e-52f7-a235-38ba3c986354", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment" + }, + "version": { + "uuid": "58ff6c08-889c-52e0-94b6-0e9c83590b4e", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27573c70-8e12-47bb-b75d-b8ed41d7e89f", + "name": "quarkus-grpc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3848a13f-d5b0-5eae-81e0-e2a7a088bce5", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e45ada50-e9b6-54dc-82c8-e8b9225aa855", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment" + }, + "version": { + "uuid": "bf3f57ee-649c-5c63-9910-08a9ac7d15dd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cc097e7-0dfe-422d-a8c7-ced13be42e49", + "name": "quarkus-resteasy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1a7817fa-dbdc-52b5-ae15-9082a79a2415", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e60775c8-fe8f-5978-8449-2f016a9b0c4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment" + }, + "version": { + "uuid": "cddcd2eb-6050-50fc-a751-2594beb8dfa4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b87fed48-0e65-4836-8abc-4b61e726ff18", + "name": "quarkus-resteasy-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee5d61e3-0323-53c2-ac84-1ef590b22c04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e669abd1-f82b-5919-8ac1-aece2f195ea3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb" + }, + "version": { + "uuid": "665eadea-578a-54ff-9fa0-c0030854bb1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfec06df-816e-48d2-a5a4-227d3f2319bd", + "name": "quarkus-mailer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "95d0c540-d850-51d9-990c-7cce57293931", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e78e6247-5399-599c-9ba9-1e640160036f", + "purl": "pkg:maven/io.quarkus/quarkus-mailer" + }, + "version": { + "uuid": "be287883-1030-5b26-8df5-ee3d2cea0f1a", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d475896-ed03-40a8-9566-10ce151f6a58", + "name": "quarkus-jacoco-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6b7ad12-44ba-5448-abce-a4611f9c72f8", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7ac0bdb-68a4-5eba-97f6-0e73eaaaf17c", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment" + }, + "version": { + "uuid": "b50dbcc0-2d0d-54b6-8449-06ce9eef1447", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbb77795-a272-4d8b-b96c-962a725dff02", + "name": "quarkus-grpc-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e58951cd-7e8e-5cd9-b060-a5b55d076ce2", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e80c7cbf-a286-52b1-ac4d-514b834ee826", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api" + }, + "version": { + "uuid": "b1487a52-d207-5661-ba97-e054fd1f5e3e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aab96740-45e5-43f2-8390-96913f4221ff", + "name": "quarkus-panache-hibernate-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4e4d3a7-0ff0-518e-9b10-4deb8e88f0ce", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e811932b-e98f-5c7b-a767-0d738dd995a4", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment" + }, + "version": { + "uuid": "f913b684-02c6-5b50-9b43-fed9fa87c765", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86d9d71d-1c84-4148-a1ce-ea15349aba4d", + "name": "quarkus-vertx-http", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "528a575d-5ed9-5aaa-9882-14701d64b51e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e883632e-4401-5912-a5c7-de4c7af2ae01", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http" + }, + "version": { + "uuid": "c040304d-22b4-5d85-9b32-55ae9bfffa52", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53a65c3c-f086-458e-832b-69c04378d7c8", + "name": "quarkus-devservices-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c092f342-19b5-5cea-ba43-14cb48a07962", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8adee06-4843-5d22-bf57-92f0cba83251", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb" + }, + "version": { + "uuid": "74a34ae2-79a7-5516-9180-79bd64df9b4e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b191a999-9c96-43ca-b4dd-fb4b95f4566b", + "name": "quarkus-websockets-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e67eca41-b7a7-5a1d-a9e8-12c9b49c8861", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eafd7de3-5568-59e0-bcf4-770c03a8cabe", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client" + }, + "version": { + "uuid": "f4b66788-0c3f-5fa1-8246-c76346a9d1c7", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6ecbbd9-31bf-46fd-afda-8082120f5260", + "name": "quarkus-bom", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "269366bb-0d1a-5058-a752-d2cc434431c6", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=pom", + "base": { + "uuid": "eb87eb3b-0dbf-5f1b-9198-94f453fd74f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom" + }, + "version": { + "uuid": "c0201f09-3d0a-5739-9cf3-8ad19dd177f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "pom" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1eb4772a-bf1d-4f54-9078-adb6f5de182a", + "name": "quarkus-jaxrs-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8e4868f4-f769-5997-a539-9a39cfd17982", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebcd4297-30fe-57fb-a57e-802840b432bc", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive" + }, + "version": { + "uuid": "53c02973-c2de-5a01-9973-2410e071c50d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-77e38c05-e480-494e-b2cd-d47343c7a753", + "name": "quarkus-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "62015e78-a111-5b6e-8ed0-6b21e2c819b9", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec1b3715-dc3b-5d58-b839-f5c1ea208fc7", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment" + }, + "version": { + "uuid": "395d0c26-cfa7-58a7-bd0c-5a31f12a9f5e", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8a9a75-ccf4-4bd0-9ec0-c2b947602e42", + "name": "quarkus-jdbc-mssql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d6241b2e-c46d-561c-b8d8-244f7df7e60e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed09daa8-fe60-5150-9bc3-80a922275e74", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment" + }, + "version": { + "uuid": "a9e43bab-f27b-5a8a-b905-acdf1e011ec9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fc0c2c9-cb88-4e61-9421-785575d71b94", + "name": "quarkus-elasticsearch-rest-client-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "68d3db42-c217-5cfa-b90f-de03550b974d", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed33883e-cc22-53fd-80a0-36888b8f605e", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment" + }, + "version": { + "uuid": "6b290289-1fd6-5b72-918a-74ddf3a67400", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b1fb757-698b-451a-988e-4981f06da7d0", + "name": "quarkus-hibernate-orm-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "96067568-b359-56b1-85df-4cf4d5ddc4f1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "edd63df2-6b50-51cd-9709-0a231c19f89a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment" + }, + "version": { + "uuid": "590f04c1-a30d-594c-ab0f-6f0a2367da28", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43bb5522-f8bf-424c-a355-159f43444802", + "name": "quarkus-hibernate-orm-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "384fb55f-3690-59c3-9712-dcbe3d478837", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ee8503c7-2ea8-5f6c-87a4-573ee712d1c0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment" + }, + "version": { + "uuid": "0d5d0124-c32d-58b8-89be-cead6a776f64", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad6306f7-6154-4775-8ea8-f763bfe0f3d7", + "name": "quarkus-reactive-routes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fbb05629-88e5-5674-b504-76eb76a64cd2", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eebdff8b-0aab-58ab-ba5f-6b4c7aebda98", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes" + }, + "version": { + "uuid": "b8086ec8-1779-53d4-9039-adc82ff66861", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21db41a7-5d44-46b7-87fc-95f3417a784a", + "name": "netty-codec-http2", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "b5d0e298-efc7-55b5-a7dd-b78996689fb7", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef580dbe-9fdf-522f-93a7-aef4219fb71a", + "purl": "pkg:maven/io.netty/netty-codec-http2" + }, + "version": { + "uuid": "9accb509-993f-5f93-a36c-cf507582f098", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662fff21-daee-434b-8f55-a64e21b2e441", + "name": "quarkus-oidc-client-reactive-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45547554-2c80-528e-ac46-ca83133ec585", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef86f974-20cd-526c-b7f8-14fb80a1f084", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment" + }, + "version": { + "uuid": "72bcd38d-cf79-57a9-9f62-85c1f672ab05", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69393a69-98da-4426-b814-20f6ca44fea4", + "name": "quarkus-logging-json-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16af5276-7f3b-567d-88e1-189ddbc1b1ab", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0347c68-31d3-551b-b452-988c218428b2", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment" + }, + "version": { + "uuid": "26f32942-d724-5a0d-b072-3b44af40571b", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2a671aa-786d-4d70-a832-3e833dfeaad6", + "name": "quarkus-apache-httpclient", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f97f2fd1-b9fe-5285-8775-3b6f0acbb386", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c07707-2d3c-56be-a8a9-2c806e49d209", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient" + }, + "version": { + "uuid": "217278b8-5cd9-548e-a04b-2296557b3fd0", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c74fb5d-4161-429a-aafe-9d768ddd7163", + "name": "quarkus-websockets-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36858a25-2eba-56a5-8877-8bd9f17c5dbb", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0d9ca44-ef29-5feb-a477-37859493bc9b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment" + }, + "version": { + "uuid": "621e668f-41fe-53a7-96f0-f986103dae3b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91d643af-450c-4c6a-80a9-d55a38eb7f71", + "name": "quarkus-credentials-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fec58798-c2d9-5308-86d8-994336dad58e", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0e1122e-d37e-5641-9427-59491383748c", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment" + }, + "version": { + "uuid": "59aa699c-bb4a-538e-adf4-441855b38fea", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0973486-3136-4c68-9275-92f6e6a39268", + "name": "quarkus-resteasy-reactive-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14d78abf-0845-5e04-bcda-a523fa5b1455", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0f0c6f1-d24f-5705-9e9a-fcf627a1d4c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb" + }, + "version": { + "uuid": "da82c5d0-b620-59eb-88c8-ab3cf62dc29f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56b7e34e-abe8-4180-8dbc-a0aeae6af3fb", + "name": "quarkus-rest-client-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1f120145-691e-5886-946b-cde974c59f96", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0fe896a-e8f2-5e61-b765-adf9f0526b91", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config" + }, + "version": { + "uuid": "bce8fbbd-4207-50e1-a76f-59b67ca59fc9", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eef8f7cd-876b-48bf-bb62-1d1bf799282f", + "name": "quarkus-reactive-mysql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f734ec00-f2b0-529a-91e2-94d3dd5875c1", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f121d3e1-6188-5288-8ac2-83ed471a08ce", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment" + }, + "version": { + "uuid": "79a25ffc-602c-5034-b55c-a32a8922b983", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95897968-1b5a-4cb0-9f28-1388a3119668", + "name": "quarkus-devtools-registry-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a93abe61-4511-5388-bc92-fcaa9be4bb38", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f1252251-456e-5f2f-a68d-0a0c513198bb", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client" + }, + "version": { + "uuid": "b926dee3-9b8e-51c4-9f86-d13d261e5c4f", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-591524a2-6096-4a68-8de6-fb3cf5d5affd", + "name": "quarkus-micrometer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e939d082-66a9-5fe0-b190-c098bfbd5612", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f14cc204-8f1b-5060-902e-a2e00aad23f2", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer" + }, + "version": { + "uuid": "cba221ec-b1cb-5dc9-b194-262ff36443ff", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-102b6d6b-905e-4229-bc15-3f118d26aec7", + "name": "quarkus-quartz", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "11648f8e-675f-51eb-aae3-3e40ad9b1178", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f29a31fa-e2dd-520b-b980-420fbee5326b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz" + }, + "version": { + "uuid": "60645d69-3a02-5e14-b927-319b8dd60ae6", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8a2feac-a9ac-4664-8e83-f2b1e3e2c8b7", + "name": "quarkus-resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "225cedf5-8a3d-571a-964e-addf20718734", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4ea9a18-592b-5dbd-9b7d-234c8e523512", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive" + }, + "version": { + "uuid": "901e6e40-6bc9-5bee-96cb-cd4ca571c98e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59710b04-2df6-469c-8b45-8cf0ff826175", + "name": "quarkus-vertx-http-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32c4828e-1191-585b-a481-1598d8da7815", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f556a5a6-1969-5992-ae52-1430aad891f9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi" + }, + "version": { + "uuid": "8af646d7-5a51-59fd-9328-791543cd1c5c", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20d3d91a-c402-48f6-88f8-1f8648b1e02f", + "name": "resteasy-reactive-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7b4b25b-c224-5795-9d79-ba5bf1f0c7c6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5a9b0f6-b7bf-5bfa-83cc-9de4c403dd64", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor" + }, + "version": { + "uuid": "9221c6e9-fe08-59d9-9301-9236ea906aaf", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b898f7d-3cb2-4ec4-af73-48d7e6f626f7", + "name": "quarkus-resteasy-reactive-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d568bc94-a6a6-5510-9e60-aef0df7e4e28", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f60a5134-41da-518d-9fef-337a58d15926", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment" + }, + "version": { + "uuid": "fee91d1e-e00f-5697-ad27-caa0844bf7e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ecb52933-aeae-473a-82f9-a1b9fab9b3fe", + "name": "quarkus-scheduler", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5f62b6b-706c-5db7-96cc-2f5666a05487", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f62c3c31-8cd0-5de0-ab91-a3afdb05d786", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler" + }, + "version": { + "uuid": "fec0f312-fb75-55ed-9a9f-3cd2372d7683", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1725bb8-81f0-4344-9d93-0f4ed4734455", + "name": "quarkus-mongodb-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd124370-245d-503c-b4a4-a7e755ae8cdd", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f702a7a5-4ce5-5073-a22a-407778c5931d", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment" + }, + "version": { + "uuid": "343bb041-791f-5dd6-9b9d-3374b78da85f", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46a56d3e-d55c-44c0-a6a1-e187f966b92e", + "name": "quarkus-caffeine", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b7dabb-49f5-5fe5-b33c-cfd3aaa60a1f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f79a6a97-7816-5abf-a159-c492616d357c", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine" + }, + "version": { + "uuid": "40e8fdfc-9e4f-5fd1-a546-8acab5fafa1d", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc7559fa-fcc9-4b10-a3fc-448510790327", + "name": "quarkus-hibernate-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ea927d5-5f2d-5538-ac45-a54f6d4e4513", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f81cfaf3-0ceb-54f0-9171-120e509fd7b7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive" + }, + "version": { + "uuid": "367d45c3-e5b7-5b50-9c7f-62ddbe600fbd", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5331ffbc-79e7-49a2-8c4a-221ab76a35ab", + "name": "quarkus-smallrye-jwt-build-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "992ce94e-a7f5-5272-b837-345ad0f503b9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f825cbd1-9668-55d4-94d7-3ddc9cbdf4a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment" + }, + "version": { + "uuid": "d686325c-4ae5-5f03-8bc6-3de81402452b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-789a4d1e-fce0-4bb3-aa33-d92514d6e206", + "name": "quarkus-oidc-client-reactive-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d79179f0-6fec-5b7c-b158-640dea77fe96", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f9a5116c-f4d3-5faa-94bf-0f14fa09b739", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter" + }, + "version": { + "uuid": "538bec89-69d3-5cfc-a9d8-237e5a51e407", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234c3199-c4ca-4821-a483-54ecff90c70a", + "name": "quarkus-oidc-client-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b9fb1f9-f2f9-5c08-8eb7-a614a362e66d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fa4011fb-d6d3-5191-a4bf-49a93e063d9d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter" + }, + "version": { + "uuid": "1bd61d7f-a4f6-5ba4-ad12-1aba94c2bff9", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bd4233e-d61a-4ba0-a3f3-1d7e3b8a708e", + "name": "quarkus-rest-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b15ba520-a315-5e71-8330-e835f569504d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb6347e3-04c6-5fdd-8f2b-929cae211192", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment" + }, + "version": { + "uuid": "bf4135b5-79bb-5f57-8d45-53f755883379", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38841359-b95b-4d67-8041-1d30d1532308", + "name": "quarkus-jsonp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "949cddbd-bd4f-5baf-b012-df5bc2f835e6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc2ca471-59a3-54b8-8e44-5e87d8aae35e", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment" + }, + "version": { + "uuid": "3e7256b7-3354-5957-986c-7bc5cdc61b0f", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0feec1-e291-47fc-a341-b5589b7a7b18", + "name": "quarkus-jdbc-mariadb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "427ac6de-e23f-513f-bf84-da830f776322", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc7dde74-e9ce-5055-a26b-ef114fee1bfa", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment" + }, + "version": { + "uuid": "1feaf60b-57fc-5b39-b7c8-e1e5ad5b6c39", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f651c33-f00f-48fa-9a9c-6165889783ce", + "name": "quarkus-rest-client-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e8dfe966-ecee-53f0-a815-6f868d2b2947", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd2eb40f-6220-501d-a020-a6bf30b08c1b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment" + }, + "version": { + "uuid": "c46a3ee2-e815-5260-abce-8a88dfcdd481", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fd84e1d-6ec2-4bf7-9052-97482f7e6e6d", + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "288c8dfb-be21-54b4-801a-13f03e3a7de6", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fed8bd05-98d6-5ad6-b63e-95b67c2d5501", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment" + }, + "version": { + "uuid": "2de7c15a-ad26-5e7c-92e6-aab028ee5a3f", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-0481", + "title": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-24T00:00:00Z", + "modified": "2024-08-02T05:10:56.412Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-f44cd4be-ff38-4113-8870-427088038534", + "name": "resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9034b075-cf42-5792-834e-c29cd9d74da6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2b0226e-c82f-516a-8704-64d8c0bc3f53", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common" + }, + "version": { + "uuid": "08c021d3-e5c2-5f14-838a-c52f59526abd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-0481", + "title": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-24T00:00:00Z", + "modified": "2024-08-02T05:10:56.412Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-0481", + "title": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "description": "In RestEasy Reactive implementation of Quarkus the insecure File.createTempFile() is used in the FileBodyHandler class which creates temp files with insecure permissions that could be read by a local user.", + "reserved": "2023-01-24T00:00:00Z", + "published": "2023-02-24T00:00:00Z", + "modified": "2024-08-02T05:10:56.412Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-378"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:a364ddf4-59b1-4561-b356-773ccc1881ef", + "identifier": "https://www.redhat.com/#CVE-2023-28867", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-27T00:00:00Z", + "modified": "2023-11-08T16:47:07Z", + "withdrawn": null, + "title": "graphql-java: crafted GraphQL query causes stack consumption", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-28867", + "title": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "description": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "reserved": "2023-03-27T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T13:51:38.55Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-c75ad779-f881-4294-91fc-13f15fbe5937", + "name": "quarkus-smallrye-fault-tolerance-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b753449-ab99-535d-ae48-1e4652e27c9d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0053930b-fc7e-55f5-989b-9d24c42013af", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment" + }, + "version": { + "uuid": "4b69e35e-eb62-5323-9fb8-7eafc5a1e4cd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-963a5dc2-f752-4322-91aa-9202ce5b7627", + "name": "quarkus-kubernetes-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4fce46cc-d8ee-50c7-98e4-69b6f4196c9d", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "00753d70-3fe2-5037-8769-a3c88017cf2a", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client" + }, + "version": { + "uuid": "46cb9b22-db73-569b-a256-d39a586eccc3", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10924038-802a-4b46-bea1-ba40f8a69d68", + "name": "quarkus-reactive-pg-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9cc51d22-3ffc-5276-b66e-1264e8182dee", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0144a611-3fe3-5d49-a582-df718dac1942", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment" + }, + "version": { + "uuid": "e6ab830b-ec56-5077-a356-a758b8a1ec5c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b10c491-6cc7-4e34-8fda-4304354ee8be", + "name": "netty-codec-haproxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5dcb0860-e5e3-59f0-848d-996d11c20100", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01ede4e7-577b-5b8c-83c2-35e67072f081", + "purl": "pkg:maven/io.netty/netty-codec-haproxy" + }, + "version": { + "uuid": "d2aeff2e-cd45-5cd5-bc74-d51493da6f5d", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4069f58d-012b-42e6-a77e-000c62f03316", + "name": "quarkus-websockets", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "faf09dd1-b130-5628-af99-a385018a4957", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01f503a1-5e40-57f2-8a52-b67d6f404d23", + "purl": "pkg:maven/io.quarkus/quarkus-websockets" + }, + "version": { + "uuid": "6e1c6213-3a16-51f4-a1e5-7f5523cdf720", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea171641-55ac-4468-b81b-316fa79fc0de", + "name": "quarkus-openshift-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee9c4594-9b58-52da-b70a-da630780c549", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02313e6b-a3fe-5c66-94a3-0c86f7ecb3fb", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client" + }, + "version": { + "uuid": "583347d7-1842-51bf-8c28-ac834a3b75cd", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30ce168f-eb43-4b4c-9358-12dc79f90972", + "name": "quarkus-reactive-routes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "172a965e-e5ba-5e46-981d-9757b8ecc795", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02eb391b-299f-5dfc-9c4c-298e8968529a", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment" + }, + "version": { + "uuid": "58126ec0-fbf6-5dda-b7e5-a25110e84426", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c02d592-d862-467b-9c71-103132700b9b", + "name": "quarkus-openshift-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7067713-9cd8-550e-b213-781fabb2211c", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04532551-313b-559a-b97c-583ecc4698ec", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment" + }, + "version": { + "uuid": "6014ebba-8ec6-5435-9f87-8d0c72a8d211", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af60960-e683-45e0-8b17-a51483f95706", + "name": "netty-codec-http", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "82ba94c0-71df-584b-86e7-2139624ad86a", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "045c6e1d-aa20-5e7c-94f1-21b64e3eca51", + "purl": "pkg:maven/io.netty/netty-codec-http" + }, + "version": { + "uuid": "d54f383c-04df-52c4-bae2-7e9c3cdf9a02", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e44cd9b-4d69-46e8-a111-0b07f9a6c017", + "name": "quarkus-hibernate-orm-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c4b6669f-4b7a-5def-b683-87c242523c82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "052dc802-11ad-51b9-aa38-58f15de32de7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment" + }, + "version": { + "uuid": "8a9ba57f-1303-56ac-a4b3-5baf4ddf5ce7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb185e6c-c910-4ff4-b263-42bd43fae2e1", + "name": "quarkus-resteasy-reactive-jackson-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "52c2f192-4efa-5eb1-967c-8939b6ff9578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "056802f2-3e2c-5206-a404-b3b6cefdcba7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common" + }, + "version": { + "uuid": "dccc1534-4d79-5dd3-a7b8-0450eaf05f9f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d741f3b-de3b-41c0-a09b-e778a10d50d8", + "name": "quarkus-spring-data-rest", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4de1ff-52df-5b0e-acb9-68d97df641b1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05cc8b99-1c5b-507d-bd60-c4f1ef8c0bff", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest" + }, + "version": { + "uuid": "1a08fd68-72cf-5a64-95b7-235f7f3c4200", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-930c4e5d-370b-4fb3-88c6-7a602a33af09", + "name": "quarkus-resteasy-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8116e156-f21a-5af7-80a8-e816ae881c8a", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05d27302-4e62-5271-9422-ea5ad094f2b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson" + }, + "version": { + "uuid": "dcfde42e-704f-52e1-b668-de5457271533", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-caad14dc-7bb9-4ca2-bdea-5a302ee09cb6", + "name": "quarkus-datasource-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2fbe4407-ac04-5760-aa82-a4c3fea02a66", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "067ed295-e259-5cde-bab0-2be520fb9a4e", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common" + }, + "version": { + "uuid": "bb1a32ba-5bb2-5d2c-a44a-bec96cb54df0", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2fd1018-55a9-449e-8179-7c7133a73e59", + "name": "quarkus-smallrye-graphql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6d669066-1aed-5e7f-a15c-24a4f5889f9a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07b0350b-13bc-5d76-a010-d7d581558de3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment" + }, + "version": { + "uuid": "ae2df958-63ef-5dba-b320-0aab51cf2167", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-040633a2-c94e-4d10-9e93-8a397e19b4a4", + "name": "quarkus-smallrye-metrics-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d7d7a9df-d1fe-5f23-a542-cfc65acec28a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08116430-432a-544d-ba75-e6e2af6f1dae", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi" + }, + "version": { + "uuid": "810aff8b-bcb7-5b91-8820-83805a824589", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b03dbf7-47e6-4a26-9d40-10f963dffa40", + "name": "quarkus-funqy-knative-events", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6676117-c46f-508b-8c2c-38c1d9eb06f5", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09beffbc-6f1a-5c3a-908a-ab96701fa478", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events" + }, + "version": { + "uuid": "bc91be4b-3ea7-5aea-8d11-d2d088c124bf", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cecd6c10-5e51-4661-b215-e716a0fd5028", + "name": "quarkus-resteasy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d315a338-83ee-50d2-b558-666f9a873014", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0aada068-a0d8-5d14-b2a9-fac85d5b9d36", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common" + }, + "version": { + "uuid": "be0d3b4d-c77c-52c4-a81f-849249009250", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-beaa0bc7-60f2-4ef9-aa3a-8d4d332bc63c", + "name": "quarkus-bom-quarkus-platform-descriptor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50cbf391-7d3b-5e6e-8529-6f995b8ed895", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004?classifier=2.13.8.Final-redhat-00004&repository_url=https://maven.repository.redhat.com/ga/&type=json", + "base": { + "uuid": "0ba7b14f-83c3-5748-8b63-d8393c9c47cf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor" + }, + "version": { + "uuid": "f866e0e9-4fa5-591f-a17d-055cab03cf9f", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "classifier": "2.13.8.Final-redhat-00004", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "json" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07a82943-c3ca-40ff-bcd8-b26b49b269c9", + "name": "quarkus-devservices-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d63b4298-8cb6-5dc0-b5f9-c65c4783e54a", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0c3d1642-f967-52c6-9563-8ae08aed1534", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment" + }, + "version": { + "uuid": "4184d1c4-d0eb-5486-ac5c-30342a302664", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-890fe6a5-a463-4223-8eb2-ae0741e27b48", + "name": "quarkus-devtools-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d44d6dec-d7a1-5910-9d8d-6c9f704eb5d2", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cbb3638-6fec-54e7-85a4-7816e3477c1a", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common" + }, + "version": { + "uuid": "e906f715-8c37-570a-86e9-e4a64aeb9c44", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d610f39-ecfb-42cc-b1bc-0c3dfb5b3383", + "name": "quarkus-micrometer-registry-prometheus", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "24893cca-eb67-555a-ad5d-8c5c8cab8d29", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4de25a-e9c8-50eb-ad77-87f0c9c18261", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus" + }, + "version": { + "uuid": "bc558ab7-8541-5d1f-98b4-84f4919c7532", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88136270-63a0-486b-b333-4448f6b3e0ae", + "name": "quarkus-smallrye-reactive-messaging-kafka-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d62ff1c4-016f-5956-a900-c2c4a7379742", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e019485-c37f-5857-9221-646d283e9fa0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment" + }, + "version": { + "uuid": "d1e90615-bbcc-5937-ad66-dd04fed3fbd0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-798a1f7b-8448-45e0-95ab-e22434cfe547", + "name": "quarkus-smallrye-reactive-messaging-amqp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cda87336-713c-5d33-8f52-04150751e7be", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e0c5a15-13d1-5974-9782-4c89f7ba1948", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment" + }, + "version": { + "uuid": "3321a6fc-4e78-5799-8b53-62cbb507dd24", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5cd2b4bb-adc0-41f6-a11a-b68aa5db6a29", + "name": "quarkus-devservices-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3fa188eb-4411-5abb-ad9c-fa1bc0b08b2b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f215144-4d67-5011-832b-093bf8336898", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle" + }, + "version": { + "uuid": "13e73e0a-a4e9-5ea8-942d-b4a21ea27642", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c9146da0-9a91-4258-bb90-3e666b34e65a", + "name": "quarkus-oidc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "acbfe2a7-35d6-5f3d-9967-c4d64d11f399", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f3759a0-76d0-5dd9-ab4b-6e42209b1afe", + "purl": "pkg:maven/io.quarkus/quarkus-oidc" + }, + "version": { + "uuid": "e9128e2d-89f4-5df7-8ec2-0c4e8ce3a1d3", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e7af422-d69c-4589-b530-49a3035246ac", + "name": "quarkus-kafka-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "126be05f-6cdb-53cb-9188-2fab6cc5499f", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f4b3a06-497a-5721-b378-43fe8e916630", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment" + }, + "version": { + "uuid": "bb3ccbdb-bbf0-5300-84ea-f9e899524323", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c88b3e7-e466-413c-9923-e5b0cf3b9f2e", + "name": "qute-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "67cdaca7-1133-5cc5-af6f-597b1e2460fd", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f57a6b2-fbef-5521-8d8b-d64230e75c09", + "purl": "pkg:maven/io.quarkus.qute/qute-core" + }, + "version": { + "uuid": "7321b3ab-98b4-5e25-8f1d-a0f0df9849d9", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0689851-37cc-404c-bd26-327853190726", + "name": "quarkus-resteasy-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5166c1a2-c2b1-5b8e-a687-8d50bfcd174c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "10c95e5b-29bb-5165-8a1c-a3dca9c79578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common" + }, + "version": { + "uuid": "9631e555-61ea-5396-92e8-2dd43272a413", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-25ad8e4d-7ce5-46bf-b7cc-5b65086c5f41", + "name": "quarkus-hal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b362b10-fe81-5909-a1ea-b51e52ef11d1", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1116d663-dff4-5fe2-ae14-ea020b725970", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment" + }, + "version": { + "uuid": "24c66fb6-e441-50d8-bab8-cc8f422f7305", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1eb5d62-38cb-48cc-9dd9-4aca1d2e21cf", + "name": "quarkus-mongodb-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "93ba4c2b-0dda-5870-a029-7187f7a4d253", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1160cff9-6b7a-521c-ba4d-c45c0225c0b0", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client" + }, + "version": { + "uuid": "86d453aa-4d73-5c0e-b4a6-8b3b4be9a154", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ef4669b-667a-49b2-ba30-a9ad9e6787c3", + "name": "quarkus-quartz-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "457a8985-cb9b-59ea-b19f-880f103fc0ec", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1291070b-4ea5-5dea-9d7c-98c37774284b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment" + }, + "version": { + "uuid": "003b9e3f-d0f9-5c52-a21f-ad7a4da02699", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e181d5-3aad-4491-a629-b05326a56316", + "name": "quarkus-smallrye-openapi-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a4344ad8-56f1-575d-ae68-ee37d6cf23f0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13aa85ea-3c30-5a02-8aa7-d165775c6ab0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi" + }, + "version": { + "uuid": "f765c3d8-15ce-5d20-bce4-12e46865e2d5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f95c789f-1905-43b6-8b69-8a7a3669b8ae", + "name": "quarkus-devservices-db2", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "db82485d-a60a-5e54-bb11-74a4e8c01227", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13b6b528-37ac-5ce6-8aa3-76b1a7819de1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2" + }, + "version": { + "uuid": "5f8cd5a5-c806-55b1-acf9-402bad08d3df", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0847b30f-f479-45a2-befd-b500606d0a21", + "name": "quarkus-bootstrap-runner", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d13c7ee0-65dc-5fe6-8792-0af78121ee79", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1474df3b-f69c-5cb2-a912-7c1335c3f8fe", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner" + }, + "version": { + "uuid": "9b7a31ef-3c5e-54d6-ac78-94d5e8f2d9d8", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40ff2b19-5336-47b9-8be6-874cbb33f868", + "name": "quarkus-bootstrap-app-model", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50668bbc-169b-528b-a3a0-a39e94c86e93", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "15f803ab-ea0c-5f5b-9d7d-a6b8c7b2e373", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model" + }, + "version": { + "uuid": "7d204113-798a-538e-88d4-9fb77d3a5462", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44db22f7-4bea-4ebd-bad2-aeadc182c4a3", + "name": "quarkus-oidc-client-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad57b00-7f93-5039-bc04-21e9340b26fc", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1665dfb5-4082-5ac9-9b9a-385fd48966b0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment" + }, + "version": { + "uuid": "1619ab32-934e-5441-8f61-62af1fddcd33", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0777bb4-ea20-412f-8e8d-be7cd6502a23", + "name": "quarkus-vertx-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca4b353-48e7-5133-89ce-05253f3bd43b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16ba7b38-569a-5d7b-8432-d23400b4dfd2", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment" + }, + "version": { + "uuid": "81110a25-6497-5c48-aed2-5211ae522ea9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1e4344ce-8f61-4e85-a4ac-cbc383fe414c", + "name": "quarkus-jdbc-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16b126be-46f0-5cc9-b3f3-fddd32d6fd44", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16c681da-2698-5821-9fd8-e51e211bacec", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle" + }, + "version": { + "uuid": "7b58af65-6264-5f57-bb1d-a453db39b16e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-394e6200-3abb-41ab-837e-71aee668281c", + "name": "netty-codec-socks", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5e694d2e-c97c-5ae1-adbe-0ecf77a50c7b", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1848b072-9a0d-556e-940d-0b438ab5288f", + "purl": "pkg:maven/io.netty/netty-codec-socks" + }, + "version": { + "uuid": "5944b774-9704-5c48-8276-b3be3378b68e", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fea042f-0b52-4848-b1aa-cf5912bb8b1c", + "name": "quarkus-vertx-http-dev-console-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36172ba0-f9b1-5fca-8d0f-d63ee435eaaf", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "184953ef-e38b-58e8-9704-49b3ece829ba", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi" + }, + "version": { + "uuid": "5b678f67-8cb3-5376-a49a-e7cb53e5eb73", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0400ac2-fc96-462a-9d0a-955f391e234f", + "name": "quarkus-resteasy", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3be65ade-f215-52b5-a273-515cac52e577", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "187f3361-720d-51ed-993c-b4c00e35852e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy" + }, + "version": { + "uuid": "bbbf817b-3732-5fe7-b5a1-bf3685d072c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-488833fa-2eb5-462f-9390-1a50042f479b", + "name": "quarkus-smallrye-context-propagation-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15ac265a-140b-591c-88d8-bc24f43e5147", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18853b4f-555c-53ec-b794-5edbadc55d02", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment" + }, + "version": { + "uuid": "3b027b54-5d45-589b-8afd-f914da1a2f04", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85dbdfbc-56da-4359-996c-ad639b0ccc2c", + "name": "quarkus-builder", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "02df10a9-8be4-5b82-bcb8-50bed2e763ba", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1916fc34-85b7-5f63-ab90-6ecec8b1ce1a", + "purl": "pkg:maven/io.quarkus/quarkus-builder" + }, + "version": { + "uuid": "36b4ea26-2f55-51b2-ac54-f39d16a45853", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b46ddd9-d99a-4c66-9523-289f6026b66e", + "name": "quarkus-jdbc-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f36b5f92-114a-5218-8f0a-8559b31257fd", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19d02fa0-fde1-5743-b375-8a34ccc2c3b7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb" + }, + "version": { + "uuid": "6732fc94-5ce4-5eed-a508-7dc960a0ba82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-570f27f1-a31e-41f8-a6ba-8eedaefb9858", + "name": "quarkus-avro-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "43490349-7757-53bb-a03e-de54514b2e90", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1abdcfc6-1537-538f-8f87-72691b7158cf", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment" + }, + "version": { + "uuid": "84a51b5c-d691-5f4e-92d8-cb54350f66f2", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc0eeda4-74cc-405d-9ca9-655595411b22", + "name": "quarkus-jdbc-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ab7e2cc6-6aff-5119-829e-8c32475d80d3", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ad66f4e-408a-5350-b9e6-653dd071e9d6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql" + }, + "version": { + "uuid": "fa419877-adb4-5ff8-9687-e8e5bf6c2ef9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2209db79-4483-43f5-885c-60c286409a7b", + "name": "quarkus-rest-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64a7aa8f-2aa4-5056-b79b-40e1eea2c42b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1bfe22cb-466d-5361-90be-c32dcf46b1a0", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client" + }, + "version": { + "uuid": "eea24528-6d2e-5210-a98a-5971811cceab", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a46eaf1-30da-4472-a0b5-36964582cec6", + "name": "quarkus-devservices-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f723d346-6d21-53e5-8d7f-1f9e50d3ec44", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1c3f3382-5e3c-51dc-ae00-785846666f54", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common" + }, + "version": { + "uuid": "9510fcdc-5d00-5dc5-857e-fdde705acd89", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1330df4-c726-44d9-9178-79a6ef546808", + "name": "quarkus-kubernetes-client-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2517fb14-202d-5941-ad18-e07db6fe5f04", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1dc1e346-9422-5706-8800-7cde9bff5c30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi" + }, + "version": { + "uuid": "31a1043e-dd45-5cd8-be56-489539b49e30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a61c38d0-4f04-440b-a9b4-becbeee59bc6", + "name": "netty-resolver-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ff246236-cca3-53c8-a9c9-1a2311dd64ab", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f8db150-de5b-5f90-b46b-6055cd758488", + "purl": "pkg:maven/io.netty/netty-resolver-dns" + }, + "version": { + "uuid": "ffac9578-0a40-5f50-9892-050cd80eeda9", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9372be64-184e-4fd2-a5b9-80310e496c4f", + "name": "quarkus-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5db35609-0222-5804-9c69-6a87b29d42d2", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f92a80f-62ca-50cf-a859-f4813f772dce", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb" + }, + "version": { + "uuid": "b472e0a6-fc8b-5e2f-8735-00b43b748ee6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42356885-c7d2-466c-9965-99fd66844813", + "name": "quarkus-swagger-ui", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b9f041-eb3e-514f-ba5d-f3d3c7632b0b", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2048835b-663d-5d6c-81b4-0f80447bef9d", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui" + }, + "version": { + "uuid": "86be783d-ec7b-55db-8b22-4caf074dcb10", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30d9acf6-2342-44b9-a159-6f54083b5516", + "name": "quarkus-kubernetes-service-binding-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d26fc174-a72b-5984-bead-5981fbbee8d8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "218cb45a-f09c-5bfb-b66e-00a3a8fdae95", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi" + }, + "version": { + "uuid": "0d7d47de-b91f-5864-8ee1-2642593ff93e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-466c1ab1-7bf1-4a11-b7c8-0d03cb34d1c5", + "name": "quarkus-undertow", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a538551-22ec-5fa5-b898-a991f552c2ee", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "22c33f8e-bd68-5cee-af99-cc09b1d811d9", + "purl": "pkg:maven/io.quarkus/quarkus-undertow" + }, + "version": { + "uuid": "722a7259-2cf9-5f77-947a-42ae541244ab", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2747f7b-172b-402a-84f5-ce178c42b25e", + "name": "quarkus-grpc-stubs", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a9a749f6-34e2-5453-a250-142ebc0528df", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f1434d-6fa8-5182-825d-f735df474e36", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs" + }, + "version": { + "uuid": "914298cb-edff-5299-a9e4-51d27d93092b", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f85b9c37-05a9-4266-bf89-6545a1a306fd", + "name": "quarkus-devtools-utilities", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa84e16b-ffb4-58fa-91ef-7184eef2a243", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "247eade4-d56c-5be4-b380-6c936cfdb311", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities" + }, + "version": { + "uuid": "75e7121e-49fe-5c35-92e7-d3a022db7d11", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbaf8f9-748e-4d7b-b7b0-2e09f9e66b95", + "name": "quarkus-funqy-knative-events-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0f788013-6907-53d9-be7d-911653385954", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "24e68003-fe62-5274-a783-72ef4b90f610", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment" + }, + "version": { + "uuid": "cedd0d04-82b5-5650-8572-7fcfb0cb43b6", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ecb352-da4c-46a3-8617-ed458ced2f45", + "name": "quarkus-spring-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4fbcef-f593-5439-8b4d-2b8fe7fb5fbc", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "25ec0e4d-1dd8-53cf-8288-3e494f6e03ef", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment" + }, + "version": { + "uuid": "6c0587e4-ad91-5401-be4e-35ab299c79f0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73e410a9-68e6-4bf9-8f12-edc691d73fb5", + "name": "quarkus-jaxrs-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8ef67e10-656f-543d-be30-58f489bcc039", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26333b28-d4ea-5b5c-9677-7bd6707b0de0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment" + }, + "version": { + "uuid": "a6b69aab-84f9-598b-b2a9-7c3db52c131a", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80ea2723-f5ed-4cca-b320-8f79063510a8", + "name": "quarkus-smallrye-reactive-messaging-kafka", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "01df1fb2-5f06-5dcc-9fcf-f9883fdbad20", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "263d3de7-dae6-5693-bf59-9ce5430cdf89", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "2199814e-48a1-5032-a08f-4f0471c15240", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ed98591-d051-43ab-9c74-1f3381d9a9a9", + "name": "quarkus-core-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "47594949-10d7-535c-9fe7-f07a3ad50de2", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26c0201b-9938-5d35-909d-803c549d9dd8", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment" + }, + "version": { + "uuid": "7ba38899-a09f-57d4-b351-8f218a26f18f", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3be0ff6-a286-4a04-91f9-7812df6702e1", + "name": "quarkus-spring-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6a1d83c6-a770-5d88-9215-fdbf79bcc710", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b632501-d073-58f0-89a7-0654a3f4a1ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security" + }, + "version": { + "uuid": "daa90c50-b765-590b-be8b-bd34bd7fdfda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4818f59c-b5f7-467b-9d40-fc29a7630d3e", + "name": "quarkus-kubernetes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a99298a9-3375-5152-89ce-02802c75e179", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2c6eead0-ce88-59b4-994a-f637fe92224e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment" + }, + "version": { + "uuid": "ea6e86f7-9a83-5b53-8c9f-ee8eda9ac0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1223d116-41df-41a1-b07a-29fde984dab3", + "name": "quarkus-smallrye-openapi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75f9bfc7-9c89-52fb-873b-c3ec01a7e7e9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d403acb-b8ec-5cd8-af33-bcf472f17ff3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi" + }, + "version": { + "uuid": "d687a1b2-586b-5610-b49a-ffc20b8e8c17", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1d0db57-c472-4dee-ab3b-16b01b8e2faa", + "name": "quarkus-smallrye-reactive-messaging-amqp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17962b0d-0f0f-588e-bffd-e2c42d1d5c8b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "303891d4-b794-5dd1-8f5e-fa37b3254386", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "1586e35c-2e5d-5746-8d80-1ce6baa6d8a4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cc93b96-b2a4-4e8a-bae4-9a519bb47cb7", + "name": "quarkus-resteasy-reactive-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd47493d-a094-5720-b2ea-ebfbfd996e75", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30ec5893-e9bc-5c50-8d3f-66c4eda95a9c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment" + }, + "version": { + "uuid": "76423c53-f3c1-51d2-abf2-d40d6085a749", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a2fa8319-ca3e-4f93-90f0-8ea931df3d13", + "name": "quarkus-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "167a84fd-94d7-5ed1-8449-06c7ee696def", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30f2a642-3fe4-5088-8675-18136395deb7", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment" + }, + "version": { + "uuid": "b210e73b-1bcf-51eb-b3f5-ea866ec12e16", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cb52258-3582-430f-84c7-635d63238be3", + "name": "quarkus-smallrye-jwt-build", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a937e4b-d857-5d4d-83b5-d6c192da529e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "31153480-c3ce-5dc7-9a88-787df6c8d95a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build" + }, + "version": { + "uuid": "260f6449-31cf-5a91-90fe-865cd5532223", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e7ee17f7-8e9f-4b81-9c45-ee240e6dc5bd", + "name": "quarkus-jaxrs-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "753da595-381e-5895-9967-86713a79ecae", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3237c3c5-a44f-583d-b704-0becfde42d2e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment" + }, + "version": { + "uuid": "b70565b2-9762-51dd-b1d3-bd72937f313e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-23be191f-7615-4b9d-a2a9-fe707af48c31", + "name": "quarkus-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0df54167-b0f0-5d91-90bc-628a80021cec", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32434ab5-3d47-547d-a69a-fd36ed6539e5", + "purl": "pkg:maven/io.quarkus/quarkus-security" + }, + "version": { + "uuid": "5f7a4e7a-b255-5aa1-9e89-1abc25272c8d", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c550828f-54f2-44d8-856f-eb163a80990b", + "name": "quarkus-devservices-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14888876-a330-52dc-b6a4-6bb287d375d1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32d2f0ae-ff13-5de1-829b-23693a01b58b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql" + }, + "version": { + "uuid": "59c887a6-e4db-5f29-b2dd-e996528a0d34", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c1ba4309-9abc-4e81-93b4-f3ab71b34476", + "name": "quarkus-rest-client-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2601075e-85cd-5985-aa30-9ebf42d00ef8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33a0268c-6e74-564a-932d-abb29d88b37e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment" + }, + "version": { + "uuid": "d9b1dc78-fd6e-55f1-8525-6d5a90b8feae", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4400c49f-c43d-41f1-8eaa-43f112597bc2", + "name": "quarkus-apache-httpclient-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c5bb552-8f6e-5c3d-91c6-90b47be5cb16", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33e14e28-4445-5802-aafb-910c24fc66c6", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment" + }, + "version": { + "uuid": "e226e5fa-8b48-5935-89e5-907b8715af6e", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710139ec-bcd5-4284-bdb0-d859aaa281d5", + "name": "quarkus-resteasy-reactive-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "181b4d1c-08c0-53d4-b4a9-b7111deeebfc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33eaf1e0-cb21-5657-b689-733c72a8cd6b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute" + }, + "version": { + "uuid": "51bbc3e9-f1c5-5329-9424-60578c25ba3d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65c10ba0-12ef-4cb4-8afe-777962394902", + "name": "quarkus-resteasy-reactive-jackson-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "19adc145-7ab3-5a27-bae3-d7fb149d99a0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34210648-b598-573d-a70e-42a801310c31", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment" + }, + "version": { + "uuid": "34cffcdf-15ea-5897-b5ce-8efcd9329428", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5716727a-ca55-4810-8a3c-1da87eeda5d1", + "name": "quarkus-devtools-base-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc64135-ed41-5e03-a2db-75a74e7f5a35", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "346c44ca-ff1a-5e53-97e9-fa6a486356de", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts" + }, + "version": { + "uuid": "33f9310e-5e9f-533f-b6d1-03312662d399", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-780655c8-4460-4858-a9dc-c4b4025184a7", + "name": "quarkus-extension-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "074aef48-23f8-510f-a93d-9d29f8681132", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37df424d-a1e6-5694-ba9c-c3ec797c4996", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin" + }, + "version": { + "uuid": "c5ea19a6-cd5b-530e-bcfe-3730eb957ee6", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f32dd752-29fd-4a6e-a241-2ee80367e4f9", + "name": "quarkus-resteasy-reactive-jsonb-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e895e5a5-e01b-5fa8-a0a3-09f44190b37e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37e1e02e-1b1f-5c91-a23d-4a9dddddbfae", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common" + }, + "version": { + "uuid": "ecb206c3-326d-5390-9621-06d19b856e44", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b295835-4e63-4cb4-93ff-00e07478fb5b", + "name": "quarkus-hibernate-validator-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2415a152-44ff-51d1-a2c5-aae176ce040c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "38d5de8b-3164-593a-9d77-88a69bb3c86d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi" + }, + "version": { + "uuid": "2b54eb43-7eb2-586d-aa56-c264b55fea2d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dec4267d-261f-475c-aa7e-15081cb7b814", + "name": "quarkus-hibernate-orm-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dab0e411-c906-5f26-ba9f-2bc8058b96f9", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a3fa47d-a921-5a4c-9992-6a34cf716a6a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common" + }, + "version": { + "uuid": "c7253c93-72e3-50b1-b537-3866ddb07a1b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-733d691e-dc1c-4948-b66a-c5387651c203", + "name": "quarkus-resteasy-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "751710b5-9c33-5861-b0b6-0d253da6df48", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a53866b-04f7-584e-92e6-9f0101263a1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment" + }, + "version": { + "uuid": "ec4da626-0e3e-5fc6-bdd8-4654a137cdab", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50b4bc78-052a-483c-872c-e0941edd9301", + "name": "quarkus-oidc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba56d11b-d66a-51ca-a310-7913f2b5d487", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a60e3c5-2baa-59a9-b05c-7587eaab9dcf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment" + }, + "version": { + "uuid": "0733fa3a-f274-5d6f-9afe-0a855677db6a", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-87a107c5-424e-47a2-afb3-7ec4e6df38ad", + "name": "quarkus-smallrye-context-propagation-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d0262f1d-9fb8-57f9-bd33-f2fa3c719e5f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a9dcc84-a92e-597d-9f8f-6eb3e7e60b43", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi" + }, + "version": { + "uuid": "4597a3b8-580e-5322-afe7-5c943ea6b55f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e67ac09-7ec1-424b-bd9f-84771a9606f6", + "name": "quarkus-kubernetes-service-binding", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5657c512-f07d-5b08-a5b0-1df803963ff5", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b025fdf-9886-5abb-a20a-bfcd188a9413", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding" + }, + "version": { + "uuid": "0a9cc5f4-c981-519b-a01e-e2657dd9cea2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b4e4a45-acbc-4da4-8926-968db5098c83", + "name": "quarkus-elasticsearch-rest-client-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6db23df-d47a-5974-87a5-613ecb86d1b7", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b0a7b21-a704-5f48-98cb-6444c5ca11a9", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common" + }, + "version": { + "uuid": "ecf40bcf-eed9-512b-be0e-cd79ed9bc74a", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85e1044-8101-47c7-95c2-b53b3f0fe41c", + "name": "quarkus-vertx-http-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14aebacc-daca-591a-b91a-6282afb27fcb", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3c33c6a5-344a-5551-badf-8cb0169abc87", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment" + }, + "version": { + "uuid": "82316ed9-78f9-53bd-9840-cb968b45752a", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16353681-583e-4ef3-9000-3128fa1e23f4", + "name": "quarkus-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a44ceebd-83ae-5d1d-804a-3140a36e2d3e", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d4b8b8e-da71-572b-b188-5710d59a23b7", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment" + }, + "version": { + "uuid": "74202f8e-e160-5ff4-8d52-cd3d2a2c1f80", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff1daa18-ba57-4391-a109-1d4bb7ddd23a", + "name": "quarkus-smallrye-openapi-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d46ba1f7-4fd7-5ce5-adca-093abdb497d4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3db6132b-31c5-546b-a659-ab9100dcf175", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment" + }, + "version": { + "uuid": "72ce2369-8f8a-5ab5-9d2a-d58534c1b3fb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2756596c-da2b-4246-ac12-10ae07ad5ff8", + "name": "quarkus-reactive-mysql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ceba0bcc-8048-575a-8cc9-34e8060f2db3", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42756c7f-ae43-5af9-8daf-3cec4d03251c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client" + }, + "version": { + "uuid": "a1691007-16fe-5ca1-bdc9-3ef909d8efb0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b794473-ef8a-4dc3-83c9-994ce7e416c8", + "name": "netty-resolver", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ca80ea97-d265-54c2-a263-c7069934ac5d", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "43af72a1-d9a4-5b51-bf1d-379c4f361446", + "purl": "pkg:maven/io.netty/netty-resolver" + }, + "version": { + "uuid": "968f513e-9435-5b1b-9174-e53eab15fc83", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e08e39f8-f66a-44f4-93f3-26f8e1e79329", + "name": "resteasy-reactive-client-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45d957a9-f53f-5cdc-8ef4-24a3e79c7dbb", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44b72d4a-b1c0-5ea8-ae55-7a0e3cd79e02", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor" + }, + "version": { + "uuid": "80315b0d-5179-5221-8610-c6dc029aa4f5", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14276dc5-94a5-43cd-84b0-ea71fc2b8222", + "name": "quarkus-container-image-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e628e771-34a3-51dc-97e1-4acb2b8ca5ec", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452eef4d-38b7-5e50-83d4-b96b6642b9db", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift" + }, + "version": { + "uuid": "3648646d-e82b-52db-956a-0d5d4c44e34b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a0388d42-2217-4d3f-affe-1eeea41e4e60", + "name": "quarkus-resteasy-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66cf0916-3d7d-5739-ab86-1661306103e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "46457d81-5f7a-5f5d-bd5d-fe30afdbab4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute" + }, + "version": { + "uuid": "5cecfcb6-7729-571a-9091-8abf39319bd3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cd8d0c3-3d68-412f-9e4d-59afe8b84671", + "name": "quarkus-rest-client-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b26e3805-8e38-587f-9314-db0b8eb67b09", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "479cc516-ed0a-5c70-8359-68da053461b4", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb" + }, + "version": { + "uuid": "5746db2f-3b44-5412-8d2a-1c8b78ccb382", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6de0e4bf-81b7-43ed-ae15-8f708b4d792c", + "name": "quarkus-rest-client-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bad81039-e105-5980-9294-33bc71506a5e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4872774a-8dc7-5e49-8bf2-66cb19c1da1a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb" + }, + "version": { + "uuid": "2fa20e5e-1bdc-59ec-8489-fb83b2c3c69d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac7ae0c2-98ee-41e3-8a91-f00ad1360711", + "name": "quarkus-jacoco", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4f17d7-f0b7-5906-b77c-646509e6e281", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49253c1e-77b2-5bb7-96c9-325533555384", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco" + }, + "version": { + "uuid": "eff2cf0d-a503-5e7a-851f-4b927a617fd1", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3fc3847b-8eed-4203-a3fc-f669fbe653eb", + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "496eab61-3333-567f-98da-f6c3389fa91e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ab88f63-6a37-5ecb-a9f4-093ec03bb2e7", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi" + }, + "version": { + "uuid": "e3097c94-b77c-5e59-978a-756364bf0eac", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d10c8fa-d8b6-4e41-85ef-e5f90624f1e1", + "name": "quarkus-keycloak-authorization", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ed321301-2d42-5939-aa96-70930a231979", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be678d1-5f0d-5d97-88b4-968f4f4bb532", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization" + }, + "version": { + "uuid": "e8c56f6c-62b3-5d14-a5f0-b2c921be6bdb", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a93d1d8b-bd47-42f0-bec2-536f027939c0", + "name": "quarkus-config-yaml-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "69248775-f5fb-5df9-ba0a-0ce8254bd512", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4c38dc0e-c278-5ac8-9de0-eba1263655c1", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment" + }, + "version": { + "uuid": "86ccc4d4-5720-502e-9caa-579b14076aab", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e300fa6-506a-4418-9dbc-ad9457a653ba", + "name": "quarkus-smallrye-stork-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a6337f26-143c-5e7d-90e5-b6628420d368", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd69d1d-36dd-57f0-a22e-c4a565157ac5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment" + }, + "version": { + "uuid": "75d1b7c1-a921-5421-b734-0d15b42ff539", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af03e42-a1c7-40d9-88b4-9beb6c420db1", + "name": "quarkus-resteasy-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e06e08f1-721f-51c5-938d-d36cc57ba5d8", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "502cbae6-cc31-5f4d-8f0b-85e3756a0dfd", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment" + }, + "version": { + "uuid": "2f0746b5-be13-5c33-bc9c-bcc1c00dc8b3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec3162b9-9631-44e6-9bbc-e4f268ef722c", + "name": "quarkus-bootstrap-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1be0493-7f8d-5b02-bcbb-eba30efee1f2", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "505c74b2-b0e1-537b-b012-621d3cb32333", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core" + }, + "version": { + "uuid": "55540482-9dd3-5934-81a7-c55ec6c0b7c0", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-333ec135-ab9f-4c13-8f50-ae0772f08de3", + "name": "quarkus-jaxp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3a43984-dfc9-5bb1-882b-3f21d6efd56f", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5092cd38-f156-5ea5-89ba-5a0f10426fd0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp" + }, + "version": { + "uuid": "5ab2e764-7ebf-5faa-b5b1-46759f6a7e29", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59872fbc-27a5-4ed5-80a2-ab85d9c5e983", + "name": "quarkus-jdbc-postgresql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7aa8ebb-75f9-5760-83da-0efb776aca82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "50e7ad71-bb2d-5ea7-b14b-16f2af03a7d1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment" + }, + "version": { + "uuid": "a19f3cc5-b0ae-5bce-9298-3aeeceb2def0", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af7b0e01-08b1-47d4-9aaa-ad27e63980ae", + "name": "netty-transport-classes-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "0ad86e44-2348-5e16-8fe3-6b2c6e7e0515", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53935580-8eb3-5cca-8042-b56f418b9668", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll" + }, + "version": { + "uuid": "0185e2fe-f7a4-5835-b0a7-8a33b646f7ac", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67892c7a-11d4-4b7b-b46f-24a7cc8ec541", + "name": "quarkus-kubernetes-client-internal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "131c8763-37e2-506b-8272-2f24dc961711", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "540092ab-3cae-53aa-89a6-d296dbb8d666", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment" + }, + "version": { + "uuid": "d32725d7-08bb-592d-94bf-cb360139aa48", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1066e0bb-7548-497c-980b-550cc1820edd", + "name": "quarkus-spring-cloud-config-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75e8c34f-1315-52b7-855e-302c2f9eca63", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5426860f-e318-5957-ab54-964557ec2dd3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment" + }, + "version": { + "uuid": "334f0960-51a3-5d46-b5d2-e0f57302c26e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53324b53-b65a-468c-8dee-ce6d9a08f2b5", + "name": "quarkus-resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87766195-e9b7-5bee-bbb4-6b5accfbb017", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "549ead01-246e-550d-af5c-c02dfa419877", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb" + }, + "version": { + "uuid": "ccf3e0a3-8edd-58fd-972a-9213498be91e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f018766-4313-4c7a-a778-592bc26c11a6", + "name": "quarkus-project-core-extension-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4fea899-2fec-5bbc-9990-c658495b1fd7", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55e2d8dd-e960-55c5-b8df-01bc8d7685ab", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts" + }, + "version": { + "uuid": "3d56ebc9-2182-5476-ad6a-e52329f92dfd", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-327ef349-998d-47db-8ef4-21bfe5779914", + "name": "quarkus-hibernate-validator-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "53fca636-2379-553a-8887-bc2f1d7b45b1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5684bcd5-73a6-5efe-b893-a6e0e04981aa", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment" + }, + "version": { + "uuid": "ae27d675-fd2e-5fd0-aa61-a8b0d3c84544", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7f5d59aa-9228-42b8-a3f5-0716163fe061", + "name": "quarkus-netty", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "555728c4-61d5-5993-8921-d117189ad0f3", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58372844-09e3-570b-aaf8-fba55058aed0", + "purl": "pkg:maven/io.quarkus/quarkus-netty" + }, + "version": { + "uuid": "1dd5ba79-e94b-5bf0-91c8-ee30962ef328", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec1ccf7d-d688-44c3-93d5-19c8f6c5dceb", + "name": "quarkus-mutiny-reactive-streams-operators", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "83bc651c-5e3b-5f3f-8520-a8688a04cc69", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59fe04c0-79a0-5b3c-a4d7-f6dc049e353a", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "bb6f86de-44e8-5c66-87a3-a43ea1193be2", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7aaacfb5-63e7-4237-8724-9885b01d69d9", + "name": "netty-transport-native-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "9ea25261-4666-5890-ba6e-276e8bc8b44e", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cbfb1fc-f145-5877-8d43-a7744abf2614", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll" + }, + "version": { + "uuid": "bd29dfa9-131f-5dcf-9e62-00d7bb0ff1f2", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "classifier": "linux-x86_64", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e726bd24-565e-4d41-8e91-4e56fcd6e092", + "name": "quarkus-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b00dc211-7861-539e-94a6-93f7e4ac03d2", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cc62b0e-55b1-520d-b90a-ac13239ed15a", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment" + }, + "version": { + "uuid": "1eb5ef4b-78fc-57c6-bd05-6ba86de36e09", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2514077c-76f1-4ffe-af42-54d2acd59c41", + "name": "quarkus-resteasy-server-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "313cfe0a-5a18-5edf-a110-97562fcc2202", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d484375-8861-5a41-99dd-88888b2b8099", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi" + }, + "version": { + "uuid": "07c4f418-6449-5516-b5fe-52c4f6a44b8b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-469b2356-b0a4-44fc-98f5-5bf4985b02f7", + "name": "netty-transport-native-unix-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "496d5d3d-dbcb-5267-b6e6-b487f13b1ec1", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e26ff54-86e1-5865-9120-caf4d8c675b6", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common" + }, + "version": { + "uuid": "3ac567ce-d4d2-5a8e-9920-72ae60eee50b", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85f52ce-77e9-427b-afbe-6da5e0c62b84", + "name": "quarkus-development-mode-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad60302-a4b0-5054-8b61-c86152920745", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f7aae84-2005-56e5-8bdc-b961acbdcd5c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi" + }, + "version": { + "uuid": "659aaed0-99be-5089-863e-0db46385256c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0d7a272-831c-42f6-88ab-b5a792ab23aa", + "name": "quarkus-container-image-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6f8c2a3-df85-5c2d-b8d5-0251d6f37924", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "601db209-a947-5fb0-aefe-8c2d04abda4d", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi" + }, + "version": { + "uuid": "f895479a-afcb-5f24-b750-031ab9e6502c", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cdaace3-113e-4e6a-b39d-7823e5729a1d", + "name": "quarkus-ide-launcher", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9dfbdf1f-a6b9-5c2b-b823-40b5ff3ac010", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "603b2397-3a5b-53f9-a573-1082d3fb0db7", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher" + }, + "version": { + "uuid": "94511d2c-d35c-56b5-8e1e-b5d428dabde4", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-840ea6c2-87e7-4e0a-a7a0-f410cfb9bb74", + "name": "quarkus-hibernate-orm-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9ce7315c-bfb1-5052-ac8d-e47197c6c22b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "606f41c2-cd4b-5475-8842-9e8b471324e7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache" + }, + "version": { + "uuid": "7b203c5c-8486-5379-815c-32ade7559d82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85de9ba1-4af2-4360-890a-fb3c92406e4d", + "name": "quarkus-bom-quarkus-platform-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6c91135-8813-5f4d-9939-1e16fab38eaf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=properties", + "base": { + "uuid": "608b078a-3157-51af-b251-236ddaf13b8c", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties" + }, + "version": { + "uuid": "52723653-6f29-549e-be2c-942ebf62e30b", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "properties" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbfa7f5-6442-40e1-adf1-3a2b65da4e2f", + "name": "quarkus-rest-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3c06c604-ba2f-5788-bf6f-71bd5d237eba", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6111dfcc-8e27-5cc1-83d3-76b1ff2f89da", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive" + }, + "version": { + "uuid": "16cba702-241d-5045-bbf4-9d68338d1d6c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51845f32-4339-46c6-80de-e862943c0c2b", + "name": "netty-buffer", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "c1344fcb-371e-568b-b2fd-e45dcd1dfa4f", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61d29143-3655-57fd-b805-dbb97ed8a131", + "purl": "pkg:maven/io.netty/netty-buffer" + }, + "version": { + "uuid": "7333a493-f187-51bf-a9e7-4aaee8d4197d", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1efe8d48-9ca0-41f0-a8dc-3b528e0a1dbd", + "name": "quarkus-kubernetes-service-binding-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bcc45506-7904-5489-acef-542c4975a3ed", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61ffebf8-b19a-5082-bbb9-fb68e9985720", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment" + }, + "version": { + "uuid": "0c520917-692e-58b9-9cd1-a475139a3095", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f38ca008-6e30-4570-8a52-86d6310e4fff", + "name": "quarkus-rest-client-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a66cac8-5dab-586a-ba18-9a9611985936", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "624a470d-b96b-50a2-a708-cf7d986dff11", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment" + }, + "version": { + "uuid": "551becc1-3756-540d-b0c8-cf93c4221f49", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3448e5bc-cf5e-465a-98cd-a6fc3633b54a", + "name": "quarkus-kubernetes-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "376edac8-5252-5d52-aefc-cce4f12c94eb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62c9ebc6-11a6-5975-a976-1f512103302e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment" + }, + "version": { + "uuid": "f92274a5-35e5-5080-aad2-b76bb272ecb8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b290413d-9e73-48ca-a143-5dafbb284bb9", + "name": "quarkus-smallrye-graphql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64966b95-c985-53da-80f9-2726b77e2e82", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "633b364a-02e6-5128-8a4a-6d5375a661d8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client" + }, + "version": { + "uuid": "29c2b97d-06e2-57bb-a02a-f341c95f5187", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d3b863f-5cf1-4841-9ce5-6c2bcb4c0d72", + "name": "quarkus-smallrye-health", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "85df758c-6a7a-54d5-91dd-95fb09354950", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "63ec2a64-4992-5542-a90a-46dc9805ecb9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health" + }, + "version": { + "uuid": "f45aa69f-6389-5e57-a3a9-8d5b794e6ebf", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-71b29963-fc1b-4654-a866-a1ec76cebd7d", + "name": "quarkus-credentials", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cd908986-4f09-5cc0-9e66-892b8b57da8b", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6411d779-f8ca-5c3d-9de4-815f4afde735", + "purl": "pkg:maven/io.quarkus/quarkus-credentials" + }, + "version": { + "uuid": "4e43b03d-3dd2-5622-bf17-9c71f88f2e31", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a22bfe5b-ef1f-4a49-9ce2-315d2d1beb7b", + "name": "quarkus-kubernetes-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ebabcbfe-9983-5cd4-80df-456011f84237", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6507bc59-508d-5fe5-ab71-4b1ca01ff7a2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment" + }, + "version": { + "uuid": "61d0ca9d-617d-526c-b0c6-c055419dbbf9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4e179fc-c681-47af-b0d8-c52d96bf1ea9", + "name": "quarkus-spring-data-jpa-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a8df2c2-0c79-5645-ad98-f7e19aebd0ae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "66bc1f0d-d9d4-5d6d-8d12-b8be47537cda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment" + }, + "version": { + "uuid": "dbce6f46-e85e-55a1-b74e-c7151a0c9cb4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3bbacd3-f091-424f-939d-c1378ecb782d", + "name": "quarkus-spring-data-jpa", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b44663e0-9ee5-5f36-916b-eb00f62a78f7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6740305e-0e0d-56ae-99c8-caf035a7c670", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa" + }, + "version": { + "uuid": "efd2a5fe-ab1a-5bc6-acdb-cf4389e7edd1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a73043-6937-4489-9298-1df0dfa993b4", + "name": "quarkus-resteasy-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b928e8e0-0d90-54c9-a1f3-d6e1299ab896", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67eecca9-6db1-5bd3-af32-003cdd1c1d47", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment" + }, + "version": { + "uuid": "ac361a7e-f8b1-58e4-990e-8f215a993578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb769aa7-79a8-4027-85f8-663a6e608e7a", + "name": "quarkus-resteasy-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fee6d74f-1ea6-5777-8b11-d7bb3da3f049", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "681cab9b-59b4-560f-a2f5-114ff84fb40e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment" + }, + "version": { + "uuid": "572b5e60-54b8-5150-b13d-0ad9285f22f5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22ddd669-6b59-4f75-9456-4107da25a846", + "name": "quarkus-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d51b6412-27bf-5cc5-b320-a4b042f6602a", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "685f9310-4963-5b61-81c3-e24794bebdb9", + "purl": "pkg:maven/io.quarkus/quarkus-datasource" + }, + "version": { + "uuid": "59f283e2-3341-5876-8371-8ea3d5a58ee4", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-546b6b7f-8ea5-4b1b-a68a-a2cfb81894a1", + "name": "quarkus-oidc-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "781835bc-e503-5bbe-8bca-d5f67ccc8a47", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68a69722-24d6-5a5f-87d1-3d8ec913a712", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client" + }, + "version": { + "uuid": "19f17aa3-1193-51bb-a069-9d0d5505ccab", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67c75e67-7962-4288-addc-33e4ec2a6a50", + "name": "quarkus-kafka-streams-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6748482-0c44-5bdb-9443-63c1f56f2e0c", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68eaa406-15e3-5cf7-9b9a-609af9365262", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment" + }, + "version": { + "uuid": "2c8b74a8-fd93-5db4-b3ff-832258c95c92", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e8531f1-ed6d-4fbf-8715-7955a4984ec9", + "name": "quarkus-devtools-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a326ce23-4646-5471-84ba-bd3eeeba3e33", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "695d2180-1c51-5de5-82bb-54269d863059", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts" + }, + "version": { + "uuid": "3de59fcf-681e-5a6c-9242-84eed01e02ce", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-220d857b-a0b9-4588-b0e2-b97e38aa1777", + "name": "quarkus-hibernate-orm", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b90207c1-91d5-575d-8df7-4c5e39e07035", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69c179e4-10ed-52ab-81f5-60806e45ff33", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm" + }, + "version": { + "uuid": "dae9dba5-ef0a-589c-92fc-b3642379468c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61297055-dc7c-4de8-83e0-49d8c789bafd", + "name": "quarkus-spring-di-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b09381c0-2bac-57a1-90fc-450d374d2e14", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cd910a-9ca2-5f74-aafc-2922fe1337d4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment" + }, + "version": { + "uuid": "a0bebf09-db58-5a6b-922d-8e63a2a41dfe", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88843e4c-c6ec-4599-b536-70f02bba4af3", + "name": "quarkus-smallrye-jwt", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6cf2155-c2df-578c-b569-62a6d85f2f9f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69d6bb9e-332e-5c9f-9fda-bdfdad05e926", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt" + }, + "version": { + "uuid": "d3f33244-139a-5c32-b81f-e550a54a7c7e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2098e3c2-f2b5-4825-94fa-27bc00d73abe", + "name": "quarkus-agroal-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "26052c2e-e865-5ff1-b9db-297e28cdf07d", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a84b29e-4eb9-53cc-afac-2616eb070f5c", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi" + }, + "version": { + "uuid": "015918b6-1eeb-5e10-a6dd-4d3c7022d4ed", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fed4b130-efcd-4ef1-8836-26b7b5cea154", + "name": "quarkus-jdbc-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ea086e9b-f88e-53a5-9ee1-c7f8ad45f58d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b182f90-d410-58a3-ac06-c131126a9732", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql" + }, + "version": { + "uuid": "c099b094-1ff5-5e8a-a2d0-b435756eff22", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7436880a-b688-4e53-9a1d-059439f90c5b", + "name": "quarkus-jaxp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b9a5a210-7483-591a-b0e7-03c1b6d69a18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b1b957d-a2f3-54c1-b168-9c6bdfd63634", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment" + }, + "version": { + "uuid": "fd21c841-7149-5283-a472-9c140de833d3", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-940e26c2-1b38-4b6b-86ce-610ad349447a", + "name": "quarkus-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd5cadb4-0a04-5aad-a4ed-5a1c1ee2f019", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ba3b95f-dd9f-5213-9c30-fd2fe57d104a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin" + }, + "version": { + "uuid": "5355eb2e-2bd0-5462-8dbb-df577008899a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc5df4fa-1d77-40f3-bf66-34fc9fa1bc52", + "name": "quarkus-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6cfa5672-5d2a-53bd-9b97-ea41cccac1e1", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bf685d7-274d-5000-aa13-d9e508197601", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache" + }, + "version": { + "uuid": "b1a3c4e9-de8e-5a31-84b0-1a06acd4338d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ad0b8ec-0237-49ca-acee-d4c8938d30ff", + "name": "quarkus-smallrye-stork", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0b78bc76-e6d4-59b2-8fb6-6940a523c0b8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c17e661-bf0b-50bb-b566-736d8851e3d3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork" + }, + "version": { + "uuid": "4e553315-531d-5d64-a401-716b1938301d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be2c8d3f-f2cf-4805-94fe-737dd12f4721", + "name": "quarkus-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15445e75-f052-5dfc-b4ab-63ff74f4bba6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c68269e-589c-5bca-8a88-e09700b75e18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb" + }, + "version": { + "uuid": "59dd6f31-ddc9-5ac5-a30e-17dd349958a0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39103775-fc22-4aae-bca6-c91989c8b438", + "name": "quarkus-resteasy-reactive-jsonb-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6035ecba-96b8-591c-8529-68468c94e5b2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d3faf65-3cba-5f4a-af93-fbbc9e494e26", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment" + }, + "version": { + "uuid": "030135a4-e2f4-509f-bee5-97dcd8da13d2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79a49f73-f087-4a3f-80ec-cabd0b66d353", + "name": "quarkus-opentelemetry", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "875c4b2f-35f9-514f-a92d-98e3a9469252", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d569531-d78b-5e63-a709-c526212a1b73", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry" + }, + "version": { + "uuid": "93155d5d-f059-5518-b74b-64353b6478b2", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9dc13228-fe20-4490-adb5-90be2bb678de", + "name": "netty-transport", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "4b4743bf-08af-5e85-ba49-089e61524d69", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbb1cee-48a4-51c3-b0b8-bde2f82066ff", + "purl": "pkg:maven/io.netty/netty-transport" + }, + "version": { + "uuid": "0a7f07a9-1246-5f82-b2a5-9db1253cae88", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b570be0b-25ed-4127-9643-16234239e2e6", + "name": "quarkus-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9eb64eb8-f576-578d-8d3e-04199b7a1e13", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e0f56bb-62cd-506f-8ad3-e5bf3a281056", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment" + }, + "version": { + "uuid": "44a3bda2-7dd9-54e3-9391-cf4f712e3aa8", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78f2a277-47d6-4d5a-b5e1-b410ffcded3b", + "name": "quarkus-scheduler-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fef6935c-7bb1-55f8-8530-638867de5d76", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e1f2194-d4bb-5499-9480-92ab9e1d8d0a", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common" + }, + "version": { + "uuid": "d0678b0d-9604-5b87-8663-53e56bfc8655", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-427a29d6-57fd-4675-8de3-cc6987fc7eef", + "name": "quarkus-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f63fe058-0590-596e-8259-30e03afa9301", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e7521fb-48f6-51f0-befe-83f9bebe57b5", + "purl": "pkg:maven/io.quarkus/quarkus-openshift" + }, + "version": { + "uuid": "8fede6ab-953b-5faf-b21d-7b6aa450de9a", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aebaf362-a78e-4c0a-aa0c-9a0e1c7da821", + "name": "quarkus-undertow-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "adf147ea-6b5c-54dc-93fe-860919414c11", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f483e38-83ee-530a-86c8-682f04cc99b0", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment" + }, + "version": { + "uuid": "0863688e-215b-5901-ac85-71676e8605ce", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7d36a76f-199f-43ee-82cb-7e1e6d21efc5", + "name": "quarkus-oidc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8c732e8b-08bf-5065-af2f-fc8de5ee76ef", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f80022c-2e29-55c0-b2ff-147a7fdcb1fa", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common" + }, + "version": { + "uuid": "beec90c4-1d47-54c4-a25e-06049a3d8516", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a8cff30-f924-42bd-b6e7-cca68547f433", + "name": "quarkus-smallrye-reactive-messaging", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cbdcb5a1-e1a4-57c6-8713-035ad9df9b46", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6fb5f32c-191d-54f6-84f2-9275e4a8b23b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging" + }, + "version": { + "uuid": "eef1a569-0e0f-524f-a853-4940e43bd381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68ae0f2a-018b-4eb4-86da-43832b8d89e9", + "name": "netty-codec", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "adfeb0c7-f3f8-5785-b3c5-a4baf26c16f0", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "70bb8124-bc03-5917-ab6b-5112011967e7", + "purl": "pkg:maven/io.netty/netty-codec" + }, + "version": { + "uuid": "7e3d3cb5-fcbd-510b-9c67-6145b6af291d", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-262ebcf1-72e1-420d-8c35-db55339f3386", + "name": "quarkus-hibernate-search-orm-elasticsearch-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee6c349d-9542-5e7b-a63d-1f79e5c6097f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "723a9e99-126e-5f6a-a9e9-ce835bca17af", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment" + }, + "version": { + "uuid": "23e9428d-af34-5eb2-a567-a05046922d36", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0eb27c33-c07b-4534-ae34-ea73e336dc64", + "name": "quarkus-reactive-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da5db5f5-c917-56c7-a30e-4b25a76ab42e", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73622207-8ffd-5713-9aab-e1f402d3794c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment" + }, + "version": { + "uuid": "42aa7bfb-20a1-577a-b70e-b458238b49c4", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-793c32fe-321f-4132-bab0-5439d9369da3", + "name": "quarkus-smallrye-health-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d15f2d6f-fa63-58b1-8477-c51099005fa9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f0aef9-e57a-52f1-94ff-ac68cec074e4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment" + }, + "version": { + "uuid": "45e1bd90-8585-5ea7-bc51-a20005f69f85", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8dbcf3-62a3-43a4-b4f6-c6bef0ff407d", + "name": "quarkus-grpc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b08a514e-d85e-5351-9475-c103a5c07241", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "74081d31-78ee-5bf3-8cfe-23a3c95b6cdd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment" + }, + "version": { + "uuid": "5f26769a-2465-5f70-bc07-d25cd408ce2e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f6e6a08-d7bd-4ecf-9a8d-8e037cb00f37", + "name": "quarkus-hibernate-orm-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1245d5f-a29f-5dbb-be97-44230b9486d0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7748af30-7cb4-59b4-895f-cb46016bbb72", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi" + }, + "version": { + "uuid": "6f021625-a14e-550d-ba6e-5908cb7aa320", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80a38ed5-1071-4547-8e56-7ef6bb55b058", + "name": "quarkus-spring-data-rest-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32594038-85b6-51ee-95b1-006283768db1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b1c876e-1842-5634-af41-eac112702f5d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment" + }, + "version": { + "uuid": "bcc259db-cc4d-51a0-a419-d9aebfa0644b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e155be86-3227-4103-9edb-77bae78824cd", + "name": "quarkus-spring-boot-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e28ec0c-4664-5492-b2f4-da4dc7b229bd", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b7f25df-d67c-548d-add2-633689b5cfa7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties" + }, + "version": { + "uuid": "2e26faa7-a8d1-50f7-a1d3-25c337ec6e66", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-870db237-fa6c-4865-8985-f52fb4a99c2c", + "name": "quarkus-jaeger", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c63c3edd-d82b-5d24-b833-dd95390a3153", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b85a659-89e9-525b-89be-2647ff8f425b", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger" + }, + "version": { + "uuid": "caec611e-23ed-5414-a897-abf59900d67c", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c99295ab-b562-400b-817c-419cf238d77f", + "name": "quarkus-resteasy-reactive-server-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "956d2efa-7999-569d-9143-46a4fb912c0c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7fe8e55b-1e62-58f6-9aa0-48da0a320cd6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment" + }, + "version": { + "uuid": "11b8a748-0958-5b72-b151-5b5aef1fee04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de65163b-f27a-438f-98fb-a3b39487a797", + "name": "quarkus-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "900e18da-2a3f-5572-9db9-6fdc7c1dddf0", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "803e21b5-c5f5-525f-8da9-75a953d18f1f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson" + }, + "version": { + "uuid": "a32c4f28-1462-5e39-b5e3-255c25ea899f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ae8a270-f743-4a2b-98a8-76fa043e62b2", + "name": "quarkus-keycloak-authorization-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "39aa0936-b303-5c34-83a9-492bebda9ddf", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8096f4f3-7458-590e-9214-5b3e61c58208", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment" + }, + "version": { + "uuid": "3f6c7f88-6862-59c9-902c-fd430d93bd4e", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f15ec78e-edcd-484d-9db1-3f9f7f991946", + "name": "quarkus-spring-web-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ce5d970-42fc-5788-9425-c6aebc1cba8e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80c688a4-d3a8-5445-b3a7-7508d55b95e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment" + }, + "version": { + "uuid": "327f7023-b759-514b-9bef-8cf5dff57545", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e9b381-db68-4826-bc61-817051e1ae2a", + "name": "quarkus-narayana-jta-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "70fdf043-217e-559d-9a2a-fbfb51701053", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80de8c07-ef1c-52cc-b8a6-888ecca10806", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment" + }, + "version": { + "uuid": "3a83f8f0-6e1c-5b58-a6f5-ef004c788c1b", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9bb9a4ac-f467-47a5-8573-2d7c6f5a6537", + "name": "quarkus-jdbc-mysql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cc737316-be25-50bc-88b0-e2380e514f64", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "835553fc-e319-52c2-bc48-55d70a2e8187", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment" + }, + "version": { + "uuid": "ba51d5cb-6edd-5938-a4e6-0cf9148a314c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de924e9f-a767-44d0-a261-b967399024ea", + "name": "quarkus-container-image", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c47e373-6eea-5f0e-94cf-5ec5b5a6c694", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84d91d6f-a02a-5104-acc7-df3f7971a499", + "purl": "pkg:maven/io.quarkus/quarkus-container-image" + }, + "version": { + "uuid": "6d96e730-0745-58b1-8e57-d0a25579fc52", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8250ddf2-3f04-45e6-8221-5a414ed5b9c3", + "name": "quarkus-spring-cloud-config-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3dc8aca-8374-51a5-af20-ea89a4221ca8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85456513-49a5-500f-bf9e-ad975600f71e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client" + }, + "version": { + "uuid": "e5b65e32-3acf-5321-a2a4-04fef8b0b8d6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21b37735-8fa4-436c-9039-40682c6840a1", + "name": "quarkus-hibernate-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c587df9-c5b4-52d8-b945-107f5ae06e67", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8549e270-4cc5-5e0d-ae98-563e798a0e6d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment" + }, + "version": { + "uuid": "93d1e295-f4c4-5840-876d-166c10e0cf76", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e42d136-b872-46a1-8694-aba9187bece3", + "name": "quarkus-hibernate-orm-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1113f065-02a1-5a2b-a24b-6b5a017ba2a3", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86cd0b18-a502-5999-ad85-121edc70dcca", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment" + }, + "version": { + "uuid": "0688e6c6-2486-5688-afc5-2c50c1ce5c8e", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6a140c57-6426-4102-abfd-2ad47a45be45", + "name": "netty-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "71811857-77f1-5c71-818f-39932ff0bb7e", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "870186f2-68c0-54d4-b632-cb524ed17e79", + "purl": "pkg:maven/io.netty/netty-common" + }, + "version": { + "uuid": "2bde327b-738c-593b-a11d-7e5261be5900", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e219e264-7a2a-4ce2-b739-530e599366eb", + "name": "quarkus-undertow-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f0dc1fa5-0fe8-5f34-99de-545c7100c8c1", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "87bfa2aa-0fd1-5f7e-816f-ccae9b3dbec5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi" + }, + "version": { + "uuid": "b96b6835-ac44-51cf-bf99-16a2d8e0b5e5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39c9b12c-f528-4ccc-867e-3e700fd00eb8", + "name": "quarkus-smallrye-graphql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66fdadb4-877a-5096-991a-81a0854af017", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "881457c9-aec4-509c-bfc0-55dcce7942d7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment" + }, + "version": { + "uuid": "3c00118c-2382-5aa0-8375-ce1ab309e54f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7875f88e-5485-4b01-9d8b-a58e422f3b6e", + "name": "quarkus-smallrye-context-propagation", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce888339-535a-5a0d-8385-3bcb4168b77e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "88825f7c-0148-5eb3-92ab-cb823d86c24a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation" + }, + "version": { + "uuid": "4470755c-2368-5c06-8788-14de4b1adc66", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fc7c15b-8c3c-4573-8287-23bfde8997a6", + "name": "resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dccda6ae-0f2f-5a0a-ab47-6c03ef2d7b74", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "89c6538e-8f5c-5dc4-8bed-e6ed0fc7d21b", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive" + }, + "version": { + "uuid": "fab2ee4f-2315-5ad0-bf0a-037f4545a2b6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6159804-c8d6-4237-9761-22f97bc8fccf", + "name": "quarkus-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae311bc2-7848-5c3c-a26a-f2b8f31d1447", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a3c8def-0399-56e6-947c-07a1fb4b44ca", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment" + }, + "version": { + "uuid": "f6a2eee4-b67e-587f-b70f-b727737658ce", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d8fa47-875b-4fbe-9f20-7340e23a90fb", + "name": "quarkus-agroal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f168de3f-4478-5789-acf7-b6c6730dbcc4", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a407fc0-9844-539e-98e6-c380d0722594", + "purl": "pkg:maven/io.quarkus/quarkus-agroal" + }, + "version": { + "uuid": "2a339e09-59c8-5907-9683-9786118e6b64", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-11b7fc0a-bc3c-4578-9667-fd9a2f001f39", + "name": "arc-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45f0c536-c04a-5344-bf57-540f7375ceb4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a7b3a75-2dde-56b0-b441-bfe58d6c94a4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor" + }, + "version": { + "uuid": "6df7d2d7-d694-55ac-85a0-7d2a6a430d16", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5c50423-a678-4d56-9953-7330c3c5e232", + "name": "quarkus-panache-hibernate-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce31edc6-2710-5460-bd71-2a660959e25b", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ab2fe35-5260-57bd-a745-bb22509ac334", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common" + }, + "version": { + "uuid": "a08b583a-f0bd-55a3-9bd3-c89250811f72", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6587db85-8577-4aa7-b4b5-50d4f65b5945", + "name": "quarkus-resteasy-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50df6c36-498b-506f-b5b6-f22cdca035a1", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8b692a6b-ce77-577a-949b-c2793aefae76", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb" + }, + "version": { + "uuid": "31c75ceb-977a-5f70-91fa-84b3c0e6c0c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1af8ffc0-d301-42c2-8980-82f971e3d585", + "name": "quarkus-smallrye-openapi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac3051ce-b7fa-5d1b-8071-4756e914723f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c22239a-29e9-5fd2-8048-9503219b4c15", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment" + }, + "version": { + "uuid": "7b245d36-b6d3-5d84-b9dd-282eb101dc92", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6095bef-676f-4f49-a3db-612888f8200f", + "name": "quarkus-resteasy-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f012f320-f329-5707-90f0-80233d44540d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8de15e7f-5d38-571a-a0d2-baa6da3ffefa", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment" + }, + "version": { + "uuid": "e389d577-7d21-5ace-8276-450f2617ec73", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8ba62f-fcb4-4d1b-88bc-fdf317d55a1d", + "name": "quarkus-netty-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c68068ba-f4ec-5984-8de9-0c803541cf3c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e018191-bd99-5687-b999-4bc37ec3f997", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment" + }, + "version": { + "uuid": "f03e1436-bf6b-5c9e-a0e5-9496f388e74c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a26fda24-bce5-43e6-8b99-a1e89165717a", + "name": "quarkus-kafka-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd66beb3-a365-51e7-aee5-fc221fc3540d", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8f06998b-ffcb-5891-af8f-f7c784117f2e", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client" + }, + "version": { + "uuid": "9fbc9520-e228-5105-8d3c-6fd5f0e33fd8", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33025a1f-2330-4031-be0a-cd2d50e9b2e9", + "name": "quarkus-elytron-security-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4818d536-ecd1-5ded-9623-90a74e5ab213", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9117ba37-1138-590e-a902-c1cb33c00ff3", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment" + }, + "version": { + "uuid": "bfe43c3a-b5e5-50c1-81af-f3ee7d0977cd", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-955f9c35-31d2-4825-a615-5d5c24b2ec36", + "name": "quarkus-reactive-mssql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d232d104-560d-5908-a63d-8f28ea917d8c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "919f5488-b06a-574d-9a79-fef7466711a0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client" + }, + "version": { + "uuid": "1c444ca8-d051-5508-b4c9-019bed0a1531", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16606645-7867-45a5-b5da-6dae9c252d11", + "name": "quarkus-devservices-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4cb84e06-cb6b-5bc9-992e-23061c9135ad", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b0c71e-9d37-5127-88d1-32b5584fea3e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql" + }, + "version": { + "uuid": "fe48a8a2-ad04-5236-8bf9-63412e2b649d", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7a70cd-8eb7-490f-a75d-94dfb14619d1", + "name": "quarkus-caffeine-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc54d22-b269-5028-82a5-eb5fac9fa9e6", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "93ee44b8-118d-5fe0-98b0-c8811c36f64f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment" + }, + "version": { + "uuid": "ab10c629-cb60-58b3-8939-4fcbc12cdec0", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7a8e72d-00f8-41e5-815b-433e55057177", + "name": "quarkus-container-image-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "570db129-156d-5573-a298-64c82816868f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94511500-7e2d-5455-94cc-92336ce41ffd", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment" + }, + "version": { + "uuid": "2faa4353-5e95-523c-9e00-1b54c6a21e3f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05906e73-54bb-4c23-9172-898c76bd6d55", + "name": "quarkus-spring-di", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a5692e79-903d-5125-9df2-0b8bc3418bac", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94a4a80a-b08f-5fec-89fe-84bab45c7edf", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di" + }, + "version": { + "uuid": "c3320e62-70a1-5e58-9858-dda7172306ab", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62cb4303-30df-443f-bbd1-16e8e0701445", + "name": "quarkus-hibernate-orm-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9091fb5c-790e-5c4b-a5c4-6373814af611", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97734d36-fd79-5fa8-b849-14b92bc5547f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache" + }, + "version": { + "uuid": "74088374-2888-59c5-a21b-9de6275f5c8a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a1a98e3-53bf-4e66-9fe5-13ac6b6d049a", + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "805c7c4f-8b37-5dc1-baa8-d193b49e9397", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978a364c-8815-5146-9f51-df97ad59dc2e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin" + }, + "version": { + "uuid": "1a8e0e98-de1d-59d2-9702-03caa5827a41", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39ebd0ce-1c2e-40be-80ce-22b10eb8b48d", + "name": "quarkus-spring-scheduled-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "29cca5b2-78a8-5ad2-9935-32e52e736e1e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97af3578-54eb-5a12-a6d2-d0f39229cc93", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment" + }, + "version": { + "uuid": "ff268798-f104-51a1-8278-75f64881d56f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4d78d43-66d4-4e33-a0e4-9d163885efaa", + "name": "quarkus-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "592e29f9-da5b-56c9-9d65-28ebaf6d825e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97eec557-775f-542f-ba39-f15c6d84442f", + "purl": "pkg:maven/io.quarkus/quarkus-vertx" + }, + "version": { + "uuid": "e7343811-020f-5b12-943e-8cb34cdaa63e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5b2e399-8783-4c82-bf88-c922daeff8d4", + "name": "quarkus-reactive-mssql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d83c7999-1f0b-5dfc-9013-68e0db3accc5", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "98909be2-ed23-5db6-b364-6eeeda380e57", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment" + }, + "version": { + "uuid": "7dcd7aae-6975-5ac1-80d5-c20e95d4b699", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cc633ec-b6ac-452d-b4c5-d3cb497c88ea", + "name": "quarkus-micrometer-registry-prometheus-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1532096-16d8-5f77-b992-6a8281551132", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b077a81-e987-595f-885a-8c0a2e5a2cb4", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment" + }, + "version": { + "uuid": "358086a9-a452-5cca-a9af-71d39039f097", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a15d46a-bb11-40b5-8320-24670429d36a", + "name": "quarkus-resteasy-reactive-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee333e07-55af-595b-b0ce-4ea31785a8e3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b3468b6-cba7-590f-91ea-e408afcf66a5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment" + }, + "version": { + "uuid": "1825399a-e96e-5c0d-8573-4789961cc988", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-912eb1f1-f103-4b17-bc87-0d597056e584", + "name": "quarkus-logging-json", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ffc7fa3-6fba-51c8-a81a-ef4f7c4fd2a6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b735f2f-6ac1-5323-94d0-db693fd230e6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json" + }, + "version": { + "uuid": "fd07d24e-1029-5de1-a3bf-6b270a5139a5", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e70cf4f4-c7a5-49d0-9efd-96173cd3d73c", + "name": "quarkus-container-image-util", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aaf4b651-c295-57d5-a024-8b83a4b165f5", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bca9925-dedb-5efd-9a91-2e84c276f60a", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util" + }, + "version": { + "uuid": "207a230a-12a6-5c63-822a-278e66616c3b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9aa8f03-f9c7-43a3-803a-bec9ed624ab5", + "name": "quarkus-container-image-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "86731ecb-63a2-571e-b9c5-f5cebdc88a2e", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bdb7289-f52b-51f4-86dc-d038b99795d0", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment" + }, + "version": { + "uuid": "c76b5491-ca1a-5835-b587-10a74f11e531", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b214ec95-bc6f-4aa4-bf20-555f320034d8", + "name": "quarkus-resteasy-reactive-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3617f8da-e4f2-502b-b5a3-88939f7f4a42", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c14c788-bf52-596e-9734-779af6967284", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment" + }, + "version": { + "uuid": "65d504ee-537c-5c0d-8be6-d8930138d3d4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d557514-5b60-4186-a560-c2d513993881", + "name": "quarkus-resteasy-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f2787103-d68b-50bc-a837-c99cdd1c2879", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c3864c6-f91f-51f3-9db6-f70304b7425e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment" + }, + "version": { + "uuid": "adc6fdb3-e783-562c-ba53-a01772beb6af", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21fd301e-8966-4ffa-a7af-e4f639430f55", + "name": "quarkus-kubernetes-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca59ae9-378c-54c2-8924-44c4178ed253", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c66fb58-da6c-5c32-ac44-20a02871050b", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config" + }, + "version": { + "uuid": "6d6010bf-e5bb-5d4a-b523-a4fd21600186", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22f7d732-1f1d-44f3-bb4b-99d1b3c08a2f", + "name": "quarkus-spring-scheduled", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dcbc748a-5278-52b6-a9ea-6d059857fe3a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c924777-a53a-5e47-a978-e4b7b7f0372e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled" + }, + "version": { + "uuid": "a6245182-ff1c-56fb-a548-0e6c98ab1f4f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f4f85f7-1eff-4487-869a-28717ad63a00", + "name": "quarkus-devtools-message-writer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c3089677-7ed5-5e80-bcb0-7c9bf3d206ff", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9df043cd-9411-5a0c-b890-0bb8f486f239", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer" + }, + "version": { + "uuid": "9ca065a0-36ee-5213-b715-cdbbf893562c", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-014069d6-89c8-4277-aac0-6963bd5005a7", + "name": "quarkus-arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac9b931f-aa73-559e-83bf-3ca2a91950c8", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e4c3064-2c18-528d-aa07-701eea978318", + "purl": "pkg:maven/io.quarkus/quarkus-arc" + }, + "version": { + "uuid": "3b13dd42-42a6-58bf-afc9-353894a765a7", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dba054e-c67f-4ecc-b9f9-28278f946f46", + "name": "quarkus-smallrye-jwt-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "72b8bc46-3c8d-5107-a96f-bb334d88e484", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e64c5b0-7983-571a-8b07-1343eb6c07a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment" + }, + "version": { + "uuid": "da1597a1-9955-5cea-84e6-9e77a75d77c1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6634e80c-0a68-4852-8ed8-6f1412906dc1", + "name": "quarkus-micrometer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8149cb27-43eb-530d-a5c3-9862d8751717", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ec07e2c-785f-51f0-a277-07119eb3c876", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment" + }, + "version": { + "uuid": "077f4245-969c-5509-9850-57b828d5a874", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3af81bab-d8fd-47aa-b86f-c08d77bfb53d", + "name": "quarkus-smallrye-reactive-messaging-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5e6f667e-1bd1-5c85-bad1-52f5435657ab", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9eeb7ed8-013c-55cf-a68c-22ff0aea137b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment" + }, + "version": { + "uuid": "68913a3c-f609-531b-81ef-7f640e828566", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7da82dc2-dc81-4112-a044-6ac0dc771cfd", + "name": "quarkus-avro", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4093e8d1-c6b1-56b6-a26c-914a596ac177", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a21b936d-f87a-5868-bf25-c2da931fc246", + "purl": "pkg:maven/io.quarkus/quarkus-avro" + }, + "version": { + "uuid": "817d4f59-f970-5273-8cdd-6bec155c197f", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc1a9190-6b70-4834-8e0e-48b74fd172a1", + "name": "quarkus-jdbc-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0875f742-36df-5828-96c9-af456be678e7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2aa172b-411e-5444-8b2e-d42cb4415f8b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql" + }, + "version": { + "uuid": "a6c0b74c-5619-537b-98a5-97f7772723fe", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e53806d0-e917-4ba5-8c09-c5325e4e4a29", + "name": "quarkus-scheduler-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7daf0177-7c44-5ce2-abdd-c10da99f4cab", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2cafc28-0a55-5463-9fa7-8d02dc70391f", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment" + }, + "version": { + "uuid": "556b676f-f02f-595e-a33e-ce3e19b828a6", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c3625f7-cede-42f6-941f-2cadd1dd02ed", + "name": "quarkus-smallrye-health-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1ac15027-2f56-56e9-854b-6c4f2a962b62", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44bef55-7920-56ab-8345-d3f36424051b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi" + }, + "version": { + "uuid": "ffe857ff-5085-5e3d-9620-296c47d47956", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d368d8b-0b86-4df5-a0e7-82382f49f40b", + "name": "quarkus-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b7ee19f-b6cd-5170-8b2f-c2d8054a2d52", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a462f106-9e7e-551f-ae30-9c385ea9c469", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common" + }, + "version": { + "uuid": "bc5e3e5a-9007-5fea-84f7-32d5c220be54", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a1956e07-7ad1-414e-bee0-f0332544dde1", + "name": "quarkus-jdbc-oracle-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "74773f81-2b44-57ef-8cb9-640f3773974d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a46c9370-742a-5834-aeca-78315f0cef6e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment" + }, + "version": { + "uuid": "e68f7c7c-ae7d-506e-9c19-8288b87110b1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63df3915-1b7c-4e1c-8711-81404b9c3882", + "name": "quarkus-bootstrap-maven-resolver", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87748030-57fa-5eb1-8949-271458c4eb89", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a4d204ab-0029-5780-8b93-4988d8b6f602", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver" + }, + "version": { + "uuid": "245b37ef-554e-59b2-ae47-f62ed4cc66ee", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-891df0b5-9db2-489c-8a78-8988e576f238", + "name": "quarkus-mutiny", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88ee5c2b-40b3-503d-8000-24a7f6490dba", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a50c1576-98e5-5270-bee9-03db1bc4e63d", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny" + }, + "version": { + "uuid": "558092c3-cec1-549d-80a7-1ce75c7c8a2b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ee77a41-e8a7-4b5c-b576-f9125b138d84", + "name": "resteasy-reactive-common-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c16d9da6-2b73-513c-94d0-f952e66b9167", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a517a429-c199-5768-a449-b12f40024453", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor" + }, + "version": { + "uuid": "6b4684eb-705f-54ef-b04a-f5087b69838c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0eb5efa-d271-4c76-a518-d8248b2c6bf6", + "name": "quarkus-spring-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "515b624b-e7a8-5890-afad-ad61efc2de64", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a56c5039-7863-50d3-a09c-2a13355cf17d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache" + }, + "version": { + "uuid": "d2ecb6ae-29f1-5a86-93fc-0f072dbbc07c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c769adc5-011d-47d5-bc2a-e58edd9ecb76", + "name": "quarkus-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5ae7faa-1491-5cc9-b011-e86818db6e5f", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5b81d9a-cdea-5e75-bc2c-943d256d3a9d", + "purl": "pkg:maven/io.quarkus/quarkus-qute" + }, + "version": { + "uuid": "289de4a4-d62d-57ff-8cf1-7eeec2b4b2d0", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-008baaa8-8056-48c3-b019-24a82b3a4bf1", + "name": "quarkus-smallrye-metrics", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd26dc77-054e-502c-bc44-3c6b80e74fad", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c9830d-7f73-5389-9dba-e9cb66ba91d2", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics" + }, + "version": { + "uuid": "2a37afdd-d720-5891-b85e-ca69d6d9c46f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98ddc554-a57b-4498-b1b2-b0b64e276ede", + "name": "quarkus-smallrye-opentracing", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a3ba153b-e142-52ff-8678-6a07343b1840", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5d3be76-744f-5808-ae51-cd7152c10edb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing" + }, + "version": { + "uuid": "0483a86b-4be2-5e41-9ab8-9481363bdc29", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f451c0cb-ec89-4a82-8f9a-7800470d831c", + "name": "quarkus-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a6fda76-aba0-5f9a-8eec-962e34658d62", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5f50241-7b05-58ec-a676-5c7f98134e67", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment" + }, + "version": { + "uuid": "0620bcbf-dcf9-5a3f-8a2e-ada6a9131612", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec4b24cb-1c51-4692-a5ab-b5d57ed62005", + "name": "quarkus-resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e2882ee-e8f2-5caa-bf21-d228086703e0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a63eacd6-584c-5dd6-ad64-daa1377f4af0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson" + }, + "version": { + "uuid": "fc9dbe74-fa58-5478-9216-30891383f491", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ef03e2c-bb4a-49bc-888a-18cc01d830e8", + "name": "resteasy-reactive-common-types", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da8218aa-1bed-5788-82a1-3d0cbe251c66", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7006e0d-50f6-5e50-a334-097abe32ac60", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types" + }, + "version": { + "uuid": "7d9453dd-b7f7-5648-8eed-6504c777dd0a", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad24d95c-698b-43c8-a36b-57e68ac1cba5", + "name": "quarkus-devservices-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "669552ab-82ce-5109-b276-ed2b71b37951", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7071bc7-2ab2-573b-998d-fbc29756eb93", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql" + }, + "version": { + "uuid": "907db670-f9ba-52ac-b8e0-106b7b21b2c3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29c17706-1d5a-40ae-8498-087c7932c404", + "name": "quarkus-smallrye-metrics-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6fe294e9-f209-5483-b98a-9c9308a9ab2c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a91b7192-9283-5f97-805b-321b3349c545", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment" + }, + "version": { + "uuid": "02a8a9ea-afec-50e7-8afd-8c38bdc90381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfa97a5d-0a3a-422c-b533-495986937ab0", + "name": "quarkus-websockets-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8718bc4b-91f4-58b8-8ce2-a2b62a1582b3", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9b32bec-1535-58aa-bd9e-5e5b6ae73372", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment" + }, + "version": { + "uuid": "a9331cac-8dd6-5970-8ddf-e6dd187663cd", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15dbdcaa-d711-4c14-a539-6e75bfe91a59", + "name": "resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa9f9f22-7ec2-539b-a3e6-db40a84ad862", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab04c64f-975d-5573-a615-7d2bbdae0bfd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson" + }, + "version": { + "uuid": "bca9dc53-6971-5836-a00e-ce89d99e5a8c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc31759e-a95b-4640-9bbc-c2fe5954eb79", + "name": "quarkus-jaeger-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb08d125-73d6-5057-8e9b-f0a6f83359c4", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab7c597d-4fb3-5346-a38b-93a986f86aaf", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment" + }, + "version": { + "uuid": "25632245-49ed-5c4b-a915-663d53c8be7a", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d0668cf-8d30-47aa-9d14-63806309258d", + "name": "quarkus-jsonb-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88714dff-3c3d-5355-9918-6535fdca4139", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "abd436b3-604f-5064-822c-14b38771497a", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi" + }, + "version": { + "uuid": "d2084924-2339-59ae-8d71-668f4b37176c", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92f47d5-6d74-4dfa-9a03-1017989ea3ca", + "name": "quarkus-resteasy-multipart", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a7d46a6a-8561-510e-9e2b-d588b6ab56b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aca1f02c-7f73-5c80-997f-391190a548a7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart" + }, + "version": { + "uuid": "ec5f69d6-0b02-5a8b-8d24-501783dc5514", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6cb4a43a-380f-40b3-b196-54b1f46395f8", + "name": "quarkus-narayana-jta", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5313707f-d662-5b75-a796-642bda3b77c2", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad2dee77-d472-5cf1-96ef-83a361d66fed", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta" + }, + "version": { + "uuid": "d50fb45f-283b-53fa-872c-f7ca5f53d4fc", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90f322fe-ae88-4695-be77-8f60e6b06d3d", + "name": "quarkus-mailer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0688ee06-5888-5216-957c-94739a0f0869", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae4bf923-0e17-54f3-a6a2-e429010c9743", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment" + }, + "version": { + "uuid": "765cdd7c-5b8f-5793-8864-3a10c765c677", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a58c69b-be61-48cf-8ba2-af220e958f23", + "name": "quarkus-kubernetes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b230e2bb-3462-5899-880a-280f096d0e73", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae5704d8-da92-5d2c-9fad-37b7b9d8e2ce", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes" + }, + "version": { + "uuid": "ab28e575-2a40-56da-b59a-8025b69b36fb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f9e643e-0c95-4c7a-a496-a755dcfcdfac", + "name": "quarkus-oidc-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "13bfa14d-7e22-5378-aa7f-98ec6dc4df8f", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af73962a-e96b-5b6d-9bb4-7055d5005aaf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment" + }, + "version": { + "uuid": "ed12e1be-db8b-5daa-a559-ca91dcafd1d0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28e51f46-74c7-49cd-8c3d-d1a5afecfbae", + "name": "quarkus-hibernate-search-orm-elasticsearch", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d4f24d3-9d33-58e1-bcb2-fe6e3561f16b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b003df58-6a0b-5761-ad37-aebccd7ae80a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch" + }, + "version": { + "uuid": "2d9612fb-9177-5271-9aad-1d9576c124e0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4249d006-888b-4ecf-aefd-bbc1aa25bb4e", + "name": "netty-handler-proxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "623955d6-e466-5312-9ac7-54acab01333e", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b056e5c5-162b-59b4-85c7-2a2f4055db3b", + "purl": "pkg:maven/io.netty/netty-handler-proxy" + }, + "version": { + "uuid": "b20cfab0-0860-5b79-8785-2f81bf383389", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78450b9e-300f-4e78-85a1-35441de0ad66", + "name": "quarkus-transaction-annotations", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8f6fa2ef-e221-5e0e-bd6f-2eb291f0a872", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b094d2f2-26f5-589f-a9aa-b2293997787e", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations" + }, + "version": { + "uuid": "0085ea99-2b38-5c5a-a407-75af872e7141", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e97119c-0fde-45b4-9b9a-425ca2acdf3f", + "name": "quarkus-swagger-ui-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "57c5a24c-606b-5a93-9c2a-75781efc6465", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1937ef8-56bd-51d4-83a2-7c5cc5c2c2a1", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment" + }, + "version": { + "uuid": "60f441f3-d7d8-5024-b00c-7c1b8efbb077", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f466ccaa-7abe-47f7-aaee-babef544025f", + "name": "quarkus-resteasy-multipart-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ef86130-0f3f-52b5-b90b-ba8ca10a46a6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1e53941-21b4-5688-9d60-de6797c2450b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment" + }, + "version": { + "uuid": "33235e9f-a1d9-54bb-9cf1-2e20231f70f7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67cc2dc5-fee0-48ef-b6c0-7fbf34c8211a", + "name": "quarkus-rest-client-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45578196-ca80-55ee-9774-a4c44e749451", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b34fc052-8b75-5228-b4ea-29e2ab12bf46", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson" + }, + "version": { + "uuid": "75e92e4d-e142-5fcd-90bf-dbc83b51ee7b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5aa8685-839d-4a12-b7cb-1f413418ebf0", + "name": "quarkus-agroal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f894eaba-d07d-5744-9c29-25100d5c450f", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b50622f4-f7b2-5458-9c2e-9e22f1448f76", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment" + }, + "version": { + "uuid": "67eec0b0-0d30-55c5-a312-a6b94d94ab32", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-248daae5-2712-4d93-afb5-04001ed14f36", + "name": "quarkus-datasource-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3ed57da3-c579-518d-9a2a-8584fb119536", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b512e741-660a-5a85-829b-87e3449751ff", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi" + }, + "version": { + "uuid": "4cf989c2-7a4d-5e25-8384-e3c4748acafe", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97d3be1c-7f9f-4676-b32f-fe8c98e68b87", + "name": "quarkus-grpc-codegen", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cf95cbe5-417c-59e0-aa98-00bd2e5a4675", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b580173b-e9d4-53f1-9970-e0498e968f46", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen" + }, + "version": { + "uuid": "2f598641-f28c-52ee-87d2-436a9a32e2b7", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c1338d6-3b15-4d64-ab3e-a10c4fab864e", + "name": "quarkus-security-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4125770e-844a-5eed-aca7-f4154a21fef8", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7f7f1e8-25ad-529c-a456-c475ed534902", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi" + }, + "version": { + "uuid": "78b19386-0ab9-583b-9ace-3f99176c753b", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b406a7eb-2a55-4a47-8a6a-30859cd87319", + "name": "quarkus-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7df6f9b-ab20-5f55-b526-c007b3325b2a", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b8a536ff-e7ba-5ccc-a0e2-b59d6686167a", + "purl": "pkg:maven/io.quarkus/quarkus-cache" + }, + "version": { + "uuid": "1ac726da-4b50-5760-a8b5-f622f6ce8fc4", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f78207a2-0a6a-4972-8c81-2b0827135754", + "name": "quarkus-resteasy-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "73bf5c22-bb19-58e4-bf6f-a3ced74c9597", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba6ea902-3057-5e32-b4c4-564c667d5864", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi" + }, + "version": { + "uuid": "02ddde8b-12f0-5ca0-991c-a3f844a2a1dc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-abd5ee81-d6ec-4a56-92df-f2086ded8879", + "name": "quarkus-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "59daad81-458a-532e-8e4b-bac83b96abc6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bab686d6-fd7b-596e-a316-20c86f16b245", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment" + }, + "version": { + "uuid": "80b9e62d-9008-5d69-a5bb-cd0b03c8134d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83a64c36-23c6-4450-a8e9-ca5bb7e6177b", + "name": "quarkus-spring-boot-properties-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ecb7f2f-6e43-5fc4-962a-ed48dd1935e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc7db2c8-98df-5847-9ff0-b66674644633", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment" + }, + "version": { + "uuid": "92e2bbb5-a0c8-5c9f-ae43-781fb70ac666", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-811bdc6a-22a1-4e19-a700-86361456bcf1", + "name": "quarkus-extension-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f6a5013c-4047-59b3-9fea-882f7cdb0450", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc887a8b-fa8a-5674-a92b-ae516c054e8d", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor" + }, + "version": { + "uuid": "564602ff-daa0-51d7-b0a4-49b1959571b1", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b8ba8cf-d579-4811-abed-fbdca1363287", + "name": "quarkus-opentelemetry-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9d4415cb-eb17-5b29-ad16-f202f3d06a14", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bd6e8f49-b1fc-52b5-bca1-63c2f5bc8881", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment" + }, + "version": { + "uuid": "42705cfa-6638-5dd6-a0a1-ec273e7b3bb7", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bfc6b7bf-551b-41db-ac76-3858e44c4950", + "name": "quarkus-rest-client-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88a8026c-0e3d-5889-9692-0dd368c00273", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "beb64354-4f34-57f5-adeb-55dc35b8252f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson" + }, + "version": { + "uuid": "b2e7d260-aa64-5011-8abe-d5b5f3c550b8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb0e264c-0781-438c-82d1-6a3f4adafe74", + "name": "quarkus-hibernate-validator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ffca768-1aac-5286-b6b9-0345aa49c08c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf7829a4-4d05-5542-b6cd-d3858f454b96", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator" + }, + "version": { + "uuid": "7d28776d-c068-547d-8aa3-8dea9c4e2e41", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127304a6-d01f-4f8a-8685-bb175bc628ae", + "name": "quarkus-rest-client-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb1a455a-f6ba-554d-af23-34fab2c30ed5", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf90e9c9-dbdb-5812-a939-846823cdde5c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment" + }, + "version": { + "uuid": "ccd1e9e5-e77c-5942-9195-e89f29048b26", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46b5ba29-c5e1-422c-bd89-a4cd7d32918f", + "name": "quarkus-scheduler-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f8a3d3a1-a04a-56e3-b5ec-7c0eeb92be1b", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c179b651-c10e-5827-9dcc-07c24d6963ca", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api" + }, + "version": { + "uuid": "aebae22b-7fad-5724-aadf-f7e93ca21312", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e15a6ad-2737-46e0-bd65-bcd52e336e09", + "name": "quarkus-jackson-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "117ffc0d-d066-502d-9ab0-db9a87e5bf16", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c1b86c4d-7b22-56ee-afb4-bd47394447ed", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi" + }, + "version": { + "uuid": "e3c590c3-a642-5a25-92f5-c74633e19f7f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b30ef8d-3d57-4f2a-84d5-3792712a5c92", + "name": "quarkus-reactive-pg-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae0a9100-69a5-5795-953a-06a41f1f2cbc", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c237b650-b89b-5888-aeb1-9fedef81f41b", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client" + }, + "version": { + "uuid": "b89903ba-462e-5340-9102-6f5ec3b28bf6", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ed8f6a1-0abe-45b3-95eb-4d10f4c549ad", + "name": "resteasy-reactive-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "51fe20ab-f04d-5a95-b6e4-b677b7fa4ee8", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c24bdc76-cbee-5602-8925-cb320cb67033", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client" + }, + "version": { + "uuid": "bb7b4eb4-8570-5880-a9fd-5bfbcb470654", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5efbc662-6a25-48e1-a1f5-82695b1637e7", + "name": "quarkus-infinispan-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e7e676-1070-5342-9efb-b0f15e12e1c3", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c304a290-381b-5ec7-9c62-dae6bdfc4712", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment" + }, + "version": { + "uuid": "02009d12-be92-56e0-bb8a-c7103317b927", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a088b32e-bcd3-4454-92ff-7304dde872b9", + "name": "quarkus-rest-client-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7da94023-a664-5603-b887-6146d1d8a79a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c3792597-babb-5cdf-be19-edf43e05de75", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment" + }, + "version": { + "uuid": "98d5f791-db47-5589-8faf-17eb6bc9e0f3", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c4d89d8-2cd3-44dc-a7db-667df14518a5", + "name": "quarkus-security-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c48073a9-9245-5fd9-a574-b009fafc5115", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c4600f25-a848-5551-98b3-72a94b7d8856", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi" + }, + "version": { + "uuid": "5a692d37-61f1-52a8-9520-2d543e0c5c31", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d08c424a-7e73-4b95-8d82-1147e41cec83", + "name": "quarkus-class-change-agent", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "201e7f0e-c1a1-56cd-84fa-640545076a13", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c57fc5d6-3a8c-528a-baa1-3891ef904b8f", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent" + }, + "version": { + "uuid": "fe5596ef-7151-5682-9fdd-4c0dd78b707d", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c542ebd4-13cc-4af1-ad60-63ca9441b2d4", + "name": "quarkus-spring-web", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "91d52121-2e68-50f0-b83c-6017c3eb60d1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c618deec-c4c6-527f-aca7-3de7bfec0062", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web" + }, + "version": { + "uuid": "b3fc4345-ddf4-576d-9f53-1f4dde44b98e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5791f9bf-f838-4ba2-a1ad-39aa09c0152b", + "name": "quarkus-hal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "21b1b624-f6ca-5b26-875a-8ed46a9c0ec0", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6298040-511d-513b-b3c9-2e11972101f9", + "purl": "pkg:maven/io.quarkus/quarkus-hal" + }, + "version": { + "uuid": "ed41b090-b79d-52e0-9570-30368d3070fb", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38c8759d-36e5-4db3-b309-afd4ed74cb72", + "name": "quarkus-mutiny-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4b8c9126-6fd4-54c5-8e9b-0f56fb13432b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c62b7ee3-361d-54ab-9d31-52cfc86baa59", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment" + }, + "version": { + "uuid": "c4512ecd-bd30-5d5e-963c-d75c38c4e75e", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-608cf97a-3031-476d-b2bf-2645ab517851", + "name": "quarkus-grpc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0fc58592-7b41-53b3-810b-c02a9e213a8c", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c7c15f09-74a1-5c81-aa71-0af88c0e48fb", + "purl": "pkg:maven/io.quarkus/quarkus-grpc" + }, + "version": { + "uuid": "0584ccb5-f648-5cfc-82f1-146e452a4bee", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95be5c33-d6f8-4ed4-92f2-9baedb8a154a", + "name": "quarkus-oidc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a95f54c6-930e-560c-a51c-4d02b4739661", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8042e2e-4275-51ce-921a-1dcae7fc6761", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment" + }, + "version": { + "uuid": "3e0b9512-38c9-5de7-a662-39d3f36a3723", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e95a024-ee66-43b9-835b-2d11d5b493c0", + "name": "quarkus-resteasy-reactive-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dc8315da-46e5-536c-a642-07e59fad8155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c81b2d5d-9c8f-5286-851b-fec430be2d1d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment" + }, + "version": { + "uuid": "990e83d9-051c-5dad-916a-fead476aa663", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-093f8d34-1829-444e-b121-fd46d2e5a21d", + "name": "quarkus-reactive-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "454fde09-ab4c-527f-a07a-3c391e5c8050", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cab0d335-9258-5745-be2b-ae02849cccca", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource" + }, + "version": { + "uuid": "b6744a9f-1826-5338-86a3-24a219de8a6c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8f3d595-7c07-4985-aa1b-7f6ae8ecf957", + "name": "quarkus-scheduler-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "feeff538-4da3-5c93-a9e9-4837e2ab9089", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cc20cca2-8727-5b76-8462-adb1a4faa9bf", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin" + }, + "version": { + "uuid": "2483cc67-fa54-5dfc-8893-11ec9d90cd42", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-602547e7-1ca6-4ccd-aa95-19219c7593a6", + "name": "netty-codec-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "fac6032a-a3fd-56f3-922e-65a6bda2358d", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ccec22eb-096f-5a75-b202-76243cef0248", + "purl": "pkg:maven/io.netty/netty-codec-dns" + }, + "version": { + "uuid": "c2c003af-376a-554f-b25b-40daaed23825", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10b8f85c-d5bf-4887-af22-1a42526378ef", + "name": "quarkus-resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "997392c0-a505-53c2-b7a5-74bcc72276f6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cdc79fdd-3e5e-5215-809b-85fc11bf9608", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common" + }, + "version": { + "uuid": "9a4d1bdf-74ad-542e-a639-3302f7ba899d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4fb3aa8-cc92-473b-8c65-dbd6ee2936a8", + "name": "quarkus-spring-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "807d6824-d29f-5abe-90bc-f8a69a3d96c2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ceea7fb8-e1de-57d7-bede-60be4dca1173", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment" + }, + "version": { + "uuid": "e4de23fd-6bce-59ed-9731-d52c7508d17a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83341b2f-4f40-4aae-aab5-bf4bc15a2465", + "name": "quarkus-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "48382e1d-9bb2-5d55-bf16-5b2a0a8bd1b6", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf328f3f-3eb4-5533-83cf-b5a3e4bedc43", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment" + }, + "version": { + "uuid": "529aecde-30c7-56d4-acc7-3c58957e57aa", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f8138770-4cf7-48e9-b95a-5c6864329306", + "name": "arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba957310-890b-538d-b97b-c05f2322bc0d", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d21608ed-1ee4-58c1-99a8-413afa5f8ccf", + "purl": "pkg:maven/io.quarkus.arc/arc" + }, + "version": { + "uuid": "c819ccd9-8801-5468-a2c6-9a61b33066e3", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e955d9b8-7ace-4a5f-8d82-119b7dd30d1f", + "name": "quarkus-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e67580-8cb6-52f2-ad55-392b99d3f2ae", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2df7e32-548d-52f0-b31d-61463b78ce90", + "purl": "pkg:maven/io.quarkus/quarkus-core" + }, + "version": { + "uuid": "7389656f-66f0-51d7-b6a7-455db9a42336", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-430d898a-9b8b-456c-9151-e2b4e0783056", + "name": "netty-handler", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "48f562d1-fdfd-59b7-bd23-861503f31e5d", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3f4c0dd-ef9c-54fe-b6dd-b37380718a57", + "purl": "pkg:maven/io.netty/netty-handler" + }, + "version": { + "uuid": "a6382423-1382-51d7-bcd6-cfb2eab7d764", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dca658aa-d4db-434b-b895-d5e09ddba8fb", + "name": "resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4bcb077e-f913-54ce-88c1-67f1973627d9", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d4c55081-7168-52ed-a06d-d0ab9e759c41", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb" + }, + "version": { + "uuid": "21f067d5-a339-56ae-b081-0c3e6910a773", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e89a745-9815-415c-a8fc-b5497276f778", + "name": "quarkus-resteasy-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32359031-6957-5c22-9f49-489e923fe155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d5c854aa-d090-5a8b-bfbf-f11937c47d10", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment" + }, + "version": { + "uuid": "82696dd7-340b-5ca9-b6a7-4ab6c465f5ba", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada002be-08e4-435f-bf50-8e6d55f9b77c", + "name": "quarkus-smallrye-opentracing-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "856c4344-2286-5319-b39b-69f20904dbf1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d60f7e69-97cf-598f-8d1b-fcb93ab64dbd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment" + }, + "version": { + "uuid": "e764743d-ab22-517b-b774-9034f3c1c8a7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9796fe6-4b5a-4b7e-8653-cb95a1ff838b", + "name": "quarkus-kubernetes-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d5813eb-0754-5eb5-a9fd-fcd36abae683", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7a5f7a6-29fa-5062-92bd-ab610b82cfcf", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi" + }, + "version": { + "uuid": "d01383c9-fc4a-58ee-8989-443e28f3bf14", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85f7155f-dab6-4acf-bd55-edede3d537bc", + "name": "quarkus-funqy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "25538422-f163-5615-9733-f625dfa931b9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea70cc-1d71-5a39-b561-9849b7d6028b", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common" + }, + "version": { + "uuid": "c82d962b-6c27-5358-80ad-85acb0c9485e", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89daeb0b-4b00-4a9a-8023-4493375007b6", + "name": "quarkus-kafka-streams", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fba76d19-f75f-5ec3-8872-8fda2fc9c0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d86b5909-6339-5e49-866b-959bc438d0d1", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams" + }, + "version": { + "uuid": "88d4c728-e472-5778-a2a9-41789dd19093", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ab92847-6833-4cbc-889e-9e3b642f34a7", + "name": "resteasy-reactive-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c2f71c2-f2dc-5fb0-a106-f1bc68152e35", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d87835e6-dacd-5973-a64c-cafa75b464bc", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx" + }, + "version": { + "uuid": "0d0a31c9-bb9e-5d9a-889d-c4f0df9721d3", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-650b38c4-a6dd-4548-b1e3-e51ee70fe873", + "name": "quarkus-infinispan-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0279c963-bcb0-50c7-a934-4760a3c662f8", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d880a9de-1fd0-515b-889e-cb5b9c41f88c", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client" + }, + "version": { + "uuid": "62046603-515f-5349-bcc2-3a7f3d663547", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1b1b481-bffc-4251-b88c-8f7bb1a7ebbb", + "name": "quarkus-rest-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14785047-21c1-54c4-8f96-94ea0a9b2c1c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8dba6cf-5bc5-5e20-b593-59981049c708", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment" + }, + "version": { + "uuid": "14fc877f-ebd6-5108-a32a-6e04dc3b475f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-690d153a-efba-4ef6-b4aa-2d5cae094615", + "name": "qute-generator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66171e88-dfcf-5b5a-a0fe-3a6e747d49a6", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d9271688-db97-54a8-8722-f3bccd40680e", + "purl": "pkg:maven/io.quarkus.qute/qute-generator" + }, + "version": { + "uuid": "383c0104-7806-5449-ac08-f2f27401671a", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be426b66-efcf-47c2-9754-d2ebfd69f56e", + "name": "quarkus-grpc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b14c7b20-9b29-5c4a-9b84-bb0f66bfdaae", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "daf1f007-48ad-5a93-a9d0-dc0c4047d945", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common" + }, + "version": { + "uuid": "bbb398d7-242b-52fb-982b-75dc1d8e8517", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-966819c8-4b85-4652-bc70-741853a3bea1", + "name": "quarkus-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a303325-e379-565d-b5cb-14b8ac2fda0b", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db42d908-5b79-5b91-8ba6-fa7fdd7ac877", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment" + }, + "version": { + "uuid": "41885b45-cb19-55fa-a9ab-2dda632044f1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9605d0d9-87de-4b9b-b587-54e284668fed", + "name": "quarkus-smallrye-fault-tolerance", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c8781235-c16b-5e9f-b94f-95aeec466dc8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db56d4dc-1396-5cd2-8c0e-66be2437859d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance" + }, + "version": { + "uuid": "1412d8f8-dfb9-50ff-8efd-6f0ac64ecad7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-013f6933-003d-4ef5-a401-24c420f56ff1", + "name": "quarkus-elytron-security-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f616fe4a-a0bd-590f-982b-1bb95971314b", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc70fd20-11e1-53a5-b48d-8bae6254ee82", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common" + }, + "version": { + "uuid": "74c5e920-6550-51f1-b0b1-99939e267379", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59a180d8-feee-48d2-9aaf-a6513e310bd2", + "name": "quarkus-vertx-latebound-mdc-provider", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ef5ab1b4-46e1-5339-81ea-5e55d7d0321b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc91c9d5-b0f4-5297-851c-5a472cd087f8", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider" + }, + "version": { + "uuid": "e7c3c379-25a6-5094-ac3b-7b874a4ac817", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2062c257-0917-4fd1-bd7c-e5a210910f9e", + "name": "quarkus-kubernetes-client-internal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "169e4ab2-eff5-5d1d-a88b-52bc508ec8a7", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ddf5ef6a-eab6-5e2a-8c6b-6f45e0a6a8fd", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal" + }, + "version": { + "uuid": "7f390824-05d2-54b5-ba89-4f8bd977f018", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e4a901e-0b68-419e-8212-a227cd8e71ff", + "name": "quarkus-jsonp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b03f382a-9cb6-549a-8745-dcd1187bfc67", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "df4d2555-8aeb-5ab2-93a5-4a36ddbb10e1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp" + }, + "version": { + "uuid": "ee805429-45cb-5eac-92f9-8e11f4a66528", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80bc7637-1960-4c68-90ca-4dc28fc8415e", + "name": "quarkus-config-yaml", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d5c1f5f4-03a4-5d77-8dab-fc1b0e4bec04", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0cfa164-e24f-5b71-a915-b4858839cdf9", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml" + }, + "version": { + "uuid": "d9709101-564f-5048-b0f6-37eda91a58cc", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bbd4631-877a-4cd1-9e7c-a6b3aa1f084a", + "name": "quarkus-smallrye-graphql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "79739ec7-e63b-5a7d-9525-e351fdf1169c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e112d705-5c6c-5861-82b9-5ff3c03e9f35", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql" + }, + "version": { + "uuid": "7f6e2d54-2fe3-5622-a494-53d0a6085615", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f44cd4be-ff38-4113-8870-427088038534", + "name": "resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9034b075-cf42-5792-834e-c29cd9d74da6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2b0226e-c82f-516a-8704-64d8c0bc3f53", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common" + }, + "version": { + "uuid": "08c021d3-e5c2-5f14-838a-c52f59526abd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a28718a-6654-4edb-b6e1-ff9de003532f", + "name": "quarkus-resteasy-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b72385f-2a52-5862-ae6f-d44b0b864115", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2cbbd8b-1589-5bac-8c83-0f1c8e9a4945", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment" + }, + "version": { + "uuid": "0f000bd1-dc2f-55f2-9603-ad98e863f030", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62974fba-c40c-43e3-ae89-6c661116f1e0", + "name": "quarkus-funqy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "586516a1-bae6-59f3-883c-d5161830f3a9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b726f7-1ffc-544c-b0f5-cc2814ebc939", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment" + }, + "version": { + "uuid": "3bdc2633-4b46-5918-a015-a873309d8238", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b2e4ff2-32ef-4e07-b427-bb0d226b8679", + "name": "quarkus-arc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c85f974c-55ff-5023-ad95-e323ef574b20", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3f03d71-d00e-52f7-a235-38ba3c986354", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment" + }, + "version": { + "uuid": "58ff6c08-889c-52e0-94b6-0e9c83590b4e", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27573c70-8e12-47bb-b75d-b8ed41d7e89f", + "name": "quarkus-grpc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3848a13f-d5b0-5eae-81e0-e2a7a088bce5", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e45ada50-e9b6-54dc-82c8-e8b9225aa855", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment" + }, + "version": { + "uuid": "bf3f57ee-649c-5c63-9910-08a9ac7d15dd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cc097e7-0dfe-422d-a8c7-ced13be42e49", + "name": "quarkus-resteasy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1a7817fa-dbdc-52b5-ae15-9082a79a2415", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e60775c8-fe8f-5978-8449-2f016a9b0c4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment" + }, + "version": { + "uuid": "cddcd2eb-6050-50fc-a751-2594beb8dfa4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b87fed48-0e65-4836-8abc-4b61e726ff18", + "name": "quarkus-resteasy-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee5d61e3-0323-53c2-ac84-1ef590b22c04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e669abd1-f82b-5919-8ac1-aece2f195ea3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb" + }, + "version": { + "uuid": "665eadea-578a-54ff-9fa0-c0030854bb1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfec06df-816e-48d2-a5a4-227d3f2319bd", + "name": "quarkus-mailer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "95d0c540-d850-51d9-990c-7cce57293931", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e78e6247-5399-599c-9ba9-1e640160036f", + "purl": "pkg:maven/io.quarkus/quarkus-mailer" + }, + "version": { + "uuid": "be287883-1030-5b26-8df5-ee3d2cea0f1a", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d475896-ed03-40a8-9566-10ce151f6a58", + "name": "quarkus-jacoco-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6b7ad12-44ba-5448-abce-a4611f9c72f8", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7ac0bdb-68a4-5eba-97f6-0e73eaaaf17c", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment" + }, + "version": { + "uuid": "b50dbcc0-2d0d-54b6-8449-06ce9eef1447", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbb77795-a272-4d8b-b96c-962a725dff02", + "name": "quarkus-grpc-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e58951cd-7e8e-5cd9-b060-a5b55d076ce2", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e80c7cbf-a286-52b1-ac4d-514b834ee826", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api" + }, + "version": { + "uuid": "b1487a52-d207-5661-ba97-e054fd1f5e3e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aab96740-45e5-43f2-8390-96913f4221ff", + "name": "quarkus-panache-hibernate-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4e4d3a7-0ff0-518e-9b10-4deb8e88f0ce", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e811932b-e98f-5c7b-a767-0d738dd995a4", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment" + }, + "version": { + "uuid": "f913b684-02c6-5b50-9b43-fed9fa87c765", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86d9d71d-1c84-4148-a1ce-ea15349aba4d", + "name": "quarkus-vertx-http", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "528a575d-5ed9-5aaa-9882-14701d64b51e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e883632e-4401-5912-a5c7-de4c7af2ae01", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http" + }, + "version": { + "uuid": "c040304d-22b4-5d85-9b32-55ae9bfffa52", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53a65c3c-f086-458e-832b-69c04378d7c8", + "name": "quarkus-devservices-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c092f342-19b5-5cea-ba43-14cb48a07962", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8adee06-4843-5d22-bf57-92f0cba83251", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb" + }, + "version": { + "uuid": "74a34ae2-79a7-5516-9180-79bd64df9b4e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b191a999-9c96-43ca-b4dd-fb4b95f4566b", + "name": "quarkus-websockets-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e67eca41-b7a7-5a1d-a9e8-12c9b49c8861", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eafd7de3-5568-59e0-bcf4-770c03a8cabe", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client" + }, + "version": { + "uuid": "f4b66788-0c3f-5fa1-8246-c76346a9d1c7", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6ecbbd9-31bf-46fd-afda-8082120f5260", + "name": "quarkus-bom", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "269366bb-0d1a-5058-a752-d2cc434431c6", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=pom", + "base": { + "uuid": "eb87eb3b-0dbf-5f1b-9198-94f453fd74f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom" + }, + "version": { + "uuid": "c0201f09-3d0a-5739-9cf3-8ad19dd177f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "pom" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1eb4772a-bf1d-4f54-9078-adb6f5de182a", + "name": "quarkus-jaxrs-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8e4868f4-f769-5997-a539-9a39cfd17982", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebcd4297-30fe-57fb-a57e-802840b432bc", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive" + }, + "version": { + "uuid": "53c02973-c2de-5a01-9973-2410e071c50d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-77e38c05-e480-494e-b2cd-d47343c7a753", + "name": "quarkus-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "62015e78-a111-5b6e-8ed0-6b21e2c819b9", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec1b3715-dc3b-5d58-b839-f5c1ea208fc7", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment" + }, + "version": { + "uuid": "395d0c26-cfa7-58a7-bd0c-5a31f12a9f5e", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8a9a75-ccf4-4bd0-9ec0-c2b947602e42", + "name": "quarkus-jdbc-mssql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d6241b2e-c46d-561c-b8d8-244f7df7e60e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed09daa8-fe60-5150-9bc3-80a922275e74", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment" + }, + "version": { + "uuid": "a9e43bab-f27b-5a8a-b905-acdf1e011ec9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fc0c2c9-cb88-4e61-9421-785575d71b94", + "name": "quarkus-elasticsearch-rest-client-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "68d3db42-c217-5cfa-b90f-de03550b974d", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed33883e-cc22-53fd-80a0-36888b8f605e", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment" + }, + "version": { + "uuid": "6b290289-1fd6-5b72-918a-74ddf3a67400", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b1fb757-698b-451a-988e-4981f06da7d0", + "name": "quarkus-hibernate-orm-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "96067568-b359-56b1-85df-4cf4d5ddc4f1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "edd63df2-6b50-51cd-9709-0a231c19f89a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment" + }, + "version": { + "uuid": "590f04c1-a30d-594c-ab0f-6f0a2367da28", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43bb5522-f8bf-424c-a355-159f43444802", + "name": "quarkus-hibernate-orm-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "384fb55f-3690-59c3-9712-dcbe3d478837", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ee8503c7-2ea8-5f6c-87a4-573ee712d1c0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment" + }, + "version": { + "uuid": "0d5d0124-c32d-58b8-89be-cead6a776f64", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad6306f7-6154-4775-8ea8-f763bfe0f3d7", + "name": "quarkus-reactive-routes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fbb05629-88e5-5674-b504-76eb76a64cd2", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eebdff8b-0aab-58ab-ba5f-6b4c7aebda98", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes" + }, + "version": { + "uuid": "b8086ec8-1779-53d4-9039-adc82ff66861", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21db41a7-5d44-46b7-87fc-95f3417a784a", + "name": "netty-codec-http2", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "b5d0e298-efc7-55b5-a7dd-b78996689fb7", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef580dbe-9fdf-522f-93a7-aef4219fb71a", + "purl": "pkg:maven/io.netty/netty-codec-http2" + }, + "version": { + "uuid": "9accb509-993f-5f93-a36c-cf507582f098", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662fff21-daee-434b-8f55-a64e21b2e441", + "name": "quarkus-oidc-client-reactive-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45547554-2c80-528e-ac46-ca83133ec585", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef86f974-20cd-526c-b7f8-14fb80a1f084", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment" + }, + "version": { + "uuid": "72bcd38d-cf79-57a9-9f62-85c1f672ab05", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69393a69-98da-4426-b814-20f6ca44fea4", + "name": "quarkus-logging-json-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16af5276-7f3b-567d-88e1-189ddbc1b1ab", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0347c68-31d3-551b-b452-988c218428b2", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment" + }, + "version": { + "uuid": "26f32942-d724-5a0d-b072-3b44af40571b", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2a671aa-786d-4d70-a832-3e833dfeaad6", + "name": "quarkus-apache-httpclient", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f97f2fd1-b9fe-5285-8775-3b6f0acbb386", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c07707-2d3c-56be-a8a9-2c806e49d209", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient" + }, + "version": { + "uuid": "217278b8-5cd9-548e-a04b-2296557b3fd0", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c74fb5d-4161-429a-aafe-9d768ddd7163", + "name": "quarkus-websockets-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36858a25-2eba-56a5-8877-8bd9f17c5dbb", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0d9ca44-ef29-5feb-a477-37859493bc9b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment" + }, + "version": { + "uuid": "621e668f-41fe-53a7-96f0-f986103dae3b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91d643af-450c-4c6a-80a9-d55a38eb7f71", + "name": "quarkus-credentials-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fec58798-c2d9-5308-86d8-994336dad58e", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0e1122e-d37e-5641-9427-59491383748c", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment" + }, + "version": { + "uuid": "59aa699c-bb4a-538e-adf4-441855b38fea", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0973486-3136-4c68-9275-92f6e6a39268", + "name": "quarkus-resteasy-reactive-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14d78abf-0845-5e04-bcda-a523fa5b1455", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0f0c6f1-d24f-5705-9e9a-fcf627a1d4c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb" + }, + "version": { + "uuid": "da82c5d0-b620-59eb-88c8-ab3cf62dc29f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56b7e34e-abe8-4180-8dbc-a0aeae6af3fb", + "name": "quarkus-rest-client-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1f120145-691e-5886-946b-cde974c59f96", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0fe896a-e8f2-5e61-b765-adf9f0526b91", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config" + }, + "version": { + "uuid": "bce8fbbd-4207-50e1-a76f-59b67ca59fc9", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eef8f7cd-876b-48bf-bb62-1d1bf799282f", + "name": "quarkus-reactive-mysql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f734ec00-f2b0-529a-91e2-94d3dd5875c1", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f121d3e1-6188-5288-8ac2-83ed471a08ce", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment" + }, + "version": { + "uuid": "79a25ffc-602c-5034-b55c-a32a8922b983", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95897968-1b5a-4cb0-9f28-1388a3119668", + "name": "quarkus-devtools-registry-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a93abe61-4511-5388-bc92-fcaa9be4bb38", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f1252251-456e-5f2f-a68d-0a0c513198bb", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client" + }, + "version": { + "uuid": "b926dee3-9b8e-51c4-9f86-d13d261e5c4f", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-591524a2-6096-4a68-8de6-fb3cf5d5affd", + "name": "quarkus-micrometer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e939d082-66a9-5fe0-b190-c098bfbd5612", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f14cc204-8f1b-5060-902e-a2e00aad23f2", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer" + }, + "version": { + "uuid": "cba221ec-b1cb-5dc9-b194-262ff36443ff", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-102b6d6b-905e-4229-bc15-3f118d26aec7", + "name": "quarkus-quartz", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "11648f8e-675f-51eb-aae3-3e40ad9b1178", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f29a31fa-e2dd-520b-b980-420fbee5326b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz" + }, + "version": { + "uuid": "60645d69-3a02-5e14-b927-319b8dd60ae6", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8a2feac-a9ac-4664-8e83-f2b1e3e2c8b7", + "name": "quarkus-resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "225cedf5-8a3d-571a-964e-addf20718734", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4ea9a18-592b-5dbd-9b7d-234c8e523512", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive" + }, + "version": { + "uuid": "901e6e40-6bc9-5bee-96cb-cd4ca571c98e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59710b04-2df6-469c-8b45-8cf0ff826175", + "name": "quarkus-vertx-http-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32c4828e-1191-585b-a481-1598d8da7815", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f556a5a6-1969-5992-ae52-1430aad891f9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi" + }, + "version": { + "uuid": "8af646d7-5a51-59fd-9328-791543cd1c5c", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20d3d91a-c402-48f6-88f8-1f8648b1e02f", + "name": "resteasy-reactive-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7b4b25b-c224-5795-9d79-ba5bf1f0c7c6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5a9b0f6-b7bf-5bfa-83cc-9de4c403dd64", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor" + }, + "version": { + "uuid": "9221c6e9-fe08-59d9-9301-9236ea906aaf", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b898f7d-3cb2-4ec4-af73-48d7e6f626f7", + "name": "quarkus-resteasy-reactive-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d568bc94-a6a6-5510-9e60-aef0df7e4e28", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f60a5134-41da-518d-9fef-337a58d15926", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment" + }, + "version": { + "uuid": "fee91d1e-e00f-5697-ad27-caa0844bf7e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ecb52933-aeae-473a-82f9-a1b9fab9b3fe", + "name": "quarkus-scheduler", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5f62b6b-706c-5db7-96cc-2f5666a05487", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f62c3c31-8cd0-5de0-ab91-a3afdb05d786", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler" + }, + "version": { + "uuid": "fec0f312-fb75-55ed-9a9f-3cd2372d7683", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1725bb8-81f0-4344-9d93-0f4ed4734455", + "name": "quarkus-mongodb-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd124370-245d-503c-b4a4-a7e755ae8cdd", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f702a7a5-4ce5-5073-a22a-407778c5931d", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment" + }, + "version": { + "uuid": "343bb041-791f-5dd6-9b9d-3374b78da85f", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46a56d3e-d55c-44c0-a6a1-e187f966b92e", + "name": "quarkus-caffeine", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b7dabb-49f5-5fe5-b33c-cfd3aaa60a1f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f79a6a97-7816-5abf-a159-c492616d357c", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine" + }, + "version": { + "uuid": "40e8fdfc-9e4f-5fd1-a546-8acab5fafa1d", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc7559fa-fcc9-4b10-a3fc-448510790327", + "name": "quarkus-hibernate-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ea927d5-5f2d-5538-ac45-a54f6d4e4513", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f81cfaf3-0ceb-54f0-9171-120e509fd7b7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive" + }, + "version": { + "uuid": "367d45c3-e5b7-5b50-9c7f-62ddbe600fbd", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5331ffbc-79e7-49a2-8c4a-221ab76a35ab", + "name": "quarkus-smallrye-jwt-build-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "992ce94e-a7f5-5272-b837-345ad0f503b9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f825cbd1-9668-55d4-94d7-3ddc9cbdf4a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment" + }, + "version": { + "uuid": "d686325c-4ae5-5f03-8bc6-3de81402452b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-789a4d1e-fce0-4bb3-aa33-d92514d6e206", + "name": "quarkus-oidc-client-reactive-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d79179f0-6fec-5b7c-b158-640dea77fe96", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f9a5116c-f4d3-5faa-94bf-0f14fa09b739", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter" + }, + "version": { + "uuid": "538bec89-69d3-5cfc-a9d8-237e5a51e407", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234c3199-c4ca-4821-a483-54ecff90c70a", + "name": "quarkus-oidc-client-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b9fb1f9-f2f9-5c08-8eb7-a614a362e66d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fa4011fb-d6d3-5191-a4bf-49a93e063d9d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter" + }, + "version": { + "uuid": "1bd61d7f-a4f6-5ba4-ad12-1aba94c2bff9", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bd4233e-d61a-4ba0-a3f3-1d7e3b8a708e", + "name": "quarkus-rest-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b15ba520-a315-5e71-8330-e835f569504d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb6347e3-04c6-5fdd-8f2b-929cae211192", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment" + }, + "version": { + "uuid": "bf4135b5-79bb-5f57-8d45-53f755883379", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38841359-b95b-4d67-8041-1d30d1532308", + "name": "quarkus-jsonp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "949cddbd-bd4f-5baf-b012-df5bc2f835e6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc2ca471-59a3-54b8-8e44-5e87d8aae35e", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment" + }, + "version": { + "uuid": "3e7256b7-3354-5957-986c-7bc5cdc61b0f", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0feec1-e291-47fc-a341-b5589b7a7b18", + "name": "quarkus-jdbc-mariadb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "427ac6de-e23f-513f-bf84-da830f776322", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc7dde74-e9ce-5055-a26b-ef114fee1bfa", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment" + }, + "version": { + "uuid": "1feaf60b-57fc-5b39-b7c8-e1e5ad5b6c39", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f651c33-f00f-48fa-9a9c-6165889783ce", + "name": "quarkus-rest-client-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e8dfe966-ecee-53f0-a815-6f868d2b2947", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd2eb40f-6220-501d-a020-a6bf30b08c1b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment" + }, + "version": { + "uuid": "c46a3ee2-e815-5260-abce-8a88dfcdd481", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fd84e1d-6ec2-4bf7-9052-97482f7e6e6d", + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "288c8dfb-be21-54b4-801a-13f03e3a7de6", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fed8bd05-98d6-5ad6-b63e-95b67c2d5501", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment" + }, + "version": { + "uuid": "2de7c15a-ad26-5e7c-92e6-aab028ee5a3f", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-28867", + "title": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "description": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "reserved": "2023-03-27T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T13:51:38.55Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-28867", + "title": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "description": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "reserved": "2023-03-27T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T13:51:38.55Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-28867", + "title": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "description": "In GraphQL Java (aka graphql-java) before 20.1, an attacker can send a crafted GraphQL query that causes stack consumption. The fixed versions are 20.1, 19.4, 18.4, 17.5, and 0.0.0-2023-03-20T01-49-44-80e3135.", + "reserved": "2023-03-27T00:00:00Z", + "published": "2023-03-27T00:00:00Z", + "modified": "2024-08-02T13:51:38.55Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:e116bbd2-840e-4254-9f5c-6f77dd7b1877", + "identifier": "https://www.redhat.com/#CVE-2023-4853", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-09-08T00:00:00Z", + "modified": "2023-11-10T12:57:35Z", + "withdrawn": null, + "title": "quarkus: HTTP security policy bypass", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-4853", + "title": "Quarkus: http security policy bypass", + "description": "A flaw was found in Quarkus where HTTP security policies are not sanitizing certain character permutations correctly when accepting requests, resulting in incorrect evaluation of permissions. This issue could allow an attacker to bypass the security policy altogether, resulting in unauthorized endpoint access and possibly a denial of service.", + "reserved": "2023-09-08T16:10:38.379Z", + "published": "2023-09-20T09:47:32.15Z", + "modified": "2024-08-20T15:26:14.044Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-148"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b10c491-6cc7-4e34-8fda-4304354ee8be", + "name": "netty-codec-haproxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5dcb0860-e5e3-59f0-848d-996d11c20100", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01ede4e7-577b-5b8c-83c2-35e67072f081", + "purl": "pkg:maven/io.netty/netty-codec-haproxy" + }, + "version": { + "uuid": "d2aeff2e-cd45-5cd5-bc74-d51493da6f5d", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af60960-e683-45e0-8b17-a51483f95706", + "name": "netty-codec-http", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "82ba94c0-71df-584b-86e7-2139624ad86a", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "045c6e1d-aa20-5e7c-94f1-21b64e3eca51", + "purl": "pkg:maven/io.netty/netty-codec-http" + }, + "version": { + "uuid": "d54f383c-04df-52c4-bae2-7e9c3cdf9a02", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-394e6200-3abb-41ab-837e-71aee668281c", + "name": "netty-codec-socks", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5e694d2e-c97c-5ae1-adbe-0ecf77a50c7b", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1848b072-9a0d-556e-940d-0b438ab5288f", + "purl": "pkg:maven/io.netty/netty-codec-socks" + }, + "version": { + "uuid": "5944b774-9704-5c48-8276-b3be3378b68e", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a61c38d0-4f04-440b-a9b4-becbeee59bc6", + "name": "netty-resolver-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ff246236-cca3-53c8-a9c9-1a2311dd64ab", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f8db150-de5b-5f90-b46b-6055cd758488", + "purl": "pkg:maven/io.netty/netty-resolver-dns" + }, + "version": { + "uuid": "ffac9578-0a40-5f50-9892-050cd80eeda9", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b794473-ef8a-4dc3-83c9-994ce7e416c8", + "name": "netty-resolver", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ca80ea97-d265-54c2-a263-c7069934ac5d", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "43af72a1-d9a4-5b51-bf1d-379c4f361446", + "purl": "pkg:maven/io.netty/netty-resolver" + }, + "version": { + "uuid": "968f513e-9435-5b1b-9174-e53eab15fc83", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af7b0e01-08b1-47d4-9aaa-ad27e63980ae", + "name": "netty-transport-classes-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "0ad86e44-2348-5e16-8fe3-6b2c6e7e0515", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53935580-8eb3-5cca-8042-b56f418b9668", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll" + }, + "version": { + "uuid": "0185e2fe-f7a4-5835-b0a7-8a33b646f7ac", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7aaacfb5-63e7-4237-8724-9885b01d69d9", + "name": "netty-transport-native-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "9ea25261-4666-5890-ba6e-276e8bc8b44e", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cbfb1fc-f145-5877-8d43-a7744abf2614", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll" + }, + "version": { + "uuid": "bd29dfa9-131f-5dcf-9e62-00d7bb0ff1f2", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "classifier": "linux-x86_64", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-469b2356-b0a4-44fc-98f5-5bf4985b02f7", + "name": "netty-transport-native-unix-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "496d5d3d-dbcb-5267-b6e6-b487f13b1ec1", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e26ff54-86e1-5865-9120-caf4d8c675b6", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common" + }, + "version": { + "uuid": "3ac567ce-d4d2-5a8e-9920-72ae60eee50b", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51845f32-4339-46c6-80de-e862943c0c2b", + "name": "netty-buffer", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "c1344fcb-371e-568b-b2fd-e45dcd1dfa4f", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61d29143-3655-57fd-b805-dbb97ed8a131", + "purl": "pkg:maven/io.netty/netty-buffer" + }, + "version": { + "uuid": "7333a493-f187-51bf-a9e7-4aaee8d4197d", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9dc13228-fe20-4490-adb5-90be2bb678de", + "name": "netty-transport", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "4b4743bf-08af-5e85-ba49-089e61524d69", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbb1cee-48a4-51c3-b0b8-bde2f82066ff", + "purl": "pkg:maven/io.netty/netty-transport" + }, + "version": { + "uuid": "0a7f07a9-1246-5f82-b2a5-9db1253cae88", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68ae0f2a-018b-4eb4-86da-43832b8d89e9", + "name": "netty-codec", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "adfeb0c7-f3f8-5785-b3c5-a4baf26c16f0", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "70bb8124-bc03-5917-ab6b-5112011967e7", + "purl": "pkg:maven/io.netty/netty-codec" + }, + "version": { + "uuid": "7e3d3cb5-fcbd-510b-9c67-6145b6af291d", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6a140c57-6426-4102-abfd-2ad47a45be45", + "name": "netty-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "71811857-77f1-5c71-818f-39932ff0bb7e", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "870186f2-68c0-54d4-b632-cb524ed17e79", + "purl": "pkg:maven/io.netty/netty-common" + }, + "version": { + "uuid": "2bde327b-738c-593b-a11d-7e5261be5900", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4249d006-888b-4ecf-aefd-bbc1aa25bb4e", + "name": "netty-handler-proxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "623955d6-e466-5312-9ac7-54acab01333e", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b056e5c5-162b-59b4-85c7-2a2f4055db3b", + "purl": "pkg:maven/io.netty/netty-handler-proxy" + }, + "version": { + "uuid": "b20cfab0-0860-5b79-8785-2f81bf383389", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-602547e7-1ca6-4ccd-aa95-19219c7593a6", + "name": "netty-codec-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "fac6032a-a3fd-56f3-922e-65a6bda2358d", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ccec22eb-096f-5a75-b202-76243cef0248", + "purl": "pkg:maven/io.netty/netty-codec-dns" + }, + "version": { + "uuid": "c2c003af-376a-554f-b25b-40daaed23825", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-430d898a-9b8b-456c-9151-e2b4e0783056", + "name": "netty-handler", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "48f562d1-fdfd-59b7-bd23-861503f31e5d", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3f4c0dd-ef9c-54fe-b6dd-b37380718a57", + "purl": "pkg:maven/io.netty/netty-handler" + }, + "version": { + "uuid": "a6382423-1382-51d7-bcd6-cfb2eab7d764", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21db41a7-5d44-46b7-87fc-95f3417a784a", + "name": "netty-codec-http2", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "b5d0e298-efc7-55b5-a7dd-b78996689fb7", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef580dbe-9fdf-522f-93a7-aef4219fb71a", + "purl": "pkg:maven/io.netty/netty-codec-http2" + }, + "version": { + "uuid": "9accb509-993f-5f93-a36c-cf507582f098", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-4853", + "title": "Quarkus: http security policy bypass", + "description": "A flaw was found in Quarkus where HTTP security policies are not sanitizing certain character permutations correctly when accepting requests, resulting in incorrect evaluation of permissions. This issue could allow an attacker to bypass the security policy altogether, resulting in unauthorized endpoint access and possibly a denial of service.", + "reserved": "2023-09-08T16:10:38.379Z", + "published": "2023-09-20T09:47:32.15Z", + "modified": "2024-08-20T15:26:14.044Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-148"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-4853", + "title": "Quarkus: http security policy bypass", + "description": "A flaw was found in Quarkus where HTTP security policies are not sanitizing certain character permutations correctly when accepting requests, resulting in incorrect evaluation of permissions. This issue could allow an attacker to bypass the security policy altogether, resulting in unauthorized endpoint access and possibly a denial of service.", + "reserved": "2023-09-08T16:10:38.379Z", + "published": "2023-09-20T09:47:32.15Z", + "modified": "2024-08-20T15:26:14.044Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-148"], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:281b25d0-17d8-4d02-bb4e-b3f7e0ddb012", + "identifier": "https://www.redhat.com/#CVE-2023-26464", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-15T00:00:00Z", + "modified": "2023-11-14T17:46:50Z", + "withdrawn": null, + "title": "log4j1-chainsaw, log4j1-socketappender: DoS via hashmap logging", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-26464", + "title": "Apache Log4j 1.x (EOL) allows DoS in Chainsaw and SocketAppender", + "description": "** UNSUPPORTED WHEN ASSIGNED **\n\nWhen using the Chainsaw or SocketAppender components with Log4j 1.x on JRE less than 1.7, an attacker that manages to cause a logging entry involving a specially-crafted (ie, deeply nested) \nhashmap or hashtable (depending on which logging component is in use) to be processed could exhaust the available memory in the virtual machine and achieve Denial of Service when the object is deserialized.\n\nThis issue affects Apache Log4j before 2. Affected users are recommended to update to Log4j 2.x.\n\nNOTE: This vulnerability only affects products that are no longer supported by the maintainer.\n\n\n\n\n", + "reserved": "2023-02-23T16:15:06.902Z", + "published": "2023-03-10T13:38:16.19Z", + "modified": "2024-08-02T11:53:52.958Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-502"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:3:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.apache.logging.log4j/log4j-api", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:03da38c7-2b9f-475c-9057-e9ff74202505", + "identifier": "https://www.redhat.com/#CVE-2023-2454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:02:22Z", + "withdrawn": null, + "title": "postgresql: schema_element defeats protective search_path changes", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2454", + "title": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "description": "schema_element defeats protective search_path changes; It was found that certain database calls in PostgreSQL could permit an authed attacker with elevated database-level privileges to execute arbitrary code.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.641Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.postgresql/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:4d24d8d5-97e0-4224-a3a4-fadbfdf7893e", + "identifier": "https://www.redhat.com/#CVE-2023-2455", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-05-11T00:00:00Z", + "modified": "2023-11-14T21:03:41Z", + "withdrawn": null, + "title": "postgresql: row security policies disregard user ID changes after inlining.", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2455", + "title": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "description": "Row security policies disregard user ID changes after inlining; PostgreSQL could permit incorrect policies to be applied in certain cases where role-specific policies are used and a given query is planned under one role and then executed under other roles. This scenario can happen under security definer functions or when a common user and query is planned initially and then re-used across multiple SET ROLEs. Applying an incorrect policy may permit a user to complete otherwise-forbidden reads and modifications. This affects only databases that have used CREATE POLICY to define a row security policy.", + "reserved": "2023-05-01T00:00:00Z", + "published": "2023-06-09T00:00:00Z", + "modified": "2024-08-02T06:26:08.921Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-20"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.postgresql/postgresql", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:5b98f727-1145-4eca-8176-d3f2a32e0fce", + "identifier": "https://www.redhat.com/#CVE-2023-44487", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-10-10T00:00:00Z", + "modified": "2023-11-21T11:59:10Z", + "withdrawn": null, + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-44487", + "title": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "description": "The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.", + "reserved": "2023-09-29T00:00:00Z", + "published": "2023-10-10T00:00:00Z", + "modified": "2024-08-19T07:48:04.546Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": [], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "io.quarkus/quarkus-undertow", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:c1f1e6fc-e1c1-495d-952a-9e323d4f62a4", + "identifier": "https://www.redhat.com/#CVE-2023-34454", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-15T00:00:00Z", + "modified": "2023-11-14T21:46:49Z", + "withdrawn": null, + "title": "snappy-java: Integer overflow in compress leads to DoS", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-34454", + "title": "snappy-java's Integer Overflow vulnerability in compress leads to DoS", + "description": "snappy-java is a fast compressor/decompressor for Java. Due to unchecked multiplications, an integer overflow may occur in versions prior to 1.1.10.1, causing an unrecoverable fatal error.\n\nThe function `compress(char[] input)` in the file `Snappy.java` receives an array of characters and compresses it. It does so by multiplying the length by 2 and passing it to the rawCompress` function.\n\nSince the length is not tested, the multiplication by two can cause an integer overflow and become negative. The rawCompress function then uses the received length and passes it to the natively compiled maxCompressedLength function, using the returned value to allocate a byte array.\n\nSince the maxCompressedLength function treats the length as an unsigned integer, it doesn’t care that it is negative, and it returns a valid value, which is casted to a signed integer by the Java engine. If the result is negative, a `java.lang.NegativeArraySizeException` exception will be raised while trying to allocate the array `buf`. On the other side, if the result is positive, the `buf` array will successfully be allocated, but its size might be too small to use for the compression, causing a fatal Access Violation error.\n\nThe same issue exists also when using the `compress` functions that receive double, float, int, long and short, each using a different multiplier that may cause the same issue. The issue most likely won’t occur when using a byte array, since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.\n\nVersion 1.1.10.1 contains a patch for this issue.", + "reserved": "2023-06-06T16:16:53.559Z", + "published": "2023-06-15T16:27:45.467Z", + "modified": "2024-08-02T16:10:07.3Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-190"], + "average_severity": "medium", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "org.xerial.snappy/snappy-java", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:0cc8d5c1-9547-4242-8ac1-5023f7dbad67", + "identifier": "https://www.redhat.com/#CVE-2023-1370", + "issuer": { + "id": "6ae37d7b-b148-44ca-a5c7-7c6b69371f51", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-22T00:00:00Z", + "modified": "2023-07-05T21:15:09Z", + "withdrawn": null, + "title": "json-smart: Uncontrolled Resource Consumption vulnerability in json-smart (Resource Exhaustion)", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1370", + "title": "Stack exhaustion in json-smart leads to denial of service when parsing malformed JSON", + "description": "[Json-smart](https://netplex.github.io/json-smart/) is a performance focused, JSON processor lib.\n\nWhen reaching a ‘[‘ or ‘{‘ character in the JSON input, the code parses an array or an object respectively.\n\nIt was discovered that the code does not have any limit to the nesting of such arrays or objects. Since the parsing of nested arrays and objects is done recursively, nesting too many of them can cause a stack exhaustion (stack overflow) and crash the software.\n\n", + "reserved": "2023-03-13T08:35:00.695Z", + "published": "2023-03-13T09:04:36.365Z", + "modified": "2024-08-02T05:49:10.25Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-674"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "json-smart", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:241f1b7f-76c8-4968-90bc-cfe22a00bf54", + "identifier": "https://www.redhat.com/#CVE-2023-3223", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-08-07T00:00:00Z", + "modified": "2023-11-15T17:07:57Z", + "withdrawn": null, + "title": "undertow: OutOfMemoryError due to @MultipartConfig handling", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-3223", + "title": "Undertow: outofmemoryerror due to @multipartconfig handling", + "description": "A flaw was found in undertow. Servlets annotated with @MultipartConfig may cause an OutOfMemoryError due to large multipart content. This may allow unauthorized users to cause remote Denial of Service (DoS) attack. If the server uses fileSizeThreshold to limit the file size, it's possible to bypass the limit by setting the file name in the request to null.", + "reserved": "2023-06-13T15:50:40.922Z", + "published": "2023-09-27T13:54:44.682Z", + "modified": "2024-08-02T06:48:07.955Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-789"], + "average_severity": "high", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "io.quarkus/quarkus-undertow", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + }, + { + "uuid": "urn:uuid:db95ca6a-c748-4930-ac97-c7ed66fc67a2", + "identifier": "https://www.redhat.com/#CVE-2023-2974", + "issuer": { + "id": "5e9c87c9-2e6b-453b-8b27-6c80dfc7d7ff", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-06-29T00:00:00Z", + "modified": "2023-11-08T16:56:43Z", + "withdrawn": null, + "title": "quarkus-core: TLS protocol configured with quarkus.http.ssl.protocols is not enforced, client can enforce weaker supported TLS protocol", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-2974", + "title": "Quarkus-core: tls protocol configured with quarkus.http.ssl.protocols is not enforced, client can enforce weaker supported tls protocol", + "description": "A vulnerability was found in quarkus-core. This vulnerability occurs because the TLS protocol configured with quarkus.http.ssl.protocols is not enforced, and the client can force the selection of the weaker supported TLS protocol.", + "reserved": "2023-05-30T10:06:53.993Z", + "published": "2023-07-04T13:24:29.648Z", + "modified": "2024-08-02T06:41:03.976Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-757"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-c75ad779-f881-4294-91fc-13f15fbe5937", + "name": "quarkus-smallrye-fault-tolerance-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b753449-ab99-535d-ae48-1e4652e27c9d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0053930b-fc7e-55f5-989b-9d24c42013af", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment" + }, + "version": { + "uuid": "4b69e35e-eb62-5323-9fb8-7eafc5a1e4cd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-963a5dc2-f752-4322-91aa-9202ce5b7627", + "name": "quarkus-kubernetes-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4fce46cc-d8ee-50c7-98e4-69b6f4196c9d", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "00753d70-3fe2-5037-8769-a3c88017cf2a", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client" + }, + "version": { + "uuid": "46cb9b22-db73-569b-a256-d39a586eccc3", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-993f54b3-8b9b-4241-8762-21d90148a184", + "name": "javassist", + "version": "3.29.1.GA-redhat-00001", + "purl": [ + { + "uuid": "8eab4a01-f352-5fd4-af8a-51e0bd19bc6b", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0110f774-9fda-585b-a561-423f41996863", + "purl": "pkg:maven/org.javassist/javassist" + }, + "version": { + "uuid": "584615b3-3e8a-5043-9f5f-53e90fe8631a", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001", + "version": "3.29.1.GA-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10924038-802a-4b46-bea1-ba40f8a69d68", + "name": "quarkus-reactive-pg-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9cc51d22-3ffc-5276-b66e-1264e8182dee", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0144a611-3fe3-5d49-a582-df718dac1942", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment" + }, + "version": { + "uuid": "e6ab830b-ec56-5077-a356-a758b8a1ec5c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e7196ad-c902-4129-9572-fdd7c5fd97d0", + "name": "knative-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "30a67e2a-22db-5ca5-b5ae-9ae0c928f7db", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01e8f12a-fb3b-59b5-913f-8774cf02a029", + "purl": "pkg:maven/io.fabric8/knative-client" + }, + "version": { + "uuid": "1c8b55be-5353-57a7-b199-f25092b32a4b", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b10c491-6cc7-4e34-8fda-4304354ee8be", + "name": "netty-codec-haproxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5dcb0860-e5e3-59f0-848d-996d11c20100", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01ede4e7-577b-5b8c-83c2-35e67072f081", + "purl": "pkg:maven/io.netty/netty-codec-haproxy" + }, + "version": { + "uuid": "d2aeff2e-cd45-5cd5-bc74-d51493da6f5d", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4069f58d-012b-42e6-a77e-000c62f03316", + "name": "quarkus-websockets", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "faf09dd1-b130-5628-af99-a385018a4957", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01f503a1-5e40-57f2-8a52-b67d6f404d23", + "purl": "pkg:maven/io.quarkus/quarkus-websockets" + }, + "version": { + "uuid": "6e1c6213-3a16-51f4-a1e5-7f5523cdf720", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fdeeae87-b506-4a95-acbe-ec6be10ffa59", + "name": "proton-j", + "version": "0.34.0.redhat-00001", + "purl": [ + { + "uuid": "ad0ec1a2-c97e-5d4c-b8c3-04db8f0a1325", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "01fc9c7f-22ff-5d3a-963e-648cb40f5be9", + "purl": "pkg:maven/org.apache.qpid/proton-j" + }, + "version": { + "uuid": "3866f4f9-94a7-53a5-83d9-f00431b86318", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001", + "version": "0.34.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea171641-55ac-4468-b81b-316fa79fc0de", + "name": "quarkus-openshift-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee9c4594-9b58-52da-b70a-da630780c549", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02313e6b-a3fe-5c66-94a3-0c86f7ecb3fb", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client" + }, + "version": { + "uuid": "583347d7-1842-51bf-8c28-ac834a3b75cd", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37786677-5c33-4171-9770-afb01404911c", + "name": "maven-settings", + "version": "3.8.6", + "purl": [ + { + "uuid": "35027382-d159-5ed9-8232-d05812533c00", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar", + "base": { + "uuid": "02e92bbe-b733-5d82-afd9-6b46e5042a52", + "purl": "pkg:maven/org.apache.maven/maven-settings" + }, + "version": { + "uuid": "b9d8d8a9-710f-579d-a664-213e692eb18e", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30ce168f-eb43-4b4c-9358-12dc79f90972", + "name": "quarkus-reactive-routes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "172a965e-e5ba-5e46-981d-9757b8ecc795", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "02eb391b-299f-5dfc-9c4c-298e8968529a", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment" + }, + "version": { + "uuid": "58126ec0-fbf6-5dda-b7e5-a25110e84426", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-872dff2f-d571-492f-98e5-c84121801d18", + "name": "microprofile-graphql-api", + "version": "1.1.0.redhat-00009", + "purl": [ + { + "uuid": "7892ea52-b6ab-527a-9f37-6dacb2a98f61", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "030b0644-781d-5e4f-b5e3-3f370222ae42", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api" + }, + "version": { + "uuid": "7ddb9017-58a1-5e52-b64e-b1fc3adf67a2", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009", + "version": "1.1.0.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9527721e-8d01-403d-ba2e-cd06df07405b", + "name": "wagon-file", + "version": "3.5.1", + "purl": [ + { + "uuid": "f4c22157-5059-592e-9003-5eedd66c6ab3", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "base": { + "uuid": "031cd0f8-a729-5a4f-bb47-9180fceb01d7", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file" + }, + "version": { + "uuid": "5fe6127f-522c-5ed7-aa23-1cb5eb14ba49", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4f852b8c-33b6-4b22-bdb1-fdb2114da04e", + "name": "smallrye-fault-tolerance-api", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "aa3a36e5-e96d-5633-a319-f2dd61b9546d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "03baca15-71db-57e8-90bd-f0d1a5a6cd3c", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api" + }, + "version": { + "uuid": "262e493d-3b04-5fcc-9267-b17f8854a086", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8da92c12-d66e-4fa0-9098-79afa639e77d", + "name": "vertx-grpc", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "e97b9143-e3da-5208-8769-7c1accd3b280", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04039854-d965-5519-8134-94a5cd568040", + "purl": "pkg:maven/io.vertx/vertx-grpc" + }, + "version": { + "uuid": "b8c311fe-f09e-5135-a4f5-e15f0d54b600", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efb97849-075f-4480-8d51-3cc3008c4d25", + "name": "keycloak-adapter-spi", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "4897923b-9b2d-5d20-ba08-aa7fd7eb2b7e", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "042a5277-9c75-5e9e-9115-b0fb2161e022", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi" + }, + "version": { + "uuid": "64017a2f-0c2f-5cad-98de-7d325d12be01", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c02d592-d862-467b-9c71-103132700b9b", + "name": "quarkus-openshift-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7067713-9cd8-550e-b213-781fabb2211c", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04532551-313b-559a-b97c-583ecc4698ec", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment" + }, + "version": { + "uuid": "6014ebba-8ec6-5435-9f87-8d0c72a8d211", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af60960-e683-45e0-8b17-a51483f95706", + "name": "netty-codec-http", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "82ba94c0-71df-584b-86e7-2139624ad86a", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "045c6e1d-aa20-5e7c-94f1-21b64e3eca51", + "purl": "pkg:maven/io.netty/netty-codec-http" + }, + "version": { + "uuid": "d54f383c-04df-52c4-bae2-7e9c3cdf9a02", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-933f2642-44ac-429f-83af-60d894eeb583", + "name": "smallrye-jwt-build", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "151e1faf-c77f-5e6c-9711-bedb6a09e9c1", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "04713ca3-cc33-523f-8aa4-3ceda2357ba0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build" + }, + "version": { + "uuid": "0711524b-67d7-5c17-8007-8b6752bf73fa", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4d600524-d8e5-4db7-93c1-d04fa5892800", + "name": "quarkus-http-websocket-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "d718d5c9-4f20-5db9-aa3b-66d4ba38d381", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "048d13fd-1ff3-5cd0-bb61-c77d97c88a0c", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core" + }, + "version": { + "uuid": "9f7c977c-664f-52c2-a3b6-495af8b29add", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e44cd9b-4d69-46e8-a111-0b07f9a6c017", + "name": "quarkus-hibernate-orm-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c4b6669f-4b7a-5def-b683-87c242523c82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "052dc802-11ad-51b9-aa38-58f15de32de7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment" + }, + "version": { + "uuid": "8a9ba57f-1303-56ac-a4b3-5baf4ddf5ce7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc64a9d2-8fe5-4b7e-a36e-d7032abbe0b0", + "name": "smallrye-mutiny-vertx-auth-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "61f17f2a-ceb1-5d4b-a9ed-b1f91f94ef50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05640b9e-f090-5354-8590-679dcd564253", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common" + }, + "version": { + "uuid": "a610b246-90d6-50fd-98ac-8fdf64f6534d", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb185e6c-c910-4ff4-b263-42bd43fae2e1", + "name": "quarkus-resteasy-reactive-jackson-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "52c2f192-4efa-5eb1-967c-8939b6ff9578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "056802f2-3e2c-5206-a404-b3b6cefdcba7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common" + }, + "version": { + "uuid": "dccc1534-4d79-5dd3-a7b8-0450eaf05f9f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-55baf580-b5b4-45ce-8079-b14297c817a9", + "name": "wildfly-elytron-credential", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "ef696c17-225e-51e6-98c1-b2ae430e3362", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "058d2c8e-68ab-52b5-a361-b438811648ba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential" + }, + "version": { + "uuid": "6063121e-ace2-5258-9aef-4c1f49fc3b2d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d741f3b-de3b-41c0-a09b-e778a10d50d8", + "name": "quarkus-spring-data-rest", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4de1ff-52df-5b0e-acb9-68d97df641b1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05cc8b99-1c5b-507d-bd60-c4f1ef8c0bff", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest" + }, + "version": { + "uuid": "1a08fd68-72cf-5a64-95b7-235f7f3c4200", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-930c4e5d-370b-4fb3-88c6-7a602a33af09", + "name": "quarkus-resteasy-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8116e156-f21a-5af7-80a8-e816ae881c8a", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "05d27302-4e62-5271-9422-ea5ad094f2b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson" + }, + "version": { + "uuid": "dcfde42e-704f-52e1-b668-de5457271533", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1166264f-426e-4e27-a038-d69f91473496", + "name": "grpc-netty", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "695290dd-aed0-5449-8c31-1d88e29ecdec", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "060e5905-e0d8-5d1f-ab1c-95089fb2b8c7", + "purl": "pkg:maven/io.grpc/grpc-netty" + }, + "version": { + "uuid": "1d70ee9a-2a2d-5309-9522-6099142529f3", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fbea5779-829d-423c-ad98-36d0f35bc348", + "name": "vertx-mail-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "acef6180-9eac-5fb6-9c31-f57babbe0a76", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "061d1d87-4062-5a47-96ad-dc366a5e3696", + "purl": "pkg:maven/io.vertx/vertx-mail-client" + }, + "version": { + "uuid": "46930173-480c-51e9-9d8e-22569fa62879", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86adb69e-e5a7-4030-a12e-7f98fb19da28", + "name": "micrometer-registry-prometheus", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "22b2620d-7dcb-5927-92f4-33ff20ad8f8b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "062040e4-b50f-5829-ba65-1234845b162b", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus" + }, + "version": { + "uuid": "046c6f88-5e85-59e1-9518-0631619948cb", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c371d518-85c3-4bd1-8b94-6cd9f63d38c2", + "name": "msg-simple", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "df0e5ae7-58cb-5243-894f-0aaa07876cc9", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "063397a9-c6b6-56f9-9403-dc84c13cf53e", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple" + }, + "version": { + "uuid": "ae793ce1-b9a5-5b9a-8d33-c19151b20b9d", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-caad14dc-7bb9-4ca2-bdea-5a302ee09cb6", + "name": "quarkus-datasource-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2fbe4407-ac04-5760-aa82-a4c3fea02a66", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "067ed295-e259-5cde-bab0-2be520fb9a4e", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common" + }, + "version": { + "uuid": "bb1a32ba-5bb2-5d2c-a44a-bec96cb54df0", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa2d3152-ef02-4ba9-b718-19425c2c0b9b", + "name": "openshift-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "06a8a23a-27b2-59e4-8d41-3605832e6ff1", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "06a735d2-b662-5c83-af48-178b71ad0a31", + "purl": "pkg:maven/io.fabric8/openshift-client" + }, + "version": { + "uuid": "0ecffd56-8b15-519c-8ac4-96755e0ebdfb", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7920040b-b9c7-4e26-90dd-887ac54399d7", + "name": "opentelemetry-instrumentation-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "345f8e5a-1c1f-529d-be58-6d73853e1af0", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "075f3dc5-4663-5bb3-b2e9-1883b3dde370", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations" + }, + "version": { + "uuid": "6aaf3f42-0a30-5265-ba7a-cf1e547bf516", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2fd1018-55a9-449e-8179-7c7133a73e59", + "name": "quarkus-smallrye-graphql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6d669066-1aed-5e7f-a15c-24a4f5889f9a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07b0350b-13bc-5d76-a010-d7d581558de3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment" + }, + "version": { + "uuid": "ae2df958-63ef-5dba-b320-0aab51cf2167", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a82f5ffe-f0ca-4237-820a-93ac5a0f0a9d", + "name": "wildfly-elytron-password-impl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "f8c4ae54-7132-5ea1-9357-1cd11ca45998", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07c33bf7-b5ec-5656-9243-1245b8ffa2f5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl" + }, + "version": { + "uuid": "ddb10a5a-91e1-5fa3-8280-7148675a4fc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ea069e6-c611-4be5-8df2-f7d32c91f842", + "name": "jakarta.inject-api", + "version": "1.0.0.redhat-00002", + "purl": [ + { + "uuid": "7bd424d0-947e-5fda-aa30-1f893e0caf95", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "07fbb9d3-93c4-5051-b4fe-0898d02ca498", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api" + }, + "version": { + "uuid": "1e3fdd19-e7a8-5f89-ac2c-77096b62ab44", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002", + "version": "1.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-040633a2-c94e-4d10-9e93-8a397e19b4a4", + "name": "quarkus-smallrye-metrics-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d7d7a9df-d1fe-5f23-a542-cfc65acec28a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08116430-432a-544d-ba75-e6e2af6f1dae", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi" + }, + "version": { + "uuid": "810aff8b-bcb7-5b91-8820-83805a824589", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62828af0-18d0-4ba7-ba3a-0bcae72df2e4", + "name": "smallrye-mutiny-vertx-pg-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "cbdf0d6c-4055-500d-a735-2da6cea88706", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "08324f97-ad6a-5984-b87f-823512921c5c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client" + }, + "version": { + "uuid": "6fa77008-fd0c-5579-af1a-1c6b35558fdb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4fdeba40-5662-4dbd-8918-fa889af01723", + "name": "db2", + "version": "1.17.3", + "purl": [ + { + "uuid": "54c78584-5760-552e-9aa8-191fe813811f", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "base": { + "uuid": "085c5a82-c2af-5d28-9de1-57a95aabf8b4", + "purl": "pkg:maven/org.testcontainers/db2" + }, + "version": { + "uuid": "ae5de5eb-34e2-5260-937b-c9445c905877", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-685c1648-3d74-451b-895a-adac74c448f4", + "name": "quarkus-jdbc-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ea26ece-790f-5cc3-b4ea-0ccafed9a1cf", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "09017e2e-aaeb-5a9a-8db5-ad0a8db7775c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby" + }, + "version": { + "uuid": "e5c2cd18-6b9e-5285-bc2c-f56b74d6f415", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bfd1e9f-4aad-4798-ac12-d53a28c0b86e", + "name": "maven-core", + "version": "3.8.6", + "purl": [ + { + "uuid": "706ff0c3-234a-53ea-9cf4-e02937e531d5", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar", + "base": { + "uuid": "098e9fdc-4abb-5afa-a310-948ec99c94ee", + "purl": "pkg:maven/org.apache.maven/maven-core" + }, + "version": { + "uuid": "0db8fc0b-4540-5165-8ac0-6bb3c60c0580", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff1eb66-46b1-465a-b0d9-60852d745c33", + "name": "smallrye-reactive-messaging-amqp", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "4d000f3a-7eea-55fd-8e84-c89cbe41e6ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09bb863d-d826-5fe1-8a02-f08d572d8cab", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "d4e81d1e-0cf8-552b-b111-66fbe59402d7", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b03dbf7-47e6-4a26-9d40-10f963dffa40", + "name": "quarkus-funqy-knative-events", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6676117-c46f-508b-8c2c-38c1d9eb06f5", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "09beffbc-6f1a-5c3a-908a-ab96701fa478", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events" + }, + "version": { + "uuid": "bc91be4b-3ea7-5aea-8d11-d2d088c124bf", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cecd6c10-5e51-4661-b215-e716a0fd5028", + "name": "quarkus-resteasy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d315a338-83ee-50d2-b558-666f9a873014", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0aada068-a0d8-5d14-b2a9-fac85d5b9d36", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common" + }, + "version": { + "uuid": "be0d3b4d-c77c-52c4-a81f-849249009250", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a8ceaf-102a-44f2-87ca-38c558289680", + "name": "grpc-api", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "1c6ff134-2c17-583a-9474-e7f0558f04ef", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0b2f7d6c-1cbc-51cb-94b0-6ded3345ff7f", + "purl": "pkg:maven/io.grpc/grpc-api" + }, + "version": { + "uuid": "bfebb927-f944-5e55-b299-bde927f4310c", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-beaa0bc7-60f2-4ef9-aa3a-8d4d332bc63c", + "name": "quarkus-bom-quarkus-platform-descriptor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50cbf391-7d3b-5e6e-8529-6f995b8ed895", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004?classifier=2.13.8.Final-redhat-00004&repository_url=https://maven.repository.redhat.com/ga/&type=json", + "base": { + "uuid": "0ba7b14f-83c3-5748-8b63-d8393c9c47cf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor" + }, + "version": { + "uuid": "f866e0e9-4fa5-591f-a17d-055cab03cf9f", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "classifier": "2.13.8.Final-redhat-00004", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "json" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bafe4465-ce85-49fc-b17f-6d6b2e239f9e", + "name": "reactor-core", + "version": "3.2.22.RELEASE", + "purl": [ + { + "uuid": "a938f339-7131-5419-a331-bb7697d2202e", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "base": { + "uuid": "0baf96c5-4569-579c-96ff-c1df2ade35e9", + "purl": "pkg:maven/io.projectreactor/reactor-core" + }, + "version": { + "uuid": "695f0a11-0407-5b0e-a41a-56e64158a1f3", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE", + "version": "3.2.22.RELEASE" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07a82943-c3ca-40ff-bcd8-b26b49b269c9", + "name": "quarkus-devservices-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d63b4298-8cb6-5dc0-b5f9-c65c4783e54a", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0c3d1642-f967-52c6-9563-8ae08aed1534", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment" + }, + "version": { + "uuid": "4184d1c4-d0eb-5486-ac5c-30342a302664", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f2f6c1f-cafd-413b-95f9-053f631a09cc", + "name": "smallrye-graphql-ui-graphiql", + "version": "1.7.2", + "purl": [ + { + "uuid": "0b0d0878-cf40-5516-b0e7-c80655c8c79b", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar", + "base": { + "uuid": "0c47ed37-7918-58c7-806b-128bb6002a2f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql" + }, + "version": { + "uuid": "a571d14f-549a-50d0-8e26-4cbac1e5244d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2", + "version": "1.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-890fe6a5-a463-4223-8eb2-ae0741e27b48", + "name": "quarkus-devtools-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d44d6dec-d7a1-5910-9d8d-6c9f704eb5d2", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cbb3638-6fec-54e7-85a4-7816e3477c1a", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common" + }, + "version": { + "uuid": "e906f715-8c37-570a-86e9-e4a64aeb9c44", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f9538a7-a63a-4d29-ae28-5bfc7d7478f2", + "name": "wildfly-common", + "version": "1.5.4.Final-format-001-redhat-00001", + "purl": [ + { + "uuid": "8711d315-952c-5dcd-8c17-34b554efd7e2", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0cc9fcb2-3d90-5f7c-9a41-bece26a3dabd", + "purl": "pkg:maven/org.wildfly.common/wildfly-common" + }, + "version": { + "uuid": "db2d184f-745d-5f90-8bfd-d706d3f738a0", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001", + "version": "1.5.4.Final-format-001-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4162f990-429c-49f6-9106-761c3d4b05d7", + "name": "junit-jupiter-engine", + "version": "5.9.1", + "purl": [ + { + "uuid": "6025092f-6139-5648-a099-779da361f1a4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "base": { + "uuid": "0cd7723f-7456-5385-b6e5-fbe549ef6ba4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine" + }, + "version": { + "uuid": "fb34dfff-3413-5c0c-acea-61c9eef9dcb4", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ab1f438-5af9-43a2-8187-4ff05248ea75", + "name": "graphql-java", + "version": "19.4.0.redhat-00001", + "purl": [ + { + "uuid": "b96687a0-af66-5724-bdbc-3d5d586ab108", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d058e9c-ffc1-5278-8649-0a7abfcba434", + "purl": "pkg:maven/com.graphql-java/graphql-java" + }, + "version": { + "uuid": "4132bc6f-b0f1-5079-98d2-f0d1cb7a2dee", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001", + "version": "19.4.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68080f45-3cad-401b-aa08-ce7208ea2221", + "name": "plexus-utils", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "cf39f719-aa46-5091-a1ed-d5089791c452", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4188c3-34e7-5adb-8853-feb8f26cae78", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils" + }, + "version": { + "uuid": "a817d705-07f0-5c9e-96cb-c247d3d8b55a", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d610f39-ecfb-42cc-b1bc-0c3dfb5b3383", + "name": "quarkus-micrometer-registry-prometheus", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "24893cca-eb67-555a-ad5d-8c5c8cab8d29", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0d4de25a-e9c8-50eb-ad77-87f0c9c18261", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus" + }, + "version": { + "uuid": "bc558ab7-8541-5d1f-98b4-84f4919c7532", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-472e16ba-d361-4b2a-b4d3-f01e7b6aa680", + "name": "plexus-compiler-javac", + "version": "2.7", + "purl": [ + { + "uuid": "e4f2bce5-c269-5e6a-9d07-dd9ba69884f5", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "base": { + "uuid": "0d9c6c56-7e8d-54de-9f8a-051c9a90b5ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac" + }, + "version": { + "uuid": "fc784abb-61d2-5da9-a18d-35384e61c892", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27aadd3e-de83-4cf4-a56c-26476225e75f", + "name": "smallrye-jwt-common", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "e5da7aed-ac95-5e17-b6dd-297533f98271", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0dd5dc19-4484-5d89-89b2-fe91eef22746", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common" + }, + "version": { + "uuid": "02c4be97-8b91-5212-a90d-023e538ca1df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88136270-63a0-486b-b333-4448f6b3e0ae", + "name": "quarkus-smallrye-reactive-messaging-kafka-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d62ff1c4-016f-5956-a900-c2c4a7379742", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e019485-c37f-5857-9221-646d283e9fa0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment" + }, + "version": { + "uuid": "d1e90615-bbcc-5937-ad66-dd04fed3fbd0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-798a1f7b-8448-45e0-95ab-e22434cfe547", + "name": "quarkus-smallrye-reactive-messaging-amqp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cda87336-713c-5d33-8f52-04150751e7be", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0e0c5a15-13d1-5974-9782-4c89f7ba1948", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment" + }, + "version": { + "uuid": "3321a6fc-4e78-5799-8b53-62cbb507dd24", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51015224-3658-48a0-88c0-3fbe2759040a", + "name": "mongodb-driver-sync", + "version": "4.7.2", + "purl": [ + { + "uuid": "fa57bcd7-ee96-5376-acb3-73689e43840f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "base": { + "uuid": "0f149a7b-ac40-5bda-8c11-2d43464da6f8", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync" + }, + "version": { + "uuid": "8fbd8a7c-ec41-5ac7-a05f-bf92d5d53b4a", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5cd2b4bb-adc0-41f6-a11a-b68aa5db6a29", + "name": "quarkus-devservices-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3fa188eb-4411-5abb-ad9c-fa1bc0b08b2b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f215144-4d67-5011-832b-093bf8336898", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle" + }, + "version": { + "uuid": "13e73e0a-a4e9-5ea8-942d-b4a21ea27642", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c9146da0-9a91-4258-bb90-3e666b34e65a", + "name": "quarkus-oidc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "acbfe2a7-35d6-5f3d-9967-c4d64d11f399", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f3759a0-76d0-5dd9-ab4b-6e42209b1afe", + "purl": "pkg:maven/io.quarkus/quarkus-oidc" + }, + "version": { + "uuid": "e9128e2d-89f4-5df7-8ec2-0c4e8ce3a1d3", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e7af422-d69c-4589-b530-49a3035246ac", + "name": "quarkus-kafka-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "126be05f-6cdb-53cb-9188-2fab6cc5499f", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f4b3a06-497a-5721-b378-43fe8e916630", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment" + }, + "version": { + "uuid": "bb3ccbdb-bbf0-5300-84ea-f9e899524323", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c88b3e7-e466-413c-9923-e5b0cf3b9f2e", + "name": "qute-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "67cdaca7-1133-5cc5-af6f-597b1e2460fd", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "0f57a6b2-fbef-5521-8d8b-d64230e75c09", + "purl": "pkg:maven/io.quarkus.qute/qute-core" + }, + "version": { + "uuid": "7321b3ab-98b4-5e25-8f1d-a0f0df9849d9", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b34ed58-9ada-4f66-81f3-e9f77e832747", + "name": "junit-platform-engine", + "version": "1.9.1", + "purl": [ + { + "uuid": "d931f10d-4b9e-5a79-92d9-8442e187ccdb", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "base": { + "uuid": "0fe1dc2c-1bc5-5d33-8fd8-959fdbaaff80", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine" + }, + "version": { + "uuid": "41b00f22-a69d-5a35-8570-a81711ac1a64", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd2a275f-283f-416b-a4f8-9f057939a51a", + "name": "maven-settings-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "88e014a4-2d41-59eb-84fd-d770b0f14e08", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar", + "base": { + "uuid": "102a1b50-6b3d-5ce4-b706-f833f90ac1f1", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder" + }, + "version": { + "uuid": "ad48b9b4-0429-5fec-b4d1-ddd23a930ef9", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0689851-37cc-404c-bd26-327853190726", + "name": "quarkus-resteasy-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5166c1a2-c2b1-5b8e-a687-8d50bfcd174c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "10c95e5b-29bb-5165-8a1c-a3dca9c79578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common" + }, + "version": { + "uuid": "9631e555-61ea-5396-92e8-2dd43272a413", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-25ad8e4d-7ce5-46bf-b7cc-5b65086c5f41", + "name": "quarkus-hal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b362b10-fe81-5909-a1ea-b51e52ef11d1", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1116d663-dff4-5fe2-ae14-ea020b725970", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment" + }, + "version": { + "uuid": "24c66fb6-e441-50d8-bab8-cc8f422f7305", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1eb5d62-38cb-48cc-9dd9-4aca1d2e21cf", + "name": "quarkus-mongodb-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "93ba4c2b-0dda-5870-a029-7187f7a4d253", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1160cff9-6b7a-521c-ba4d-c45c0225c0b0", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client" + }, + "version": { + "uuid": "86d453aa-4d73-5c0e-b4a6-8b3b4be9a154", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4ddedcfd-b14f-4a71-9437-d73e6e8e4376", + "name": "smallrye-config-common", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "0a83d3d6-4155-5ba0-b625-1a3c4be0c909", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "11b74cae-4773-52ac-b3f2-653cbb8e67a7", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common" + }, + "version": { + "uuid": "5959d9b7-cde2-5128-8fa6-a0fa297e8c74", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd729ee2-1b57-4c1b-9fb2-e7237926af26", + "name": "openshift-model-operatorhub", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "b67cdf85-683c-562e-b490-fe0e434cac74", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1233808e-c429-5928-bc50-ccb64aab25af", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub" + }, + "version": { + "uuid": "74c83a74-edbb-5bea-a1c1-dd13320922a0", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2ef4669b-667a-49b2-ba30-a9ad9e6787c3", + "name": "quarkus-quartz-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "457a8985-cb9b-59ea-b19f-880f103fc0ec", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1291070b-4ea5-5dea-9d7c-98c37774284b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment" + }, + "version": { + "uuid": "003b9e3f-d0f9-5c52-a21f-ad7a4da02699", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc331489-3ef0-45d4-90a9-108ab661e9a5", + "name": "vertx-proton", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "95b1a4b4-777e-5e66-823c-42be9138fa08", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12aacb26-5ae9-5497-9509-bd08af878328", + "purl": "pkg:maven/io.vertx/vertx-proton" + }, + "version": { + "uuid": "0fc65672-1c01-54f9-aa46-a97f6a1530eb", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303386da-d3d3-42c9-ad4e-dcaa89424c60", + "name": "wildfly-elytron-sasl-gs2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "3db0ed57-9454-5edf-923c-4c2fdd1f7454", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "12b94967-871a-5f50-bb18-8d03043c479c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2" + }, + "version": { + "uuid": "8d60a0d9-5ebc-5b5f-a66b-55bf7f06a5a1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a5f9b85e-c0bd-47fd-a281-82938aa81319", + "name": "microprofile-reactive-streams-operators-api", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "84fe1dae-1683-53c9-8cfc-ea2e58248d2e", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13023c10-f8ee-5a1f-a6b5-d4083a14d6d2", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api" + }, + "version": { + "uuid": "99e70f2e-735f-51b8-8f16-4753460c0700", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e181d5-3aad-4491-a629-b05326a56316", + "name": "quarkus-smallrye-openapi-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a4344ad8-56f1-575d-ae68-ee37d6cf23f0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13aa85ea-3c30-5a02-8aa7-d165775c6ab0", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi" + }, + "version": { + "uuid": "f765c3d8-15ce-5d20-bce4-12e46865e2d5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f95c789f-1905-43b6-8b69-8a7a3669b8ae", + "name": "quarkus-devservices-db2", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "db82485d-a60a-5e54-bb11-74a4e8c01227", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13b6b528-37ac-5ce6-8aa3-76b1a7819de1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2" + }, + "version": { + "uuid": "5f8cd5a5-c806-55b1-acf9-402bad08d3df", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-390932e6-2282-4c02-8ce7-d88b4326098d", + "name": "jakarta.interceptor-api", + "version": "1.2.5.redhat-00003", + "purl": [ + { + "uuid": "156bedf2-0d50-54f7-96e2-63a336c685e1", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13c56c85-4dc1-51c3-8176-1ab340175420", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api" + }, + "version": { + "uuid": "0f7c0f34-20ba-5e32-a419-206e72df1e12", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003", + "version": "1.2.5.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cff78c27-8aa6-42fa-9f55-6725eedcfdea", + "name": "jboss-logmanager-embedded", + "version": "1.0.10.redhat-00001", + "purl": [ + { + "uuid": "556d6865-95f9-5232-ba6d-e1e5551a2839", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "13e3c3dd-0af2-5485-b44e-ca2e5826eb86", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded" + }, + "version": { + "uuid": "387403bc-ee02-5cb6-808a-cffe84ba37db", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001", + "version": "1.0.10.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d689b4-4399-4ce5-8018-90469033bdd7", + "name": "byte-buddy", + "version": "1.12.18.redhat-00003", + "purl": [ + { + "uuid": "21d1e0f2-868c-5f11-ab8a-9d3589a13054", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1415c495-06e4-5f2b-a620-c537b4ea16d7", + "purl": "pkg:maven/net.bytebuddy/byte-buddy" + }, + "version": { + "uuid": "5356c1d2-a16f-5019-8bf2-34118cef83a0", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003", + "version": "1.12.18.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0847b30f-f479-45a2-befd-b500606d0a21", + "name": "quarkus-bootstrap-runner", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d13c7ee0-65dc-5fe6-8792-0af78121ee79", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1474df3b-f69c-5cb2-a912-7c1335c3f8fe", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner" + }, + "version": { + "uuid": "9b7a31ef-3c5e-54d6-ac78-94d5e8f2d9d8", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-448c47c0-380c-45df-841c-c9e5cea158e7", + "name": "infinispan-client-hotrod", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f6a08b35-a8fc-5287-9d92-9f1e19fed6dd", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14adc1cb-7b4d-598d-a5e0-b8a2a847c722", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod" + }, + "version": { + "uuid": "fbb8c0d9-fbc4-54ff-bd6a-20a811895d7c", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15e596cf-b146-4f8e-9957-9be25e5fa7cc", + "name": "antlr4-runtime", + "version": "4.9.2.redhat-00003", + "purl": [ + { + "uuid": "0aafdb41-00a9-502c-a2e5-531d5aa85582", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14c791c8-12aa-54f9-be1a-8e03e3e9a540", + "purl": "pkg:maven/org.antlr/antlr4-runtime" + }, + "version": { + "uuid": "2de0a9ba-b7d5-50f1-a5de-19d0296b234f", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003", + "version": "4.9.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c858cf7-186c-4462-85a4-3fa93bd2cfe1", + "name": "microprofile-health-api", + "version": "3.1.0.redhat-00002", + "purl": [ + { + "uuid": "7cf025c8-3c14-59fe-9f1b-c007a348da61", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "14f13a6e-7a9c-5718-9192-1ffc57d13698", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api" + }, + "version": { + "uuid": "934ecb84-d369-5938-ae8c-e6c82a3e6282", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002", + "version": "3.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30467266-3cba-4cde-985c-402b5fc1717a", + "name": "ojdbc11", + "version": "21.5.0.0", + "purl": [ + { + "uuid": "5ac7e03e-20c6-5566-806d-bb416b06c8a3", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "base": { + "uuid": "1560ce73-75ff-50cf-a44a-f4ce5229299f", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11" + }, + "version": { + "uuid": "570d3578-f423-50a9-8f9f-1c8316944479", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0", + "version": "21.5.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40ff2b19-5336-47b9-8be6-874cbb33f868", + "name": "quarkus-bootstrap-app-model", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50668bbc-169b-528b-a3a0-a39e94c86e93", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "15f803ab-ea0c-5f5b-9d7d-a6b8c7b2e373", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model" + }, + "version": { + "uuid": "7d204113-798a-538e-88d4-9fb77d3a5462", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44db22f7-4bea-4ebd-bad2-aeadc182c4a3", + "name": "quarkus-oidc-client-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad57b00-7f93-5039-bc04-21e9340b26fc", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1665dfb5-4082-5ac9-9b9a-385fd48966b0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment" + }, + "version": { + "uuid": "1619ab32-934e-5441-8f61-62af1fddcd33", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0777bb4-ea20-412f-8e8d-be7cd6502a23", + "name": "quarkus-vertx-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca4b353-48e7-5133-89ce-05253f3bd43b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16ba7b38-569a-5d7b-8432-d23400b4dfd2", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment" + }, + "version": { + "uuid": "81110a25-6497-5c48-aed2-5211ae522ea9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1e4344ce-8f61-4e85-a4ac-cbc383fe414c", + "name": "quarkus-jdbc-oracle", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16b126be-46f0-5cc9-b3f3-fddd32d6fd44", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "16c681da-2698-5821-9fd8-e51e211bacec", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle" + }, + "version": { + "uuid": "7b58af65-6264-5f57-bb1d-a453db39b16e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-069b7aa8-e5ff-48ca-877b-b5b3f9c94e1b", + "name": "commons-io", + "version": "2.11.0.redhat-00001", + "purl": [ + { + "uuid": "c605e4a9-75a2-5b1b-ae55-77ac42cb5821", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "17cc5093-d708-58e1-99d6-016bdde6e80b", + "purl": "pkg:maven/commons-io/commons-io" + }, + "version": { + "uuid": "5a022aa9-1493-5f2c-a975-53e8014abee1", + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001", + "version": "2.11.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-394e6200-3abb-41ab-837e-71aee668281c", + "name": "netty-codec-socks", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "5e694d2e-c97c-5ae1-adbe-0ecf77a50c7b", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1848b072-9a0d-556e-940d-0b438ab5288f", + "purl": "pkg:maven/io.netty/netty-codec-socks" + }, + "version": { + "uuid": "5944b774-9704-5c48-8276-b3be3378b68e", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fea042f-0b52-4848-b1aa-cf5912bb8b1c", + "name": "quarkus-vertx-http-dev-console-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36172ba0-f9b1-5fca-8d0f-d63ee435eaaf", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "184953ef-e38b-58e8-9704-49b3ece829ba", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi" + }, + "version": { + "uuid": "5b678f67-8cb3-5376-a49a-e7cb53e5eb73", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30f08c83-3604-49b2-aa9f-df296bea3d89", + "name": "quarkus-spring-beans-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7c0dee82-2e89-5b2b-96a5-19df989eda7d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1861925f-eed5-5a9b-a5d7-20afb87f093c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api" + }, + "version": { + "uuid": "05110368-6ab2-5a44-8bdd-7300a5819868", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc8d4ac-b9ef-451b-be54-8dfc31702379", + "name": "kubernetes-model-batch", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "14610d4a-2b2a-5f87-ae3b-19648f26fb07", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1865d8c7-1eff-54b1-b10d-6013a67e0eeb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch" + }, + "version": { + "uuid": "2ab666e9-5594-5012-8209-4d4083991226", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0400ac2-fc96-462a-9d0a-955f391e234f", + "name": "quarkus-resteasy", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3be65ade-f215-52b5-a273-515cac52e577", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "187f3361-720d-51ed-993c-b4c00e35852e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy" + }, + "version": { + "uuid": "bbbf817b-3732-5fe7-b5a1-bf3685d072c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-488833fa-2eb5-462f-9390-1a50042f479b", + "name": "quarkus-smallrye-context-propagation-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15ac265a-140b-591c-88d8-bc24f43e5147", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18853b4f-555c-53ec-b794-5edbadc55d02", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment" + }, + "version": { + "uuid": "3b027b54-5d45-589b-8afd-f914da1a2f04", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-067b3351-8a08-4d82-9786-00e148581811", + "name": "smallrye-context-propagation-storage", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "42de379e-d9a1-5c27-ba93-8961c336e715", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "18d68c3d-b5ec-5d64-87a7-1a0a32debd38", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage" + }, + "version": { + "uuid": "2fb2084d-400a-5873-9bd7-5c4da3faed35", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85dbdfbc-56da-4359-996c-ad639b0ccc2c", + "name": "quarkus-builder", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "02df10a9-8be4-5b82-bcb8-50bed2e763ba", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1916fc34-85b7-5f63-ab90-6ecec8b1ce1a", + "purl": "pkg:maven/io.quarkus/quarkus-builder" + }, + "version": { + "uuid": "36b4ea26-2f55-51b2-ac54-f39d16a45853", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-754f36a8-c95f-4dff-8216-991d5086918f", + "name": "hibernate-search-engine", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "0c1de18f-5f00-5254-b5b2-c6f38386498d", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "195be148-110b-53c9-9770-db505d39e53a", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine" + }, + "version": { + "uuid": "21b4b06b-2172-5f28-b3e5-fc1560391966", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c5b810f3-0bb0-43e8-bd99-b647784f3a7b", + "name": "quarkus-grpc-protoc-plugin", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "9c9add29-a96e-59b9-a13f-a8a415284d96", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar", + "base": { + "uuid": "1970f11a-9e50-5d53-a116-cde6e9858b6e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin" + }, + "version": { + "uuid": "1470d75a-b5ec-57ea-83c2-b95823160925", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "classifier": "shaded", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-137bd18e-d6af-4a5e-9af1-35774f61008c", + "name": "perfmark-api", + "version": "0.25.0", + "purl": [ + { + "uuid": "fa5a5101-53d8-5beb-863b-362b861d8322", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "base": { + "uuid": "197ecad0-4c80-5c18-8fbc-1323482664ad", + "purl": "pkg:maven/io.perfmark/perfmark-api" + }, + "version": { + "uuid": "751ba866-55df-590c-9719-4a036ef2b9e9", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0", + "version": "0.25.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d7dcc8f-7224-4853-9f23-396a80a00d72", + "name": "vertx-mssql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "61728e2c-4eac-5c83-8ee5-3d35a19255fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19adad77-8d76-53ca-971b-49bffa16a62c", + "purl": "pkg:maven/io.vertx/vertx-mssql-client" + }, + "version": { + "uuid": "109b34ad-2ba4-551d-803c-bfe3b290f3fa", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-191f5196-bdee-402b-bdea-112b244f42cb", + "name": "httpasyncclient", + "version": "4.1.5.redhat-00001", + "purl": [ + { + "uuid": "d9672b67-e1ba-5746-8e76-8d250bd0230f", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19c6aff6-e377-59fa-9b5e-ca8223a56b93", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient" + }, + "version": { + "uuid": "3adfc453-9326-5470-b4b5-165d18dfac55", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001", + "version": "4.1.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b46ddd9-d99a-4c66-9523-289f6026b66e", + "name": "quarkus-jdbc-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f36b5f92-114a-5218-8f0a-8559b31257fd", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "19d02fa0-fde1-5743-b375-8a34ccc2c3b7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb" + }, + "version": { + "uuid": "6732fc94-5ce4-5eed-a508-7dc960a0ba82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78538bce-8a1b-44cb-8627-d782901c7da0", + "name": "kafka-clients", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "965ec961-c9f3-52a7-aab8-1a4fe91941b9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1a220d87-3e86-55dd-a0a5-a48be707cda9", + "purl": "pkg:maven/org.apache.kafka/kafka-clients" + }, + "version": { + "uuid": "a4c2e398-fd3f-512d-b671-1fcfa06eb0a5", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-570f27f1-a31e-41f8-a6ba-8eedaefb9858", + "name": "quarkus-avro-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "43490349-7757-53bb-a03e-de54514b2e90", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1abdcfc6-1537-538f-8f87-72691b7158cf", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment" + }, + "version": { + "uuid": "84a51b5c-d691-5f4e-92d8-cb54350f66f2", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc0eeda4-74cc-405d-9ca9-655595411b22", + "name": "quarkus-jdbc-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ab7e2cc6-6aff-5119-829e-8c32475d80d3", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ad66f4e-408a-5350-b9e6-653dd071e9d6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql" + }, + "version": { + "uuid": "fa419877-adb4-5ff8-9687-e8e5bf6c2ef9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b13915d1-2fde-411a-8636-4e90775f43cd", + "name": "openshift-model-machineconfig", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ea516751-0168-55c3-82a7-e70da31054ff", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b3d21eb-ca82-5e0d-852b-fda9f152c3b2", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig" + }, + "version": { + "uuid": "e7e0d682-fdc6-5f7c-94a7-43ab3c503da7", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-72cb1e78-b483-4f1a-81ce-6d91cc83f862", + "name": "grpc-context", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "2084c34f-97bc-5e2f-bb76-29d679a15080", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1b4627bb-a20e-5133-a681-760780f5eb07", + "purl": "pkg:maven/io.grpc/grpc-context" + }, + "version": { + "uuid": "31470f4b-aaac-5d23-a53b-e57a8b755429", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2209db79-4483-43f5-885c-60c286409a7b", + "name": "quarkus-rest-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64a7aa8f-2aa4-5056-b79b-40e1eea2c42b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1bfe22cb-466d-5361-90be-c32dcf46b1a0", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client" + }, + "version": { + "uuid": "eea24528-6d2e-5210-a98a-5971811cceab", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a46eaf1-30da-4472-a0b5-36964582cec6", + "name": "quarkus-devservices-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f723d346-6d21-53e5-8d7f-1f9e50d3ec44", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1c3f3382-5e3c-51dc-ae00-785846666f54", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common" + }, + "version": { + "uuid": "9510fcdc-5d00-5dc5-857e-fdde705acd89", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bf681a3-8f63-4b75-af82-77879d45cbdd", + "name": "hibernate-search-mapper-pojo-base", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "2b2b6656-b719-513d-8d82-bffc02d49085", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1ce21103-c51a-52bd-8cd1-630ee7244fbf", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base" + }, + "version": { + "uuid": "aebc42a7-9035-571f-91bb-86bacca4a177", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-524edc49-cc43-43a0-aad9-85e565f0c57f", + "name": "smallrye-graphql", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "9294e070-838b-54a5-b54d-feb17647431d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1d46fb99-eb39-5368-8f6c-3fd321015d88", + "purl": "pkg:maven/io.smallrye/smallrye-graphql" + }, + "version": { + "uuid": "e85b7d47-9085-5716-b77f-694009e8be42", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65e23ffc-c14d-46df-a05d-933f502d25e3", + "name": "wildfly-elytron-asn1", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2dcb6acf-2eb3-5dcb-b00d-eebaee0a27ed", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1db1d5ea-1e03-546c-840a-2e8608ffb1ca", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1" + }, + "version": { + "uuid": "403bbbac-d3da-5a30-b4d2-29a88fb67c65", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1330df4-c726-44d9-9178-79a6ef546808", + "name": "quarkus-kubernetes-client-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2517fb14-202d-5941-ad18-e07db6fe5f04", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1dc1e346-9422-5706-8800-7cde9bff5c30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi" + }, + "version": { + "uuid": "31a1043e-dd45-5cd8-be56-489539b49e30", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad9c140b-91be-4b53-aacc-f189e4a794ba", + "name": "smallrye-context-propagation-api", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "a1c4bbf4-7fda-5913-a9b3-b337e35df625", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1e3b4451-b19b-57e7-9689-093a25f4de42", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api" + }, + "version": { + "uuid": "c61b0491-bb72-5fc7-a38b-f460cb1a08d0", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-906cddc3-d096-478c-92b3-5bc97562d28d", + "name": "smallrye-common-version", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f0a27c65-963c-5158-ba4c-4a90deb0735f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eb6849a-8978-5041-8d84-8767af14020d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version" + }, + "version": { + "uuid": "216e0c62-047f-5f59-b65d-bf6816c92deb", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f3065725-95d3-4026-ac8c-001c1dea4ff3", + "name": "quarkus-spring-web-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "a18d51c1-06c6-59c7-bfd6-010e544cdead", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1eef087d-d87d-5ebb-9601-e6b6a89d7f58", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api" + }, + "version": { + "uuid": "2dde0f05-de58-57d8-8d31-3b8707d62e50", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a61c38d0-4f04-440b-a9b4-becbeee59bc6", + "name": "netty-resolver-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ff246236-cca3-53c8-a9c9-1a2311dd64ab", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f8db150-de5b-5f90-b46b-6055cd758488", + "purl": "pkg:maven/io.netty/netty-resolver-dns" + }, + "version": { + "uuid": "ffac9578-0a40-5f50-9892-050cd80eeda9", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9372be64-184e-4fd2-a5b9-80310e496c4f", + "name": "quarkus-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5db35609-0222-5804-9c69-6a87b29d42d2", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1f92a80f-62ca-50cf-a859-f4813f772dce", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb" + }, + "version": { + "uuid": "b472e0a6-fc8b-5e2f-8735-00b43b748ee6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a49f2488-8e2a-4b5c-af8f-ba70eb94b6ee", + "name": "wildfly-elytron-x500-cert", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5c4c0ec3-40ff-5f9b-b399-f331aed3c568", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "1fd6da62-b8a8-51bf-85ac-b9985a9ff4ea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert" + }, + "version": { + "uuid": "596943cf-8748-5d66-9c5c-f3346f4479c9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42356885-c7d2-466c-9965-99fd66844813", + "name": "quarkus-swagger-ui", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b9f041-eb3e-514f-ba5d-f3d3c7632b0b", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2048835b-663d-5d6c-81b4-0f80447bef9d", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui" + }, + "version": { + "uuid": "86be783d-ec7b-55db-8b22-4caf074dcb10", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95f06ba8-f861-42e6-a2f6-ad7fbe8b945a", + "name": "commons-text", + "version": "1.10.0.redhat-00001", + "purl": [ + { + "uuid": "5b62aea9-351a-5ba1-b460-607506a93547", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "211e74d9-e104-5195-8fc3-7594de674eb3", + "purl": "pkg:maven/org.apache.commons/commons-text" + }, + "version": { + "uuid": "6eb554c3-e436-53ba-a564-57e1da8f41e8", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001", + "version": "1.10.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270eab7-c89f-427a-b761-d5bf5a0d4d4d", + "name": "kubernetes-model-scheduling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "686d8901-2a8a-518c-a62e-872ff2290814", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21384e8a-12e7-5faf-b654-989b20c83807", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling" + }, + "version": { + "uuid": "3e3fbf31-8280-5a96-a5ea-358c6a893d42", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6b78491-c79e-4924-b9b6-43a26bd140e1", + "name": "quarkus-security", + "version": "1.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "562074cb-6ab4-53dd-88b1-8414b7a318f9", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "217cc24c-e189-53d8-bb00-69c1da081d9a", + "purl": "pkg:maven/io.quarkus.security/quarkus-security" + }, + "version": { + "uuid": "eef20254-2157-5e54-a34b-5a1322274f81", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001", + "version": "1.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-30d9acf6-2342-44b9-a159-6f54083b5516", + "name": "quarkus-kubernetes-service-binding-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d26fc174-a72b-5984-bead-5981fbbee8d8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "218cb45a-f09c-5bfb-b66e-00a3a8fdae95", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi" + }, + "version": { + "uuid": "0d7d47de-b91f-5864-8ee1-2642593ff93e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbaa5688-f0c7-4b1b-8046-ad89f634a978", + "name": "smallrye-config-source-yaml", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "1100a38e-6345-5735-822f-c47fffa58047", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21ae3b18-b7a0-5fe5-a0a9-8f5908182f0f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml" + }, + "version": { + "uuid": "41e07da6-294d-5b02-848d-76fddef5a881", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a6bc4c4-cc0d-47cc-b5ba-f08baf61801d", + "name": "smallrye-jwt", + "version": "3.5.4.redhat-00001", + "purl": [ + { + "uuid": "0b9321a1-8490-59ab-9607-12d82afb86a0", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "21fe9a9d-a5fb-530f-b660-213774bf51df", + "purl": "pkg:maven/io.smallrye/smallrye-jwt" + }, + "version": { + "uuid": "b95f42e4-2f35-5eb0-8dd6-52dc9f35361b", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001", + "version": "3.5.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be82eb7e-1c7a-4526-9d88-8b5cc19ea137", + "name": "vertx-core", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "14c5c4d4-e5b4-5d8c-848e-f360b5affcad", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "228c4da2-cdbc-5430-8cb5-0cffb49ccf42", + "purl": "pkg:maven/io.vertx/vertx-core" + }, + "version": { + "uuid": "4c2be4ec-89e9-5dff-8d91-2da504ce2a06", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-466c1ab1-7bf1-4a11-b7c8-0d03cb34d1c5", + "name": "quarkus-undertow", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a538551-22ec-5fa5-b898-a991f552c2ee", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "22c33f8e-bd68-5cee-af99-cc09b1d811d9", + "purl": "pkg:maven/io.quarkus/quarkus-undertow" + }, + "version": { + "uuid": "722a7259-2cf9-5f77-947a-42ae541244ab", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5429d38f-6585-4874-a039-36a218a9dce6", + "name": "dekorate-core", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8d6572c4-6a1c-5f6f-8e7d-fcef410cbf99", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2390b43c-cd20-5de2-9b88-6f79803b92a1", + "purl": "pkg:maven/io.dekorate/dekorate-core" + }, + "version": { + "uuid": "cf348fb8-1523-5a10-9592-6a7c93c61531", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d2747f7b-172b-402a-84f5-ce178c42b25e", + "name": "quarkus-grpc-stubs", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a9a749f6-34e2-5453-a250-142ebc0528df", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f1434d-6fa8-5182-825d-f735df474e36", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs" + }, + "version": { + "uuid": "914298cb-edff-5299-a9e4-51d27d93092b", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86206426-cf7d-42d9-a2a9-b5a0c015fe9c", + "name": "wildfly-elytron-permission", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bc822bf6-06b8-56be-9046-6e32c6105319", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f29f60-5248-5b37-badf-a5fe38833368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission" + }, + "version": { + "uuid": "2278f010-cb59-59a8-a704-68bd128276d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f202b8-1c0d-4197-946b-bfef788dd8c4", + "name": "wildfly-elytron-provider-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9730fb50-8d82-52df-8b79-bcb11575dc3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "23f4cb13-de1e-5f68-902f-3d29cc9162c2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util" + }, + "version": { + "uuid": "fbf3e718-049e-5c39-b0af-0ee651a7912d", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f85b9c37-05a9-4266-bf89-6545a1a306fd", + "name": "quarkus-devtools-utilities", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa84e16b-ffb4-58fa-91ef-7184eef2a243", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "247eade4-d56c-5be4-b380-6c936cfdb311", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities" + }, + "version": { + "uuid": "75e7121e-49fe-5c35-92e7-d3a022db7d11", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6467826-8b61-45f6-a91d-5bf713ae268b", + "name": "smallrye-graphql-schema-builder", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "971890bb-7adb-5ca3-a98b-bc9eb7df17ea", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "249adc4a-cc58-5930-ac71-d5a63c3c6343", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder" + }, + "version": { + "uuid": "83bf9f64-3cc7-556f-86ad-2111180ebb37", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbaf8f9-748e-4d7b-b7b0-2e09f9e66b95", + "name": "quarkus-funqy-knative-events-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0f788013-6907-53d9-be7d-911653385954", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "24e68003-fe62-5274-a783-72ef4b90f610", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment" + }, + "version": { + "uuid": "cedd0d04-82b5-5650-8572-7fcfb0cb43b6", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ce8fa7df-398f-4b93-ab9d-110c0a37682b", + "name": "hibernate-core", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "678843ef-0779-58ea-aa94-c644c8b5e435", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar", + "base": { + "uuid": "24f7aa84-1368-5dd9-ada6-be5d27c10064", + "purl": "pkg:maven/org.hibernate/hibernate-core" + }, + "version": { + "uuid": "b967ac64-6be0-53df-9c53-c4be659bba22", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19aea5b1-5378-401f-bd20-1ceee0d63466", + "name": "readline", + "version": "2.2.0.redhat-00001", + "purl": [ + { + "uuid": "951af4c3-20b9-52e4-9aac-8870b746ba8a", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2544c002-4d09-50f9-b14b-de2434994ea6", + "purl": "pkg:maven/org.aesh/readline" + }, + "version": { + "uuid": "f7bca43f-d275-5fb4-a708-2795129cb38e", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001", + "version": "2.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ecb352-da4c-46a3-8617-ed458ced2f45", + "name": "quarkus-spring-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4fbcef-f593-5439-8b4d-2b8fe7fb5fbc", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "25ec0e4d-1dd8-53cf-8288-3e494f6e03ef", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment" + }, + "version": { + "uuid": "6c0587e4-ad91-5401-be4e-35ab299c79f0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73e410a9-68e6-4bf9-8f12-edc691d73fb5", + "name": "quarkus-jaxrs-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8ef67e10-656f-543d-be30-58f489bcc039", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26333b28-d4ea-5b5c-9677-7bd6707b0de0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment" + }, + "version": { + "uuid": "a6b69aab-84f9-598b-b2a9-7c3db52c131a", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80ea2723-f5ed-4cca-b320-8f79063510a8", + "name": "quarkus-smallrye-reactive-messaging-kafka", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "01df1fb2-5f06-5dcc-9fcf-f9883fdbad20", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "263d3de7-dae6-5693-bf59-9ce5430cdf89", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "2199814e-48a1-5032-a08f-4f0471c15240", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ed98591-d051-43ab-9c74-1f3381d9a9a9", + "name": "quarkus-core-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "47594949-10d7-535c-9fe7-f07a3ad50de2", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "26c0201b-9938-5d35-909d-803c549d9dd8", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment" + }, + "version": { + "uuid": "7ba38899-a09f-57d4-b351-8f218a26f18f", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70bbddb2-f134-43f7-824a-ee25a6e4dd00", + "name": "jakarta.websocket-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "1bab52d5-1498-58ca-909a-8a58777a0184", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27869a90-3679-51c3-a64c-e2e7f0613b64", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api" + }, + "version": { + "uuid": "2d508fcb-337e-5e41-b48a-546a948e8a19", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32318646-0827-494d-8d18-b5de7f736954", + "name": "error_prone_annotations", + "version": "2.15.0.redhat-00004", + "purl": [ + { + "uuid": "e17f95b2-41e3-5d08-9504-89d33c0bdb22", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "27919e78-9f87-5996-8ef2-69fde5cfe696", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations" + }, + "version": { + "uuid": "fdac6ac9-826a-5ea4-bfb8-dca681d718c9", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004", + "version": "2.15.0.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33250069-441f-49fd-8e70-dba2d895fb6c", + "name": "smallrye-mutiny-vertx-mssql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "144e84a2-a901-5286-a334-9cd6126dc1c5", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "28229f98-a784-5ecb-8eb7-4c2ed4580668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client" + }, + "version": { + "uuid": "3f554586-a7c1-5fe4-808e-e296e1810b12", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f262ebef-e73f-4257-8630-87ae72032715", + "name": "narayana-jta", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "c6175c63-4a4e-5854-9a4c-9a664e6a5fc8", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "29e26096-ac1f-5400-96e4-c1d32f91eaa5", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta" + }, + "version": { + "uuid": "f4a49127-746b-5784-8834-e128d7bbbc64", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-41f314c0-eb85-4a5c-bc54-3e5cf1b8832a", + "name": "maven-plugin-annotations", + "version": "3.6.0.redhat-00002", + "purl": [ + { + "uuid": "09bebf36-1ece-5353-8e1c-773441fb66cb", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2a1ed70a-55eb-54b9-90f1-3c0a23da9e1b", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations" + }, + "version": { + "uuid": "290eb3d2-1a78-58ea-99a4-dff2afe0e425", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002", + "version": "3.6.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-45ae057a-0ea4-4350-9933-7a6959275fa7", + "name": "smallrye-config-validator", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "3da24552-ca30-5162-8a67-bf8c073d5c4f", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b37f78f-5669-5f10-a72d-33dfac7443b4", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator" + }, + "version": { + "uuid": "b3961338-670c-514c-bc9e-ca6408bdf083", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3be0ff6-a286-4a04-91f9-7812df6702e1", + "name": "quarkus-spring-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6a1d83c6-a770-5d88-9215-fdbf79bcc710", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b632501-d073-58f0-89a7-0654a3f4a1ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security" + }, + "version": { + "uuid": "daa90c50-b765-590b-be8b-bd34bd7fdfda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89decd50-ee61-4eac-8db1-fa91a8e8d36d", + "name": "httpclient", + "version": "4.5.13.redhat-00002", + "purl": [ + { + "uuid": "f4ef7910-f332-57ff-a59e-3d743a99da65", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b6fd6e2-99a5-5621-8da2-ca646773a33d", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient" + }, + "version": { + "uuid": "793a2810-c707-5d5a-8401-b06c375b2e63", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002", + "version": "4.5.13.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc550d07-13a9-4407-8005-a8d6289c2b55", + "name": "resteasy-json-p-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "5a6906e4-ebeb-5dec-add3-ddde961d0593", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2b787038-eacc-520a-932c-79fc55b8c153", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider" + }, + "version": { + "uuid": "f29f8317-d9a1-5c2a-9cd0-a544716d899c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4818f59c-b5f7-467b-9d40-fc29a7630d3e", + "name": "quarkus-kubernetes-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a99298a9-3375-5152-89ce-02802c75e179", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2c6eead0-ce88-59b4-994a-f637fe92224e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment" + }, + "version": { + "uuid": "ea6e86f7-9a83-5b53-8c9f-ee8eda9ac0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-08bedef5-0666-47d0-9ddf-dbc962a374aa", + "name": "derby", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "4ef0e3ee-1246-5587-95e4-89a28559f859", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "base": { + "uuid": "2d06b83c-9742-5fbc-857c-7998a832cab7", + "purl": "pkg:maven/org.apache.derby/derby" + }, + "version": { + "uuid": "b2e5d378-a0bd-5e2a-800b-b08ba50e4bde", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1223d116-41df-41a1-b07a-29fde984dab3", + "name": "quarkus-smallrye-openapi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75f9bfc7-9c89-52fb-873b-c3ec01a7e7e9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d403acb-b8ec-5cd8-af33-bcf472f17ff3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi" + }, + "version": { + "uuid": "d687a1b2-586b-5610-b49a-ffc20b8e8c17", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4654e02-d7cb-4559-affd-b067996f568c", + "name": "libthrift", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "e66d5709-825b-59ee-ad89-234c987fabe0", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2d48c4c2-aaba-5ee6-a7d2-c16e738c311d", + "purl": "pkg:maven/org.apache.thrift/libthrift" + }, + "version": { + "uuid": "f266207c-296b-5190-8e5e-80018650a196", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9772c81f-9515-438b-a86c-515525a7fec3", + "name": "mssqlserver", + "version": "1.17.3", + "purl": [ + { + "uuid": "00c477d7-ed4f-5d42-a92b-ac7a341e095e", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "base": { + "uuid": "2d7b5069-0ac9-5a47-9a8e-8a23a7d3ffcd", + "purl": "pkg:maven/org.testcontainers/mssqlserver" + }, + "version": { + "uuid": "748de2ac-b8d4-5116-9caa-709afb393f9f", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a0e210-01ff-4912-ac88-6a0c0e0d5dbc", + "name": "smallrye-mutiny-vertx-amqp-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "47096ff2-a6d4-5e10-bda1-04bb8a212bcd", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ddb8c0f-60ed-5fe6-9557-2587d198cb58", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client" + }, + "version": { + "uuid": "d2993e31-cc14-56f4-bde4-dec42a851a0e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7385b1b0-e491-45d3-985f-09886e687ab1", + "name": "maven-artifact", + "version": "3.8.6", + "purl": [ + { + "uuid": "7bf75243-640f-5348-9c4b-279ad98c6cd1", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar", + "base": { + "uuid": "2e1b6b57-45b9-5be7-a9be-a8797bd4c954", + "purl": "pkg:maven/org.apache.maven/maven-artifact" + }, + "version": { + "uuid": "deaacd59-5689-5ebe-a9c1-8b4f307f2d26", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cd9a4bb-fb9e-4fb9-8dc4-eecee84d6767", + "name": "quarkus-spring-data-rest-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "c1a7c0f3-1b00-5044-8ed2-0a9cf4a2e236", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e2f6b2a-4f43-5d40-bf53-3ab7ef9f4212", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api" + }, + "version": { + "uuid": "1d264f39-2aa0-5e55-af6a-2f3724622678", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5638e10-4b38-469d-95d7-ea6749aa79f4", + "name": "smallrye-graphql-schema-model", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "6e928ac6-7c46-5ab2-a60b-6999599c2b69", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2e90aff1-6e6c-5da0-9792-8a0237657426", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model" + }, + "version": { + "uuid": "c9779503-5dee-5bd6-ab2d-7071ef2d9aa8", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1d5e1a9-282b-4dab-b724-57a5fd0c2dc6", + "name": "vertx-web-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "76ea5eac-f8de-5df7-936f-336e1df359e9", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "2ff99e85-d69e-5e28-acad-4683b8e5a2f9", + "purl": "pkg:maven/io.vertx/vertx-web-client" + }, + "version": { + "uuid": "5d36f73d-60e5-561a-b8d4-83cbf513370b", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1d0db57-c472-4dee-ab3b-16b01b8e2faa", + "name": "quarkus-smallrye-reactive-messaging-amqp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17962b0d-0f0f-588e-bffd-e2c42d1d5c8b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "303891d4-b794-5dd1-8f5e-fa37b3254386", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp" + }, + "version": { + "uuid": "1586e35c-2e5d-5746-8d80-1ce6baa6d8a4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ec38ea9-bd40-426e-8e02-119297005e41", + "name": "smallrye-config-core", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "d81cf1ff-52cb-5a51-b963-535c4ee02895", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309076ee-2161-57a3-b5c1-00d4f5a22c5c", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core" + }, + "version": { + "uuid": "fbc31527-f50a-5075-aef8-c55fb46f8a82", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bf88542-0e2f-4ade-8c83-a5c784a59c13", + "name": "wildfly-elytron-mechanism-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7e082167-6f9c-5e12-b48b-f1af2703e804", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "309e5249-4026-560f-a379-66c6e43555d0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2" + }, + "version": { + "uuid": "0bb2b5a5-a128-5072-ba45-617876fabaff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb3b50c0-65ac-4caf-8752-32b94afab285", + "name": "s2i-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "56336798-de77-5d31-a631-87aeaa0b2ecc", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30b3addb-ff52-53c9-9373-222545a709bc", + "purl": "pkg:maven/io.dekorate/s2i-annotations" + }, + "version": { + "uuid": "2794b7bc-5781-5606-8b10-98cfee8d9451", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc491fe0-8773-46b7-addd-9bf5fd5f15d4", + "name": "jboss-threads", + "version": "3.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "206ebaf3-0460-516a-9ddd-2187faaafb4d", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30e6b115-a196-5354-9cea-e29ccf08aa3a", + "purl": "pkg:maven/org.jboss.threads/jboss-threads" + }, + "version": { + "uuid": "5c2aa624-3756-5442-82b8-2ee9d1cec204", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001", + "version": "3.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cc93b96-b2a4-4e8a-bae4-9a519bb47cb7", + "name": "quarkus-resteasy-reactive-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd47493d-a094-5720-b2ea-ebfbfd996e75", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30ec5893-e9bc-5c50-8d3f-66c4eda95a9c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment" + }, + "version": { + "uuid": "76423c53-f3c1-51d2-abf2-d40d6085a749", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a2fa8319-ca3e-4f93-90f0-8ea931df3d13", + "name": "quarkus-cache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "167a84fd-94d7-5ed1-8449-06c7ee696def", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "30f2a642-3fe4-5088-8675-18136395deb7", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment" + }, + "version": { + "uuid": "b210e73b-1bcf-51eb-b3f5-ea866ec12e16", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cb52258-3582-430f-84c7-635d63238be3", + "name": "quarkus-smallrye-jwt-build", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4a937e4b-d857-5d4d-83b5-d6c192da529e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "31153480-c3ce-5dc7-9a88-787df6c8d95a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build" + }, + "version": { + "uuid": "260f6449-31cf-5a91-90fe-865cd5532223", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-657ec2c3-6d66-4ccc-8616-77b85179cd57", + "name": "maven-repository-metadata", + "version": "3.8.6", + "purl": [ + { + "uuid": "617c3bd6-b9d7-5509-9a64-aaa5e7251f9a", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar", + "base": { + "uuid": "31d579a8-f0c2-54a1-ad98-42804a6d1108", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata" + }, + "version": { + "uuid": "b7319a60-eec7-502c-bd78-c8d585b4d7b7", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e7ee17f7-8e9f-4b81-9c45-ee240e6dc5bd", + "name": "quarkus-jaxrs-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "753da595-381e-5895-9967-86713a79ecae", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3237c3c5-a44f-583d-b704-0becfde42d2e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment" + }, + "version": { + "uuid": "b70565b2-9762-51dd-b1d3-bd72937f313e", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-23be191f-7615-4b9d-a2a9-fe707af48c31", + "name": "quarkus-security", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0df54167-b0f0-5d91-90bc-628a80021cec", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32434ab5-3d47-547d-a69a-fd36ed6539e5", + "purl": "pkg:maven/io.quarkus/quarkus-security" + }, + "version": { + "uuid": "5f7a4e7a-b255-5aa1-9e89-1abc25272c8d", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add06850-2ae2-427d-a061-1e16d16748b4", + "name": "brotli4j", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "0b0c4dd5-4b72-5596-b24f-fc9b76cc0b2b", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3255edd4-139f-5274-8ef0-003588dfa7de", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j" + }, + "version": { + "uuid": "f0538b48-ef1a-5af8-af1a-dd7e51a12834", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c34fa9c-73e9-4431-a1f5-37c13dfa12d8", + "name": "org.eclipse.sisu.plexus", + "version": "0.3.5", + "purl": [ + { + "uuid": "21d141cc-b9f4-5daf-8149-adfbfabd6a58", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "base": { + "uuid": "32966e6c-3ade-566f-9113-3f542272a3ce", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus" + }, + "version": { + "uuid": "3097bcb9-9acd-5e3c-8923-8389560245a4", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-81c7bdde-16d0-4959-a22d-dd2cc7d0c490", + "name": "protostream", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "2a5b33c9-de77-5118-99a3-a4e28c309b57", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32cc2211-0fa1-5ea0-8850-b501ea30dc89", + "purl": "pkg:maven/org.infinispan.protostream/protostream" + }, + "version": { + "uuid": "0479268e-af13-5dd8-aa2d-cf3e13f4c62f", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c550828f-54f2-44d8-856f-eb163a80990b", + "name": "quarkus-devservices-mysql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14888876-a330-52dc-b6a4-6bb287d375d1", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "32d2f0ae-ff13-5de1-829b-23693a01b58b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql" + }, + "version": { + "uuid": "59c887a6-e4db-5f29-b2dd-e996528a0d34", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2015a08-c595-4ca9-beff-a610aa54206c", + "name": "jackson-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "60d801cb-fb77-56c6-82c1-b492dc2ad7b9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "332a2ce5-cc27-5106-9c32-fa126d152dc0", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations" + }, + "version": { + "uuid": "cb32cd33-8fa9-5a3a-9982-60ed206b4676", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c1ba4309-9abc-4e81-93b4-f3ab71b34476", + "name": "quarkus-rest-client-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2601075e-85cd-5985-aa30-9ebf42d00ef8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33a0268c-6e74-564a-932d-abb29d88b37e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment" + }, + "version": { + "uuid": "d9b1dc78-fd6e-55f1-8525-6d5a90b8feae", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4400c49f-c43d-41f1-8eaa-43f112597bc2", + "name": "quarkus-apache-httpclient-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c5bb552-8f6e-5c3d-91c6-90b47be5cb16", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33e14e28-4445-5802-aafb-910c24fc66c6", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment" + }, + "version": { + "uuid": "e226e5fa-8b48-5935-89e5-907b8715af6e", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710139ec-bcd5-4284-bdb0-d859aaa281d5", + "name": "quarkus-resteasy-reactive-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "181b4d1c-08c0-53d4-b4a9-b7111deeebfc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "33eaf1e0-cb21-5657-b689-733c72a8cd6b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute" + }, + "version": { + "uuid": "51bbc3e9-f1c5-5329-9424-60578c25ba3d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65c10ba0-12ef-4cb4-8afe-777962394902", + "name": "quarkus-resteasy-reactive-jackson-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "19adc145-7ab3-5a27-bae3-d7fb149d99a0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34210648-b598-573d-a70e-42a801310c31", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment" + }, + "version": { + "uuid": "34cffcdf-15ea-5897-b5ce-8efcd9329428", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a27b6ee5-3033-4183-b9c5-81ebb8b91e32", + "name": "smallrye-open-api-vertx", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "0479ac17-a030-5759-8151-42fe7ec0d000", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "343f30c5-5a0c-5283-8235-21a46d76cdb4", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx" + }, + "version": { + "uuid": "3be6782f-77b3-5708-a4ee-d9793f226590", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5716727a-ca55-4810-8a3c-1da87eeda5d1", + "name": "quarkus-devtools-base-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc64135-ed41-5e03-a2db-75a74e7f5a35", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "346c44ca-ff1a-5e53-97e9-fa6a486356de", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts" + }, + "version": { + "uuid": "33f9310e-5e9f-533f-b6d1-03312662d399", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-676b3402-6383-43b8-94ff-9010adb501c2", + "name": "smallrye-health-provided-checks", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "5a340925-05a7-5d7e-be43-3a43513a58eb", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "34dbe076-c43e-51e9-a5d9-4b7268d6cb86", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks" + }, + "version": { + "uuid": "9d7f6271-8205-5437-aaec-0616ceff1c62", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6eab76d-0821-4c9d-bc32-355736657849", + "name": "infinispan-api", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "bc4465f5-734c-568d-9a95-b7748bbf7a64", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36d7c5bf-72a1-59c5-a075-d99425c4d4a1", + "purl": "pkg:maven/org.infinispan/infinispan-api" + }, + "version": { + "uuid": "b9f8acd0-de98-5519-9a43-564da4a51f63", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8e30d2e-6350-4782-8cac-fa90a76c6ea6", + "name": "smallrye-config", + "version": "2.12.3.redhat-00001", + "purl": [ + { + "uuid": "318eaf48-f937-5410-80ab-90b50c336300", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "36e6b5c7-545a-5ce5-b811-2a9cebaeac83", + "purl": "pkg:maven/io.smallrye.config/smallrye-config" + }, + "version": { + "uuid": "9870543a-e460-5ae2-a002-59f6c579cb41", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001", + "version": "2.12.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b68ff89d-b06e-4075-8524-f52b5ebcf1a3", + "name": "jakarta.json", + "version": "1.1.6.redhat-00003", + "purl": [ + { + "uuid": "3b0d598b-c256-5432-9153-624590844c8a", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "376528bb-1374-595c-b47f-9bbb11b7979d", + "purl": "pkg:maven/org.glassfish/jakarta.json" + }, + "version": { + "uuid": "ae1d762c-1a48-5453-aef2-b6995295cea6", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003", + "version": "1.1.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-780655c8-4460-4858-a9dc-c4b4025184a7", + "name": "quarkus-extension-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "074aef48-23f8-510f-a93d-9d29f8681132", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37df424d-a1e6-5694-ba9c-c3ec797c4996", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin" + }, + "version": { + "uuid": "c5ea19a6-cd5b-530e-bcfe-3730eb957ee6", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f32dd752-29fd-4a6e-a241-2ee80367e4f9", + "name": "quarkus-resteasy-reactive-jsonb-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e895e5a5-e01b-5fa8-a0a3-09f44190b37e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "37e1e02e-1b1f-5c91-a23d-4a9dddddbfae", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common" + }, + "version": { + "uuid": "ecb206c3-326d-5390-9621-06d19b856e44", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a40da876-b92c-472f-9540-9dd899f88bd0", + "name": "maven-resolver-util", + "version": "1.6.3", + "purl": [ + { + "uuid": "81459bc0-2f5e-520a-9ca7-6f7951634b18", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "base": { + "uuid": "37fd9d94-c172-5253-8e01-9813108829c4", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util" + }, + "version": { + "uuid": "c2922732-aa7e-5240-bc3d-26bf1395455c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b295835-4e63-4cb4-93ff-00e07478fb5b", + "name": "quarkus-hibernate-validator-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2415a152-44ff-51d1-a2c5-aae176ce040c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "38d5de8b-3164-593a-9d77-88a69bb3c86d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi" + }, + "version": { + "uuid": "2b54eb43-7eb2-586d-aa56-c264b55fea2d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12d3c786-7869-4103-a439-e86faa9dcf22", + "name": "wagon-http", + "version": "3.5.1", + "purl": [ + { + "uuid": "af31ae0c-5692-573a-8f51-02d360ac2a8f", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "base": { + "uuid": "38e6b254-e1e7-5e1c-951c-946722ab9ea1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http" + }, + "version": { + "uuid": "fd93e559-f4d6-53da-952f-2b80c157416b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c45288b-2e5d-4549-beb5-1af6faf1e4a7", + "name": "shrinkwrap-spi", + "version": "1.2.6", + "purl": [ + { + "uuid": "b971a1c7-b0be-5497-a56e-affde0c7995a", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "base": { + "uuid": "392d86f1-4a18-5c6b-98d9-35fa53960993", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi" + }, + "version": { + "uuid": "b39abc7e-e786-59b2-82a6-b8dd959ed2dd", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dec4267d-261f-475c-aa7e-15081cb7b814", + "name": "quarkus-hibernate-orm-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dab0e411-c906-5f26-ba9f-2bc8058b96f9", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a3fa47d-a921-5a4c-9992-6a34cf716a6a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common" + }, + "version": { + "uuid": "c7253c93-72e3-50b1-b537-3866ddb07a1b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-733d691e-dc1c-4948-b66a-c5387651c203", + "name": "quarkus-resteasy-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "751710b5-9c33-5861-b0b6-0d253da6df48", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a53866b-04f7-584e-92e6-9f0101263a1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment" + }, + "version": { + "uuid": "ec4da626-0e3e-5fc6-bdd8-4654a137cdab", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50b4bc78-052a-483c-872c-e0941edd9301", + "name": "quarkus-oidc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba56d11b-d66a-51ca-a310-7913f2b5d487", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a60e3c5-2baa-59a9-b05c-7587eaab9dcf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment" + }, + "version": { + "uuid": "0733fa3a-f274-5d6f-9afe-0a855677db6a", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-87a107c5-424e-47a2-afb3-7ec4e6df38ad", + "name": "quarkus-smallrye-context-propagation-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d0262f1d-9fb8-57f9-bd33-f2fa3c719e5f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3a9dcc84-a92e-597d-9f8f-6eb3e7e60b43", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi" + }, + "version": { + "uuid": "4597a3b8-580e-5322-afe7-5c943ea6b55f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e67ac09-7ec1-424b-bd9f-84771a9606f6", + "name": "quarkus-kubernetes-service-binding", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5657c512-f07d-5b08-a5b0-1df803963ff5", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b025fdf-9886-5abb-a20a-bfcd188a9413", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding" + }, + "version": { + "uuid": "0a9cc5f4-c981-519b-a01e-e2657dd9cea2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eba79886-b53d-4315-bf4d-c85730710dac", + "name": "maven-resolver-impl", + "version": "1.6.3", + "purl": [ + { + "uuid": "856a5397-6afa-56e6-83d7-a23945b133c1", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "base": { + "uuid": "3b081989-8aaf-5db7-8b04-c0180635285c", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl" + }, + "version": { + "uuid": "843f305b-e655-5e38-b76e-c3c1b6d2a004", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b4e4a45-acbc-4da4-8926-968db5098c83", + "name": "quarkus-elasticsearch-rest-client-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6db23df-d47a-5974-87a5-613ecb86d1b7", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b0a7b21-a704-5f48-98cb-6444c5ca11a9", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common" + }, + "version": { + "uuid": "ecf40bcf-eed9-512b-be0e-cd79ed9bc74a", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ae569c5-bf50-4b41-948f-192f3186f0b4", + "name": "openshift-model-tuned", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "70a6a9d0-114a-5eca-9239-6c19b1c1e424", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3b6567a2-4535-5092-919a-11877e25f217", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned" + }, + "version": { + "uuid": "b79fc95e-189b-5a60-965a-4bc1cb580861", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07dcbc02-f135-4581-b566-9450743a6b53", + "name": "classmate", + "version": "1.5.1.redhat-00001", + "purl": [ + { + "uuid": "a87ab6d9-6a7b-5fcc-9f40-60a44d19ac59", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3bbb0794-3b14-5b1d-91df-c9c933a739a8", + "purl": "pkg:maven/com.fasterxml/classmate" + }, + "version": { + "uuid": "76fac618-b9c6-5f91-9d49-1106f3433f03", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001", + "version": "1.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85e1044-8101-47c7-95c2-b53b3f0fe41c", + "name": "quarkus-vertx-http-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14aebacc-daca-591a-b91a-6282afb27fcb", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3c33c6a5-344a-5551-badf-8cb0169abc87", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment" + }, + "version": { + "uuid": "82316ed9-78f9-53bd-9840-cb968b45752a", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfbf4328-0e2a-4a70-a648-062dfd1c5a72", + "name": "snakeyaml", + "version": "1.33.0.redhat-00002", + "purl": [ + { + "uuid": "459c612e-68ff-53c4-931c-6720b126e7e5", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d0e9741-5e0b-5854-b917-e9c038ac68c9", + "purl": "pkg:maven/org.yaml/snakeyaml" + }, + "version": { + "uuid": "22b4470f-6d7f-5796-8294-f6504b7d2c06", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002", + "version": "1.33.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-287bc06f-e29b-47c0-a8fa-65a19f3253a9", + "name": "vertx-codegen", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "6f1f6b72-ad89-5478-82db-2c5d9e276805", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d18f6cc-9861-5e35-bfc7-c60a40d6a01c", + "purl": "pkg:maven/io.vertx/vertx-codegen" + }, + "version": { + "uuid": "997a8f40-6b39-5b56-8661-bfb09cc51a7e", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16353681-583e-4ef3-9000-3128fa1e23f4", + "name": "quarkus-panache-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a44ceebd-83ae-5d1d-804a-3140a36e2d3e", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d4b8b8e-da71-572b-b188-5710d59a23b7", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment" + }, + "version": { + "uuid": "74202f8e-e160-5ff4-8d52-cd3d2a2c1f80", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1b467305-8fe6-42e9-9f33-f29c3b276004", + "name": "jackson-core", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "96098e96-bf3a-50df-b95e-3bf9c14c18f9", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3d52e8ff-d4e2-5fff-b783-b9b09962cbcb", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core" + }, + "version": { + "uuid": "4757350c-1786-5347-b39c-60a6c5a8431e", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff1daa18-ba57-4391-a109-1d4bb7ddd23a", + "name": "quarkus-smallrye-openapi-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d46ba1f7-4fd7-5ce5-adca-093abdb497d4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3db6132b-31c5-546b-a659-ab9100dcf175", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment" + }, + "version": { + "uuid": "72ce2369-8f8a-5ab5-9d2a-d58534c1b3fb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4b65de6b-9758-40e1-a4e6-678da6a20b7a", + "name": "jaeger-thrift", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "be54e3af-0cb2-59e2-8abd-24142ac75e6b", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3dc0110f-f846-5a75-b664-2c28d30613a6", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift" + }, + "version": { + "uuid": "cbc87641-8187-5313-9e49-6b880721759d", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e73aad47-e687-4926-aa09-f6b4ae26b9f8", + "name": "commons-lang3", + "version": "3.12.0.redhat-00001", + "purl": [ + { + "uuid": "87adf21c-1b06-595d-b9a1-18cec66cdc42", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3e141ebb-2f90-51a2-b113-96ca14fe8141", + "purl": "pkg:maven/org.apache.commons/commons-lang3" + }, + "version": { + "uuid": "3627600f-31b0-510c-af68-0ed2e3d47c41", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001", + "version": "3.12.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3608b98c-6cf3-4689-aee6-1fd1d2f29b5e", + "name": "quarkus-jdbc-derby-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "d2994226-3de0-5cf2-9a9f-f0f16560ba5a", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "3edc4cd7-d242-543a-919e-0dc62461005b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment" + }, + "version": { + "uuid": "7399d2f0-bd09-5c9b-9555-d4bc43201c58", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04d885d4-6ed3-474c-9b9f-995e7cff7222", + "name": "quarkus-devservices-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8c718453-a907-5096-b0c8-1fa71c124db6", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "3f26a01a-e9c7-5e4d-851c-bf236355a2d7", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2" + }, + "version": { + "uuid": "3272da39-2b88-5369-83df-651fcbab64e3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a40323a-df3c-4ffc-bb7c-17100ba62c15", + "name": "jboss-jaxb-api_2.3_spec", + "version": "2.0.0.Final-redhat-00004", + "purl": [ + { + "uuid": "1ca1495d-a539-5f74-83e6-43370e0074d8", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "3f636360-7210-59eb-9088-3e2523951f21", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec" + }, + "version": { + "uuid": "1d16e763-2091-5bc8-b578-33952ae72653", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004", + "version": "2.0.0.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac83b3ec-720b-4990-b361-a1d7ba83fe75", + "name": "jakarta.servlet-api", + "version": "4.0.3.redhat-00006", + "purl": [ + { + "uuid": "b0b1d16e-64cd-5d2f-8301-24b303acf98f", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40380612-7015-5b54-ae5e-bc3cc556b2b6", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api" + }, + "version": { + "uuid": "8fea4c63-8811-50b4-944d-2af1a9631546", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006", + "version": "4.0.3.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6e3db2f-87a5-4e6f-8149-1aaa51c4b9b9", + "name": "wildfly-elytron-sasl-plain", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "68ed2094-11dc-5274-9208-ebc99d8f89c5", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "409c59d2-6fe4-5bb5-b8f9-374a1671fee2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain" + }, + "version": { + "uuid": "87769f20-ace8-5407-bf33-34710dd3284f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ed983699-21b7-4397-a638-c22ec1153f6c", + "name": "hibernate-commons-annotations", + "version": "5.1.2.Final", + "purl": [ + { + "uuid": "a5459fbc-898f-58cd-8e55-66bb67bffee2", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "base": { + "uuid": "40a747a6-acc4-5326-960d-16f7f37d9d26", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations" + }, + "version": { + "uuid": "4af23e11-9b3d-59ca-9108-c023d422804a", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final", + "version": "5.1.2.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e683d9c9-68e3-4507-b971-47127dccdf7f", + "name": "plexus-interpolation", + "version": "1.26", + "purl": [ + { + "uuid": "d9f5e8ec-a484-5de6-9d3c-1f31f7d635ea", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar", + "base": { + "uuid": "40d69945-fda2-585b-8d04-070044ae8b3b", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation" + }, + "version": { + "uuid": "215cdc08-2cb0-522d-a281-14ffd5b94bce", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26", + "version": "1.26" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bdd0314d-1807-43f5-8610-9fc350102a6b", + "name": "zjsonpatch", + "version": "0.3.0.redhat-00001", + "purl": [ + { + "uuid": "273715ed-c66e-57d5-8121-6191a6486522", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "40f99f80-8fa4-5977-b211-c69f4851b4bf", + "purl": "pkg:maven/io.fabric8/zjsonpatch" + }, + "version": { + "uuid": "8dd82b8e-3971-59e2-879b-5cc2ef5b8e01", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001", + "version": "0.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7661f3a5-edad-496d-8108-47b8f272a4d2", + "name": "smallrye-mutiny-vertx-bridge-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "884b583f-c43c-508e-a300-03b9af216e82", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "410e4eb3-501c-5df4-86df-a49d1435d3e2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common" + }, + "version": { + "uuid": "09ea68e0-01f0-5a70-b143-ddb5811e3c2e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-54c0be76-d1b4-4830-84ff-8d766e6d43c9", + "name": "maven-resolver-transport-wagon", + "version": "1.6.3", + "purl": [ + { + "uuid": "0117873d-8c9e-5dfd-921f-41d9a9b42a47", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "base": { + "uuid": "413027a3-5b84-56c6-bd6f-946cefa226d6", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon" + }, + "version": { + "uuid": "1caef09a-e878-5399-9a80-7ee6969cb507", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d314695-8cae-4878-822d-7c6ac3b88373", + "name": "commons-compress", + "version": "1.21.0.redhat-00001", + "purl": [ + { + "uuid": "8543edb3-05b9-5b64-a438-c7af4c58cd65", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "41997fa4-ddb0-5def-aeba-94e8d7cd9ed6", + "purl": "pkg:maven/org.apache.commons/commons-compress" + }, + "version": { + "uuid": "30745438-0324-5a42-b840-ca3e93cb7fdd", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001", + "version": "1.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6afb2c26-7a31-4bea-9939-9b20605a578d", + "name": "quarkus-junit4-mock", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "04d472bd-86db-5367-8883-1a5c148e9f84", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar", + "base": { + "uuid": "426ca6ed-f534-5a57-930c-20f1a04a7875", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock" + }, + "version": { + "uuid": "c0d494f5-2f63-50b1-a32c-a180e6364848", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2756596c-da2b-4246-ac12-10ae07ad5ff8", + "name": "quarkus-reactive-mysql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ceba0bcc-8048-575a-8cc9-34e8060f2db3", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42756c7f-ae43-5af9-8daf-3cec4d03251c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client" + }, + "version": { + "uuid": "a1691007-16fe-5ca1-bdc9-3ef909d8efb0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20648f2c-fcd0-43e0-ae1a-d10a0faf85cf", + "name": "openshift-model-monitoring", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d80274c2-83ba-58c9-862e-8a711ca3367f", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "42936d50-0d50-5513-ac18-778d16cba4dd", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring" + }, + "version": { + "uuid": "b2699b98-d69c-5dce-8215-0d235d696680", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8966cc52-b29f-42e7-91e2-211c5dcda54c", + "name": "shrinkwrap-impl-base", + "version": "1.2.6", + "purl": [ + { + "uuid": "fd173ec7-faba-5320-9dbc-79a170084205", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "base": { + "uuid": "42ef1d5b-30cc-5253-bb06-e8c132d2369d", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base" + }, + "version": { + "uuid": "fb0de695-0cd0-5909-b3f6-fea4b22dff77", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29828241-418c-407d-a573-27b368a3200b", + "name": "slf4j-jboss-logmanager", + "version": "1.2.0.Final-redhat-00001", + "purl": [ + { + "uuid": "0b9c10da-5d73-5bca-9ec9-fe27e5df56a7", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4301ebb0-4945-5b5b-8be2-f8dd97250b95", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager" + }, + "version": { + "uuid": "8aa1d0d1-c7ec-53d5-8920-975d3891d722", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001", + "version": "1.2.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b794473-ef8a-4dc3-83c9-994ce7e416c8", + "name": "netty-resolver", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "ca80ea97-d265-54c2-a263-c7069934ac5d", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "43af72a1-d9a4-5b51-bf1d-379c4f361446", + "purl": "pkg:maven/io.netty/netty-resolver" + }, + "version": { + "uuid": "968f513e-9435-5b1b-9174-e53eab15fc83", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e08e39f8-f66a-44f4-93f3-26f8e1e79329", + "name": "resteasy-reactive-client-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45d957a9-f53f-5cdc-8ef4-24a3e79c7dbb", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44b72d4a-b1c0-5ea8-ae55-7a0e3cd79e02", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor" + }, + "version": { + "uuid": "80315b0d-5179-5221-8610-c6dc029aa4f5", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c69daff-e8b2-458f-aa0c-62a4d545033f", + "name": "smallrye-mutiny-vertx-web", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d325135a-ec5a-58c9-93b0-9284dff4fee0", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "44c60b66-5f19-50e2-9ee8-b1c7fa1fbd50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web" + }, + "version": { + "uuid": "360aa06a-b6cf-5e20-9657-bc7afc1abc23", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7b2befe5-408e-4c72-be47-8faf7059e22f", + "name": "shrinkwrap-resolver-spi", + "version": "3.1.3", + "purl": [ + { + "uuid": "01c4fac9-19e0-52b0-b667-2a1bd5b8036f", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "base": { + "uuid": "4506ea2e-bbbd-55e1-9bf3-73271a3d9f23", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi" + }, + "version": { + "uuid": "d1ae7c9d-67ba-56e5-92e0-44e0c09c1339", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d377dddb-6a5c-4b17-91b2-62877d713dc6", + "name": "smallrye-reactive-messaging-kafka-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "b2290511-5bb7-5104-8aec-ca211d5ef682", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452b1a0e-4f56-5bff-a1b3-672847a72dde", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api" + }, + "version": { + "uuid": "4d4ed1a6-14ab-5c49-a9f5-02f358547040", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14276dc5-94a5-43cd-84b0-ea71fc2b8222", + "name": "quarkus-container-image-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e628e771-34a3-51dc-97e1-4acb2b8ca5ec", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "452eef4d-38b7-5e50-83d4-b96b6642b9db", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift" + }, + "version": { + "uuid": "3648646d-e82b-52db-956a-0d5d4c44e34b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a0388d42-2217-4d3f-affe-1eeea41e4e60", + "name": "quarkus-resteasy-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66cf0916-3d7d-5739-ab86-1661306103e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "46457d81-5f7a-5f5d-bd5d-fe30afdbab4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute" + }, + "version": { + "uuid": "5cecfcb6-7729-571a-9091-8abf39319bd3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fffe776-f062-4601-962a-7c665ccf587f", + "name": "velocity-engine-core", + "version": "2.3.0.redhat-00001", + "purl": [ + { + "uuid": "125c5ff6-71ab-5cb3-b122-16f64361d498", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "47175773-6052-5ad8-a6b3-a4c05d4d422c", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core" + }, + "version": { + "uuid": "f075fa21-8cba-559e-99ef-afd2d9a27910", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001", + "version": "2.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cd8d0c3-3d68-412f-9e4d-59afe8b84671", + "name": "quarkus-rest-client-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b26e3805-8e38-587f-9314-db0b8eb67b09", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "479cc516-ed0a-5c70-8359-68da053461b4", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb" + }, + "version": { + "uuid": "5746db2f-3b44-5412-8d2a-1c8b78ccb382", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8aa405f-9a64-4bfc-8114-0649b9148b35", + "name": "maven-model-builder", + "version": "3.8.6", + "purl": [ + { + "uuid": "61295096-4ba3-5e25-a1f3-c7796c0e2312", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar", + "base": { + "uuid": "47c698b9-fcfa-5aed-a78e-1e00d3691c5d", + "purl": "pkg:maven/org.apache.maven/maven-model-builder" + }, + "version": { + "uuid": "67a2c758-4c7d-5f5a-82b1-867e070ee670", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6de0e4bf-81b7-43ed-ae15-8f708b4d792c", + "name": "quarkus-rest-client-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bad81039-e105-5980-9294-33bc71506a5e", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4872774a-8dc7-5e49-8bf2-66cb19c1da1a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb" + }, + "version": { + "uuid": "2fa20e5e-1bdc-59ec-8489-fb83b2c3c69d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d3e2a94-6e69-41e3-ab79-00068a1962c2", + "name": "wildfly-elytron-base", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "dd34be87-ee58-55d1-9dd0-4920c57419f7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48baa898-b30c-573f-8ef9-6b66d1f22d92", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base" + }, + "version": { + "uuid": "f94ef2ef-967b-5ffb-b64a-5c431135f6ff", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ea2f153-3cd3-43f8-a5b3-0c5121bab6d4", + "name": "asm-analysis", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "59778c48-2039-5cb4-b23e-ff8abdd04d09", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "48c2ed69-6e5d-54c4-ae41-49565f7fc371", + "purl": "pkg:maven/org.ow2.asm/asm-analysis" + }, + "version": { + "uuid": "d1eac96f-f08a-5542-a5f4-93a6480a77c9", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-94b8d1ed-8383-4ad2-8b42-e124141211c3", + "name": "smallrye-context-propagation-jta", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "863fc64e-cc1b-5a2a-b859-156c73c83c81", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49029437-3d45-550b-9030-0d4f1d41c6e4", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta" + }, + "version": { + "uuid": "346e5ff7-aa4f-5fc7-8188-29dcf696ab21", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac7ae0c2-98ee-41e3-8a91-f00ad1360711", + "name": "quarkus-jacoco", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1d4f17d7-f0b7-5906-b77c-646509e6e281", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "49253c1e-77b2-5bb7-96c9-325533555384", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco" + }, + "version": { + "uuid": "eff2cf0d-a503-5e7a-851f-4b927a617fd1", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fa11160f-0c14-4f24-9ba9-ab6f6a6d7547", + "name": "smallrye-open-api-core", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4b6e6062-ffcc-5fac-9a8b-84e3e8e088a2", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4a5b7dc3-857f-5eb6-9aa5-6361df199ab5", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core" + }, + "version": { + "uuid": "27ee2379-0683-55f1-9dee-7a8c86667ce1", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3fc3847b-8eed-4203-a3fc-f669fbe653eb", + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "496eab61-3333-567f-98da-f6c3389fa91e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ab88f63-6a37-5ecb-a9f4-093ec03bb2e7", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi" + }, + "version": { + "uuid": "e3097c94-b77c-5e59-978a-756364bf0eac", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d5eafa7-435e-4126-9f11-8669924c1247", + "name": "proto-google-common-protos", + "version": "2.9.2.redhat-00004", + "purl": [ + { + "uuid": "88cd3beb-8271-5d4c-b18b-afb84137e4b1", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4ae782c7-1e40-5442-9511-a8507f6ded43", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos" + }, + "version": { + "uuid": "8ea565d9-8bf9-5a91-9f20-94590b12a009", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004", + "version": "2.9.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fcbf44b-becb-443c-8e0e-5dd24f96830d", + "name": "httpcore-nio", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "7b66e721-f91b-5ec1-9668-50330c9d5c97", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4b4e57fd-36d7-5466-9309-2ef657746e51", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio" + }, + "version": { + "uuid": "ac671c33-4bfd-595d-a718-118949cbe98e", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d10c8fa-d8b6-4e41-85ef-e5f90624f1e1", + "name": "quarkus-keycloak-authorization", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ed321301-2d42-5939-aa96-70930a231979", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be678d1-5f0d-5d97-88b4-968f4f4bb532", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization" + }, + "version": { + "uuid": "e8c56f6c-62b3-5d14-a5f0-b2c921be6bdb", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02387ee0-4cd5-4e4d-92ec-7cdab092a91d", + "name": "wildfly-elytron-sasl-external", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "2c38a41f-635c-549a-a317-397c7f1dea53", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4be8aa74-6085-5e35-b58a-c56110faf368", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external" + }, + "version": { + "uuid": "5d77bde3-8c05-5d18-b69b-acb90cb8cff2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a93d1d8b-bd47-42f0-bec2-536f027939c0", + "name": "quarkus-config-yaml-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "69248775-f5fb-5df9-ba0a-0ce8254bd512", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4c38dc0e-c278-5ac8-9de0-eba1263655c1", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment" + }, + "version": { + "uuid": "86ccc4d4-5720-502e-9caa-579b14076aab", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-828049f8-0c36-4997-bca2-be1319d40619", + "name": "smallrye-fault-tolerance-tracing-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "73aa8505-3189-5234-8247-453c2ccad3d8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d188262-58d5-5146-ab03-d1b65aa276a6", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation" + }, + "version": { + "uuid": "02209a0c-502e-52ef-8470-79d40eb00dae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5459e85b-ec34-405f-bb8a-5d2b24de5ef2", + "name": "protostream-types", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "ac6a528c-1dba-5199-a332-1c97c21627a9", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4d86703a-7af9-5e58-8d5e-df1daf672978", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types" + }, + "version": { + "uuid": "49225d0d-0b0f-54fe-9297-cf818fabd6c3", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9269d5f3-5fea-47a7-aaca-0e97282b40fa", + "name": "smallrye-fault-tolerance", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4eab9c33-a4fb-5bb5-a32d-d0b854433f0a", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd35b7c-bc58-55ba-8746-5e384378d338", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance" + }, + "version": { + "uuid": "a4748448-9889-502b-a9f7-f6b9e2f53fed", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e300fa6-506a-4418-9dbc-ad9457a653ba", + "name": "quarkus-smallrye-stork-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a6337f26-143c-5e7d-90e5-b6628420d368", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4dd69d1d-36dd-57f0-a22e-c4a565157ac5", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment" + }, + "version": { + "uuid": "75d1b7c1-a921-5421-b734-0d15b42ff539", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-638280ac-d93b-446c-8d07-98fe9ca5abbd", + "name": "smallrye-mutiny-vertx-core", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2c003f90-2b52-5c0c-b0dc-eb541d467c50", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f31b112-918f-52f1-9587-d160c38e3d7e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core" + }, + "version": { + "uuid": "833cddb4-22ce-59cb-a2c2-7850e8b501f1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-12f3d4de-3eeb-4dac-8bde-1e3670a7ad29", + "name": "quarkus-spring-security-core-api", + "version": "5.3.0.Final-redhat-00001", + "purl": [ + { + "uuid": "23120983-f534-527a-9032-34d7200da2f8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4f94f46f-6d4d-5106-a6bc-0559c988a609", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api" + }, + "version": { + "uuid": "28fc7590-e6c1-514f-a805-eb8628dc7a74", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001", + "version": "5.3.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16bd3d77-5940-459c-8e4c-c30d993cf17b", + "name": "opentelemetry-context", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "c85bf80c-1b67-5a02-9f02-707e6b8026b1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "4fc611d2-4d1d-5b3a-8c45-233c43bdd60d", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context" + }, + "version": { + "uuid": "1c1e3ed3-2760-5af5-98e7-74cbcee6658a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9af03e42-a1c7-40d9-88b4-9beb6c420db1", + "name": "quarkus-resteasy-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e06e08f1-721f-51c5-938d-d36cc57ba5d8", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "502cbae6-cc31-5f4d-8f0b-85e3756a0dfd", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment" + }, + "version": { + "uuid": "2f0746b5-be13-5c33-bc9c-bcc1c00dc8b3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-32453490-a124-4651-b6f4-c14a4f805f9e", + "name": "smallrye-common-vertx-context", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "aadde3ff-60a7-5423-bb06-14a5809dc2e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5054210e-3de5-5efd-aae5-bbb52700332b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context" + }, + "version": { + "uuid": "903ce8df-3ef5-54f9-8f82-78a2a4e3df49", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba45ee5-5725-4147-9d6a-59f12539ea8f", + "name": "option-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8ce0b04a-5bc8-52b1-8d4c-5e5c586185df", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5057f715-992c-5fee-8f3a-085d3b3f487c", + "purl": "pkg:maven/io.dekorate/option-annotations" + }, + "version": { + "uuid": "79c4587a-f970-5601-9663-9e258a559aef", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec3162b9-9631-44e6-9bbc-e4f268ef722c", + "name": "quarkus-bootstrap-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1be0493-7f8d-5b02-bcbb-eba30efee1f2", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "505c74b2-b0e1-537b-b012-621d3cb32333", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core" + }, + "version": { + "uuid": "55540482-9dd3-5934-81a7-c55ec6c0b7c0", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-333ec135-ab9f-4c13-8f50-ae0772f08de3", + "name": "quarkus-jaxp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3a43984-dfc9-5bb1-882b-3f21d6efd56f", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5092cd38-f156-5ea5-89ba-5a0f10426fd0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp" + }, + "version": { + "uuid": "5ab2e764-7ebf-5faa-b5b1-46759f6a7e29", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59872fbc-27a5-4ed5-80a2-ab85d9c5e983", + "name": "quarkus-jdbc-postgresql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7aa8ebb-75f9-5760-83da-0efb776aca82", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "50e7ad71-bb2d-5ea7-b14b-16f2af03a7d1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment" + }, + "version": { + "uuid": "a19f3cc5-b0ae-5bce-9298-3aeeceb2def0", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1a10ac39-eba6-4619-95ab-447beab26899", + "name": "docker-java-transport", + "version": "3.2.13", + "purl": [ + { + "uuid": "f737a06e-339d-5c46-a73f-81c9c73677d8", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "base": { + "uuid": "510df31a-1d97-5b3e-9694-bc3947c0ee7b", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport" + }, + "version": { + "uuid": "89b2832c-2ef5-5b53-9087-64414c836171", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07c3a663-162a-4e65-889a-d3676a877d92", + "name": "smallrye-graphql-client-implementation-vertx", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "55bf46df-83a7-511b-9197-af02d619ca71", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "517ed87a-3418-5920-9912-ceea182e431e", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx" + }, + "version": { + "uuid": "640dfcd0-b392-5f90-8062-bbfae7cd250d", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bca841bc-d672-4318-9b5e-cf783d28d37f", + "name": "reactive-streams", + "version": "1.0.3.redhat-00005", + "purl": [ + { + "uuid": "9ca00f54-f024-5caa-9f30-4155ab18ad94", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "519a38d5-9648-54c6-a0b3-90a136297f6b", + "purl": "pkg:maven/org.reactivestreams/reactive-streams" + }, + "version": { + "uuid": "09dad606-f200-586e-8c06-d8b8bebab1a4", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005", + "version": "1.0.3.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-436236e1-b6cc-4801-b85b-91204f3665da", + "name": "quartz", + "version": "2.3.2.redhat-00007", + "purl": [ + { + "uuid": "081d029f-8fad-5066-87a3-141efbb0f4fb", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51d49803-1b94-55d2-b2df-6fe01777f42b", + "purl": "pkg:maven/org.quartz-scheduler/quartz" + }, + "version": { + "uuid": "a2bbabc2-312e-5fc3-8693-1c7822a7b8b1", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007", + "version": "2.3.2.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79fb3deb-b520-4b12-b02a-65836e0e64be", + "name": "vertx-sql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "c2f3e1f5-d699-5709-b01f-152eb85b5b80", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51f109a8-9f9c-5879-ba76-bd5007005bc5", + "purl": "pkg:maven/io.vertx/vertx-sql-client" + }, + "version": { + "uuid": "339c709b-c2d2-5a41-b4a2-fb14d071f640", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b53029c-d7a3-4a63-8fc4-e544e8fd4b17", + "name": "mysql-connector-java", + "version": "8.0.30.redhat-00002", + "purl": [ + { + "uuid": "7415f789-e26b-5cdb-ab2c-c162645ec151", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "51fd0c09-98db-5805-a06e-f00fd5ecb593", + "purl": "pkg:maven/mysql/mysql-connector-java" + }, + "version": { + "uuid": "506bd86f-4e8c-56e6-95d1-37dcffb489f3", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002", + "version": "8.0.30.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fb1d45c-2bdd-497a-9dde-c97a2038df09", + "name": "resteasy-client-api", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4a7ddef6-b381-5945-ad47-cbfd5a5556e1", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5308e0d1-692d-59c2-963c-e558619a055d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api" + }, + "version": { + "uuid": "90e4526f-5cbb-512b-85a0-09dcbef748f2", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-645ffd33-df68-4b8e-8752-c467f186b88d", + "name": "smallrye-health-api", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "3bbd5075-e194-558e-959d-183121920f5a", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5362114f-2b7d-5a09-99b4-874646c77837", + "purl": "pkg:maven/io.smallrye/smallrye-health-api" + }, + "version": { + "uuid": "f20394ef-e63a-51d0-a6f0-29f864365399", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-882473b1-12c4-4d5d-ba33-92cc315687e3", + "name": "agroal-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "18d545b0-dea7-550d-90c1-f3ba29343e26", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53934f39-ce95-5ff3-bd86-3d01d1d7ad84", + "purl": "pkg:maven/io.agroal/agroal-api" + }, + "version": { + "uuid": "a72979eb-d33b-524e-9ccc-e240a4597d96", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af7b0e01-08b1-47d4-9aaa-ad27e63980ae", + "name": "netty-transport-classes-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "0ad86e44-2348-5e16-8fe3-6b2c6e7e0515", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "53935580-8eb3-5cca-8042-b56f418b9668", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll" + }, + "version": { + "uuid": "0185e2fe-f7a4-5835-b0a7-8a33b646f7ac", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67892c7a-11d4-4b7b-b46f-24a7cc8ec541", + "name": "quarkus-kubernetes-client-internal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "131c8763-37e2-506b-8272-2f24dc961711", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "540092ab-3cae-53aa-89a6-d296dbb8d666", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment" + }, + "version": { + "uuid": "d32725d7-08bb-592d-94bf-cb360139aa48", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1066e0bb-7548-497c-980b-550cc1820edd", + "name": "quarkus-spring-cloud-config-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "75e8c34f-1315-52b7-855e-302c2f9eca63", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5426860f-e318-5957-ab54-964557ec2dd3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment" + }, + "version": { + "uuid": "334f0960-51a3-5d46-b5d2-e0f57302c26e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53324b53-b65a-468c-8dee-ce6d9a08f2b5", + "name": "quarkus-resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87766195-e9b7-5bee-bbb4-6b5accfbb017", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "549ead01-246e-550d-af5c-c02dfa419877", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb" + }, + "version": { + "uuid": "ccf3e0a3-8edd-58fd-972a-9213498be91e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b5e330c-cbfc-4386-8b53-1507fb8f6957", + "name": "opentelemetry-sdk-trace", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "381203c8-3fad-5d62-bb3c-67f2ec0a0ed5", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54a2d593-7351-5957-979f-7a5d167235ad", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace" + }, + "version": { + "uuid": "c5aa6f94-5442-5009-95f9-ccc4a203e5c1", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1dbf1070-4245-407f-8739-99afeff09a1c", + "name": "cron-utils", + "version": "9.2.0.redhat-00001", + "purl": [ + { + "uuid": "d751c7db-d5c2-5de0-9a9d-15bce6159818", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "54d57ae1-4ed7-522f-840c-b034ca108474", + "purl": "pkg:maven/com.cronutils/cron-utils" + }, + "version": { + "uuid": "a1e01ec8-718b-58f5-8eff-8ab7666996ce", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001", + "version": "9.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09cf2228-b85e-4eed-a019-c8b3f0d45af6", + "name": "agroal-narayana", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "9164d8cc-1120-54f3-b052-77e977da6c13", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55632701-6122-5f60-88de-9d568e39e5bc", + "purl": "pkg:maven/io.agroal/agroal-narayana" + }, + "version": { + "uuid": "14b73442-9659-5407-8aff-06756a3e7ee0", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-02d23a48-f543-49b1-b8e4-39f2dc81edc8", + "name": "jakarta.el", + "version": "3.0.4.redhat-00002", + "purl": [ + { + "uuid": "4a562877-1a22-5da0-9474-8193b22c5799", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55cfe3d0-72f7-50f2-9281-4e37bad95257", + "purl": "pkg:maven/org.glassfish/jakarta.el" + }, + "version": { + "uuid": "324c5630-a25c-5ffb-b452-5959438aea6c", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002", + "version": "3.0.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f018766-4313-4c7a-a778-592bc26c11a6", + "name": "quarkus-project-core-extension-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4fea899-2fec-5bbc-9990-c658495b1fd7", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "55e2d8dd-e960-55c5-b8df-01bc8d7685ab", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts" + }, + "version": { + "uuid": "3d56ebc9-2182-5476-ad6a-e52329f92dfd", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5bd88525-13c2-4efd-83bc-9e340c7580b9", + "name": "smallrye-opentracing-contrib", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "d8263f27-1435-5602-a5d8-583873d47669", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "565305bc-ec40-5fa0-8782-be6bea883784", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib" + }, + "version": { + "uuid": "7321ab4d-765f-59fa-8de0-fb770831415c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-327ef349-998d-47db-8ef4-21bfe5779914", + "name": "quarkus-hibernate-validator-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "53fca636-2379-553a-8887-bc2f1d7b45b1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5684bcd5-73a6-5efe-b893-a6e0e04981aa", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment" + }, + "version": { + "uuid": "ae27d675-fd2e-5fd0-aa61-a8b0d3c84544", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44302eb6-ab14-471e-8cd9-fa07c2c2693b", + "name": "jackson-dataformat-yaml", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "11910188-0f41-589c-b1e5-859391c3bf37", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5747140c-ee04-5ce3-9dc6-4a55b090f33c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml" + }, + "version": { + "uuid": "b7898390-b4f1-5438-baa7-0834100bfb6c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3c0d778-b42f-43ac-bddc-57e743bc3d70", + "name": "avro-compiler", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "56faf797-b83a-5e19-9fd5-e66625e67eb0", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "57ef55ca-497f-5fcc-90e2-951e199d7df3", + "purl": "pkg:maven/org.apache.avro/avro-compiler" + }, + "version": { + "uuid": "f41adfdd-9720-550c-8a5e-451f38997e3b", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fddb3f35-5ca7-462a-9d4b-082e98f8d624", + "name": "quarkus-local-cache", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "5a6bfd84-25e9-5bb9-80f3-5bf876ef62fc", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "582feb4b-a2f1-5f73-b318-327d603c94d5", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache" + }, + "version": { + "uuid": "d9f2a3cb-ff6e-5612-8ee5-a0830f5ff40c", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7f5d59aa-9228-42b8-a3f5-0716163fe061", + "name": "quarkus-netty", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "555728c4-61d5-5993-8921-d117189ad0f3", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58372844-09e3-570b-aaf8-fba55058aed0", + "purl": "pkg:maven/io.quarkus/quarkus-netty" + }, + "version": { + "uuid": "1dd5ba79-e94b-5bf0-91c8-ee30962ef328", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7ee9641e-606b-4f37-935e-f53d1316c27b", + "name": "spymemcached", + "version": "2.12.1", + "purl": [ + { + "uuid": "37bc8ca8-9e46-5820-b57e-8081ca1ac5f8", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "base": { + "uuid": "58867e58-15b6-5fc2-9506-864d4b571341", + "purl": "pkg:maven/net.spy/spymemcached" + }, + "version": { + "uuid": "09289b81-c15c-5112-9330-fe9f144580bd", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1", + "version": "2.12.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-494a63d1-2553-4081-b628-344582e5b80c", + "name": "quarkus-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "b33f2337-bf0c-50cd-a5f2-5a2f5c0afddf", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "58d9865d-c59a-543a-958a-17375692b733", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core" + }, + "version": { + "uuid": "5e69d84f-b6b7-5549-b16f-43b189fe7614", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb16dc7f-bba7-4a67-9700-6dff27feba7a", + "name": "vertx-bridge-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "5cf80167-1dd0-5bc2-957a-8a19cb6c5776", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59396619-d02c-5ba3-b1f9-bbfa8f163b18", + "purl": "pkg:maven/io.vertx/vertx-bridge-common" + }, + "version": { + "uuid": "6965c02e-a531-5e7d-8e1b-789b2b3cb4c6", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1fc74701-6725-4fab-8fe7-f866c4d5ceaf", + "name": "wildfly-elytron-mechanism", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "9feed016-254e-5a80-801c-ced16b4add56", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59dc6d53-f671-55c0-9fed-a403ec55553e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism" + }, + "version": { + "uuid": "9ab3d0da-600d-50e3-b38a-cff0efc50a76", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e8152ac-4cc1-48b6-8d23-eb4cb3255786", + "name": "kubernetes-model-core", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4fdce11a-96ab-555e-8974-8506ba62179f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59f8aa2c-0a6c-5fb6-affa-925e90f043a4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core" + }, + "version": { + "uuid": "c0e499e8-23e6-5d5d-ac00-3b2077436726", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec1ccf7d-d688-44c3-93d5-19c8f6c5dceb", + "name": "quarkus-mutiny-reactive-streams-operators", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "83bc651c-5e3b-5f3f-8520-a8688a04cc69", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "59fe04c0-79a0-5b3c-a4d7-f6dc049e353a", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "bb6f86de-44e8-5c66-87a3-a43ea1193be2", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb0ce06e-581e-47e4-827d-d510bfa4f963", + "name": "opentest4j", + "version": "1.2.0", + "purl": [ + { + "uuid": "4610de5c-d407-5dc7-a2a9-9f373139a6c4", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "base": { + "uuid": "5a14bca7-0307-5a04-9d13-3e978044adb7", + "purl": "pkg:maven/org.opentest4j/opentest4j" + }, + "version": { + "uuid": "3750eae9-c5bc-5fba-81d3-593db5a35900", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0", + "version": "1.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad99df21-ce53-41e7-a1e3-5642ea5be65e", + "name": "graal-sdk", + "version": "22.3.2.0-2-redhat-00002", + "purl": [ + { + "uuid": "7d5ee777-e847-5ccf-86bd-92c1d8770c06", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5a32348e-f28c-594a-99b6-b9632e10efc1", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk" + }, + "version": { + "uuid": "a84bbc3a-9997-5d51-8780-8189e5d5835f", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002", + "version": "22.3.2.0-2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d23333e7-a577-4890-9abd-381eed4a9cfc", + "name": "smallrye-health", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "0055fc23-eb46-5a53-aa56-918df721761e", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5be8b285-93ae-5535-8958-03c7b598c8d1", + "purl": "pkg:maven/io.smallrye/smallrye-health" + }, + "version": { + "uuid": "72156f5e-115a-50a8-ac77-50e312c3d56b", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7aaacfb5-63e7-4237-8724-9885b01d69d9", + "name": "netty-transport-native-epoll", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "9ea25261-4666-5890-ba6e-276e8bc8b44e", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cbfb1fc-f145-5877-8d43-a7744abf2614", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll" + }, + "version": { + "uuid": "bd29dfa9-131f-5dcf-9e62-00d7bb0ff1f2", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "classifier": "linux-x86_64", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e726bd24-565e-4d41-8e91-4e56fcd6e092", + "name": "quarkus-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b00dc211-7861-539e-94a6-93f7e4ac03d2", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5cc62b0e-55b1-520d-b90a-ac13239ed15a", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment" + }, + "version": { + "uuid": "1eb5ef4b-78fc-57c6-bd05-6ba86de36e09", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662ce411-71b6-45eb-960a-b2026f118f99", + "name": "kubernetes-model-admissionregistration", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "378a2081-8ac3-57d0-bbef-62c04c4abf34", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5ced605b-9676-5a52-a497-3c9755412b3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration" + }, + "version": { + "uuid": "faba8fc3-a34d-529b-b832-980c95e66032", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2443fa0d-b676-49f8-b7e7-f66bd5efbbe5", + "name": "jackson-datatype-jsr310", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "dfc27339-80b2-51b1-803a-9963e3299de9", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d106360-4400-5799-9120-acffd9c66664", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310" + }, + "version": { + "uuid": "828ebe77-a249-5d1a-89b3-42c3c23e21e2", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2514077c-76f1-4ffe-af42-54d2acd59c41", + "name": "quarkus-resteasy-server-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "313cfe0a-5a18-5edf-a110-97562fcc2202", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5d484375-8861-5a41-99dd-88888b2b8099", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi" + }, + "version": { + "uuid": "07c4f418-6449-5516-b5fe-52c4f6a44b8b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93956877-d252-4010-97b0-de76cdee955c", + "name": "quarkus-jdbc-db2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "4ca8cf58-0684-51a2-804c-8e0aef6e9044", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "5dfae944-e5c3-5114-8078-8719c78e9c88", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment" + }, + "version": { + "uuid": "e51a1ef6-1e17-5b5e-b854-a5c47cb9ccb6", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-469b2356-b0a4-44fc-98f5-5bf4985b02f7", + "name": "netty-transport-native-unix-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "496d5d3d-dbcb-5267-b6e6-b487f13b1ec1", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e26ff54-86e1-5865-9120-caf4d8c675b6", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common" + }, + "version": { + "uuid": "3ac567ce-d4d2-5a8e-9920-72ae60eee50b", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0b445767-839e-4624-ab26-65dcb506cd7f", + "name": "kubernetes-model-storageclass", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "4e687003-669c-5da2-b76c-142187bc6abd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e29485b-3596-5919-b502-13dee03ad48f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass" + }, + "version": { + "uuid": "094b60b7-9399-5d1f-96b3-7fd4aad6b269", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4996d12c-26fe-477a-baf5-3f0dbe271702", + "name": "native-linux-x86_64", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "1da767af-89bb-56c6-90d4-83a65df10e75", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5e343f0f-db8a-5926-b395-6ccb63c60c28", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64" + }, + "version": { + "uuid": "3cc4b884-a84b-50e1-87de-059af2d94fdd", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59282d8f-187e-403a-9e05-7314ec2a8bda", + "name": "protoc", + "version": "3.19.6", + "purl": [ + { + "uuid": "39494433-9b0b-5f24-9876-d06d03a41232", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "5f15071d-35e7-5c64-b021-9eec0c4495b9", + "purl": "pkg:maven/com.google.protobuf/protoc" + }, + "version": { + "uuid": "d870ab0e-918e-53a1-a038-93ee01dcf798", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6", + "version": "3.19.6" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c09c869d-5268-474a-831f-85770342c411", + "name": "gson", + "version": "2.9.1.redhat-00003", + "purl": [ + { + "uuid": "8903c9c4-e868-5867-8212-6d2f7bda0479", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f3e059d-dae2-5c79-bfa7-7f6a37677f03", + "purl": "pkg:maven/com.google.code.gson/gson" + }, + "version": { + "uuid": "ad3f494e-6a66-57ad-8ff5-e287b4622d9c", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003", + "version": "2.9.1.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-232c24f7-234d-487e-ad54-d2858d7a8ddf", + "name": "keycloak-adapter-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "97655b91-4552-5cdc-ac9b-202b5a0ea6d7", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f40f6bb-277d-5fa0-93f9-06e796e33fe8", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core" + }, + "version": { + "uuid": "4e56391d-6ab2-596d-b948-9fc50345c207", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f0e6d0f-d532-4cb0-80e0-b64f4733ea3c", + "name": "quarkus-spring-boot-properties-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "d986a0dc-6d6a-51c4-8231-9a9837120bee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f6bc0da-6b43-5587-839a-850cebd3c493", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api" + }, + "version": { + "uuid": "2d645449-ffa6-5bf8-83d6-bd1832f34ec6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c85f52ce-77e9-427b-afbe-6da5e0c62b84", + "name": "quarkus-development-mode-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5ad60302-a4b0-5054-8b61-c86152920745", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5f7aae84-2005-56e5-8bdc-b961acbdcd5c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi" + }, + "version": { + "uuid": "659aaed0-99be-5089-863e-0db46385256c", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-989a7259-5837-4087-8785-249b9eed98af", + "name": "wildfly-elytron-keystore", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "d711f277-1a9e-5cb4-88fe-175e8a056793", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "5fda0f33-a528-56f7-b239-92a4231841e9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore" + }, + "version": { + "uuid": "f8265ef6-ee76-510c-9034-d2ae8327a095", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0d7a272-831c-42f6-88ab-b5a792ab23aa", + "name": "quarkus-container-image-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6f8c2a3-df85-5c2d-b8d5-0251d6f37924", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "601db209-a947-5fb0-aefe-8c2d04abda4d", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi" + }, + "version": { + "uuid": "f895479a-afcb-5f24-b750-031ab9e6502c", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cdaace3-113e-4e6a-b39d-7823e5729a1d", + "name": "quarkus-ide-launcher", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9dfbdf1f-a6b9-5c2b-b823-40b5ff3ac010", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "603b2397-3a5b-53f9-a573-1082d3fb0db7", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher" + }, + "version": { + "uuid": "94511d2c-d35c-56b5-8e1e-b5d428dabde4", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0bcd21c1-91f4-472c-acb6-5df918dfdd07", + "name": "oracle-xe", + "version": "1.17.3", + "purl": [ + { + "uuid": "04a44853-86dc-587b-9ec1-2c83e882af7f", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "base": { + "uuid": "60612c8b-f969-5a38-a0e9-7a28a3a95f59", + "purl": "pkg:maven/org.testcontainers/oracle-xe" + }, + "version": { + "uuid": "f917e815-f9b9-57c2-8a52-597c86973b94", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-840ea6c2-87e7-4e0a-a7a0-f410cfb9bb74", + "name": "quarkus-hibernate-orm-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9ce7315c-bfb1-5052-ac8d-e47197c6c22b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "606f41c2-cd4b-5475-8842-9e8b471324e7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache" + }, + "version": { + "uuid": "7b203c5c-8486-5379-815c-32ade7559d82", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85de9ba1-4af2-4360-890a-fb3c92406e4d", + "name": "quarkus-bom-quarkus-platform-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b6c91135-8813-5f4d-9939-1e16fab38eaf", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=properties", + "base": { + "uuid": "608b078a-3157-51af-b251-236ddaf13b8c", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties" + }, + "version": { + "uuid": "52723653-6f29-549e-be2c-942ebf62e30b", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "properties" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-edb45b01-68b4-4119-b050-2932d78b1f24", + "name": "kubernetes-model-apiextensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "571bfc55-62f6-5b55-9632-70df33cb81f1", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "60e46eca-234a-5d67-b519-52ccb7ff2858", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions" + }, + "version": { + "uuid": "8ce5feb9-30d0-55a9-91e4-e75a9f8e208c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ffbfa7f5-6442-40e1-adf1-3a2b65da4e2f", + "name": "quarkus-rest-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3c06c604-ba2f-5788-bf6f-71bd5d237eba", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6111dfcc-8e27-5cc1-83d3-76b1ff2f89da", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive" + }, + "version": { + "uuid": "16cba702-241d-5045-bbf4-9d68338d1d6c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-51845f32-4339-46c6-80de-e862943c0c2b", + "name": "netty-buffer", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "c1344fcb-371e-568b-b2fd-e45dcd1dfa4f", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61d29143-3655-57fd-b805-dbb97ed8a131", + "purl": "pkg:maven/io.netty/netty-buffer" + }, + "version": { + "uuid": "7333a493-f187-51bf-a9e7-4aaee8d4197d", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1efe8d48-9ca0-41f0-a8dc-3b528e0a1dbd", + "name": "quarkus-kubernetes-service-binding-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bcc45506-7904-5489-acef-542c4975a3ed", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "61ffebf8-b19a-5082-bbb9-fb68e9985720", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment" + }, + "version": { + "uuid": "0c520917-692e-58b9-9cd1-a475139a3095", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e834c3a-5981-48a9-b9d2-6499e8d9329c", + "name": "infinispan-query-dsl", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "f7671a59-4ef2-5449-9067-28f1b57414ad", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6231172c-6c53-5b10-bb05-586c07a8a214", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl" + }, + "version": { + "uuid": "bbbd2f28-bc41-5627-8147-9b1e896aea24", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f38ca008-6e30-4570-8a52-86d6310e4fff", + "name": "quarkus-rest-client-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a66cac8-5dab-586a-ba18-9a9611985936", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "624a470d-b96b-50a2-a708-cf7d986dff11", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment" + }, + "version": { + "uuid": "551becc1-3756-540d-b0c8-cf93c4221f49", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb213b59-6979-4bd2-990d-8d1eed88e165", + "name": "keycloak-core", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "52697784-2369-5ac2-b53a-3a3afa2c464a", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62a9d42e-ae59-51d3-835f-2e898069eb53", + "purl": "pkg:maven/org.keycloak/keycloak-core" + }, + "version": { + "uuid": "10c74b04-fcc3-5c4c-b778-a746fd45d629", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3448e5bc-cf5e-465a-98cd-a6fc3633b54a", + "name": "quarkus-kubernetes-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "376edac8-5252-5d52-aefc-cce4f12c94eb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "62c9ebc6-11a6-5975-a976-1f512103302e", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment" + }, + "version": { + "uuid": "f92274a5-35e5-5080-aad2-b76bb272ecb8", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b290413d-9e73-48ca-a143-5dafbb284bb9", + "name": "quarkus-smallrye-graphql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "64966b95-c985-53da-80f9-2726b77e2e82", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "633b364a-02e6-5128-8a4a-6d5375a661d8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client" + }, + "version": { + "uuid": "29c2b97d-06e2-57bb-a02a-f341c95f5187", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d3b863f-5cf1-4841-9ce5-6c2bcb4c0d72", + "name": "quarkus-smallrye-health", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "85df758c-6a7a-54d5-91dd-95fb09354950", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "63ec2a64-4992-5542-a90a-46dc9805ecb9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health" + }, + "version": { + "uuid": "f45aa69f-6389-5e57-a3a9-8d5b794e6ebf", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-71b29963-fc1b-4654-a866-a1ec76cebd7d", + "name": "quarkus-credentials", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cd908986-4f09-5cc0-9e66-892b8b57da8b", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6411d779-f8ca-5c3d-9de4-815f4afde735", + "purl": "pkg:maven/io.quarkus/quarkus-credentials" + }, + "version": { + "uuid": "4e43b03d-3dd2-5622-bf17-9c71f88f2e31", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a22bfe5b-ef1f-4a49-9ce2-315d2d1beb7b", + "name": "quarkus-kubernetes-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ebabcbfe-9983-5cd4-80df-456011f84237", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6507bc59-508d-5fe5-ab71-4b1ca01ff7a2", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment" + }, + "version": { + "uuid": "61d0ca9d-617d-526c-b0c6-c055419dbbf9", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-874c70a0-6fc7-4b15-84ee-d9d3642ef942", + "name": "resteasy-json-binding-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8c4d77eb-2dab-51b0-9528-102a58328464", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "65eff3cc-bc8d-5c05-a2b5-ac3f3b0cde37", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider" + }, + "version": { + "uuid": "1cc79c9d-c071-5a3a-9d85-69e3047bb230", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0d09ae13-4a8f-43ec-b757-d7c7097d61ad", + "name": "jakarta.enterprise.cdi-api", + "version": "2.0.2.redhat-00004", + "purl": [ + { + "uuid": "fbbc884a-6ec2-576e-a50f-a10d73d0ee06", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6619743e-6130-5156-a8ae-fed2070864ce", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api" + }, + "version": { + "uuid": "8495f1ca-a6c4-58fa-9b63-5a7555971a85", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004", + "version": "2.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4e179fc-c681-47af-b0d8-c52d96bf1ea9", + "name": "quarkus-spring-data-jpa-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a8df2c2-0c79-5645-ad98-f7e19aebd0ae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "66bc1f0d-d9d4-5d6d-8d12-b8be47537cda", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment" + }, + "version": { + "uuid": "dbce6f46-e85e-55a1-b74e-c7151a0c9cb4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3bbacd3-f091-424f-939d-c1378ecb782d", + "name": "quarkus-spring-data-jpa", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b44663e0-9ee5-5f36-916b-eb00f62a78f7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6740305e-0e0d-56ae-99c8-caf035a7c670", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa" + }, + "version": { + "uuid": "efd2a5fe-ab1a-5bc6-acdb-cf4389e7edd1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-900fd262-73ff-46cc-bd79-f1f817daa42b", + "name": "jandex", + "version": "2.4.3.Final-redhat-00001", + "purl": [ + { + "uuid": "950e041d-bfb1-5b69-9e00-5439c44e1057", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6742c44d-8db5-58fc-8168-7801a3b2186c", + "purl": "pkg:maven/org.jboss/jandex" + }, + "version": { + "uuid": "5984179d-9fa7-5d9d-bcc5-a75c3f8d204e", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001", + "version": "2.4.3.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95afc792-7837-42e5-957a-0453d7214761", + "name": "vertx-pg-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9b9a1e79-1c1a-5238-96e7-9f5ccb083e18", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67432040-8f2d-5189-8f40-b09a8d02755f", + "purl": "pkg:maven/io.vertx/vertx-pg-client" + }, + "version": { + "uuid": "c7a2d74c-6be4-5b79-8751-d06474ae7f9d", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d970d8df-3374-467d-b60a-aafc4f585375", + "name": "junit-platform-commons", + "version": "1.9.1", + "purl": [ + { + "uuid": "2c3a3b40-853b-5077-bbb2-435123a30258", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "base": { + "uuid": "67b1386d-254a-5ece-b129-eb597f1e1deb", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons" + }, + "version": { + "uuid": "4a52909d-8398-5466-8d42-93061b06d318", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3bc6d3e3-241f-4ab7-bc35-51208980491e", + "name": "jaxb-runtime", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "ed3d104a-3f3a-575b-88cf-03023fb7605b", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67bed404-1454-51c6-8684-da4ae088a69f", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime" + }, + "version": { + "uuid": "05cd989a-547f-5868-b736-1308b7b80b51", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2a73043-6937-4489-9298-1df0dfa993b4", + "name": "quarkus-resteasy-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b928e8e0-0d90-54c9-a1f3-d6e1299ab896", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "67eecca9-6db1-5bd3-af32-003cdd1c1d47", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment" + }, + "version": { + "uuid": "ac361a7e-f8b1-58e4-990e-8f215a993578", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29542f45-c41c-4b8d-883b-a39485ad5cb8", + "name": "rxjava", + "version": "3.1.4.Final-redhat-00001", + "purl": [ + { + "uuid": "2eaaf013-b411-565b-b8eb-18f3f3763277", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6801be6e-a65a-51ad-b89c-acdc7a3df18a", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava" + }, + "version": { + "uuid": "625e11ff-73ec-5ba1-881c-b10ce6ed7d59", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001", + "version": "3.1.4.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb769aa7-79a8-4027-85f8-663a6e608e7a", + "name": "quarkus-resteasy-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fee6d74f-1ea6-5777-8b11-d7bb3da3f049", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "681cab9b-59b4-560f-a2f5-114ff84fb40e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment" + }, + "version": { + "uuid": "572b5e60-54b8-5150-b13d-0ad9285f22f5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22ddd669-6b59-4f75-9456-4107da25a846", + "name": "quarkus-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d51b6412-27bf-5cc5-b320-a4b042f6602a", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "685f9310-4963-5b61-81c3-e24794bebdb9", + "purl": "pkg:maven/io.quarkus/quarkus-datasource" + }, + "version": { + "uuid": "59f283e2-3341-5876-8371-8ea3d5a58ee4", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-546b6b7f-8ea5-4b1b-a68a-a2cfb81894a1", + "name": "quarkus-oidc-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "781835bc-e503-5bbe-8bca-d5f67ccc8a47", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68a69722-24d6-5a5f-87d1-3d8ec913a712", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client" + }, + "version": { + "uuid": "19f17aa3-1193-51bb-a069-9d0d5505ccab", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67c75e67-7962-4288-addc-33e4ec2a6a50", + "name": "quarkus-kafka-streams-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6748482-0c44-5bdb-9443-63c1f56f2e0c", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "68eaa406-15e3-5cf7-9b9a-609af9365262", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment" + }, + "version": { + "uuid": "2c8b74a8-fd93-5db4-b3ff-832258c95c92", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1bc42089-2b10-4860-8310-3ed8552b7f74", + "name": "quarkus-spring-boot-orm-api", + "version": "2.1.0.SP1-redhat-00003", + "purl": [ + { + "uuid": "97fbeed8-1e42-5de9-b8b8-df0a6386e946", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69273b34-277f-51e3-8a32-658733b7a4c4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api" + }, + "version": { + "uuid": "54e40ab6-e7ff-5088-b920-e7e18602fe92", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003", + "version": "2.1.0.SP1-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40185843-cb91-41c7-bd7e-5d66109b8664", + "name": "junit-platform-launcher", + "version": "1.9.1", + "purl": [ + { + "uuid": "313d02d5-5084-5a08-b96d-6b6a1d20be42", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "base": { + "uuid": "69425e1a-b7f5-5b26-92a6-5b93c1a5b64b", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher" + }, + "version": { + "uuid": "77445020-786a-5f95-949f-ed961ac2f54d", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1", + "version": "1.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6e8531f1-ed6d-4fbf-8715-7955a4984ec9", + "name": "quarkus-devtools-codestarts", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a326ce23-4646-5471-84ba-bd3eeeba3e33", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "695d2180-1c51-5de5-82bb-54269d863059", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts" + }, + "version": { + "uuid": "3de59fcf-681e-5a6c-9242-84eed01e02ce", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43d0d50e-9b24-45ec-8e25-8035ceab6e69", + "name": "kubernetes-model-metrics", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e75d0677-23e6-519a-8793-30ab86a3c243", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69aebc2f-fed4-5ce5-9e8b-788852eb20ed", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics" + }, + "version": { + "uuid": "0bc88814-1d67-5b85-a2d1-5c99302a22bd", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-220d857b-a0b9-4588-b0e2-b97e38aa1777", + "name": "quarkus-hibernate-orm", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b90207c1-91d5-575d-8df7-4c5e39e07035", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69c179e4-10ed-52ab-81f5-60806e45ff33", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm" + }, + "version": { + "uuid": "dae9dba5-ef0a-589c-92fc-b3642379468c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6b38c8b-5d49-4c21-8abf-19fe7964025c", + "name": "keycloak-common", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "c38f1ef6-8671-5ad2-9e3a-e966e770f78a", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cb9323-c2d1-5cc9-b6b3-b23cc3a4c3d8", + "purl": "pkg:maven/org.keycloak/keycloak-common" + }, + "version": { + "uuid": "458ce47d-7022-500c-b4de-6a6dbb040239", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61297055-dc7c-4de8-83e0-49d8c789bafd", + "name": "quarkus-spring-di-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b09381c0-2bac-57a1-90fc-450d374d2e14", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69cd910a-9ca2-5f74-aafc-2922fe1337d4", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment" + }, + "version": { + "uuid": "a0bebf09-db58-5a6b-922d-8e63a2a41dfe", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-88843e4c-c6ec-4599-b536-70f02bba4af3", + "name": "quarkus-smallrye-jwt", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e6cf2155-c2df-578c-b569-62a6d85f2f9f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "69d6bb9e-332e-5c9f-9fda-bdfdad05e926", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt" + }, + "version": { + "uuid": "d3f33244-139a-5c32-b81f-e550a54a7c7e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5734020-fb86-4e28-bdf3-47bb24c92d31", + "name": "smallrye-opentracing", + "version": "2.1.1.redhat-00002", + "purl": [ + { + "uuid": "982036ee-7144-50d1-b9a2-2977e35f3531", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a069c22-e7b2-58fc-b3eb-d6c1d6699729", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing" + }, + "version": { + "uuid": "027c3b52-90e7-564c-9a17-37f874419f8c", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002", + "version": "2.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7c6551ff-1922-4fae-8d02-abab1e899a66", + "name": "maven-plugin-api", + "version": "3.8.6", + "purl": [ + { + "uuid": "92f8ee96-4cd2-5524-b789-c7e6b1e90e8f", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar", + "base": { + "uuid": "6a12214f-a156-5640-a85e-bacdfb221f40", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api" + }, + "version": { + "uuid": "be16d939-3461-57ae-b588-acdf71d658c7", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-31fcf658-c25e-4e09-be93-432cb9b3dfe7", + "name": "maven-resolver-provider", + "version": "3.8.6", + "purl": [ + { + "uuid": "e4b37c2a-de76-5223-bf39-2e448ace98f0", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar", + "base": { + "uuid": "6a236f87-4bb8-5e29-932c-349f97815885", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider" + }, + "version": { + "uuid": "dcf94c4d-ff12-5b69-af8f-97c655ea3008", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2098e3c2-f2b5-4825-94fa-27bc00d73abe", + "name": "quarkus-agroal-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "26052c2e-e865-5ff1-b9db-297e28cdf07d", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6a84b29e-4eb9-53cc-afac-2616eb070f5c", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi" + }, + "version": { + "uuid": "015918b6-1eeb-5e10-a6dd-4d3c7022d4ed", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b11f4233-a6e8-4b78-b5fe-35909c0a6216", + "name": "smallrye-reactive-converter-api", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "7aa1fc1e-e70b-5a75-a5ad-93e22fed784b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ab0fd1d-be84-51a8-8b5c-9005df830405", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api" + }, + "version": { + "uuid": "028d6f78-298d-5cfc-b572-8398826aacf2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4d8e403-4159-44be-9f8e-6386573e580d", + "name": "org-crac", + "version": "0.1.1.redhat-00002", + "purl": [ + { + "uuid": "c320d7cd-50f6-570f-9560-533d42edf934", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b05cbdc-2f3d-551f-80d9-368cea627c44", + "purl": "pkg:maven/io.github.crac/org-crac" + }, + "version": { + "uuid": "ae93cb94-66ad-5c5f-8314-4ee9e60da1d4", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002", + "version": "0.1.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fed4b130-efcd-4ef1-8836-26b7b5cea154", + "name": "quarkus-jdbc-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ea086e9b-f88e-53a5-9ee1-c7f8ad45f58d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b182f90-d410-58a3-ac06-c131126a9732", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql" + }, + "version": { + "uuid": "c099b094-1ff5-5e8a-a2d0-b435756eff22", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-712bad94-5c03-484a-9d6d-48bdb5ae7907", + "name": "kubernetes-model-coordination", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7d21d6ac-21fe-57bd-9673-1d99de28c2bb", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b193b4e-4737-5a47-91a0-83bf0f8f9a16", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination" + }, + "version": { + "uuid": "763a407c-c87b-5f97-9d9d-c2099403bee2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7436880a-b688-4e53-9a1d-059439f90c5b", + "name": "quarkus-jaxp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b9a5a210-7483-591a-b0e7-03c1b6d69a18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b1b957d-a2f3-54c1-b168-9c6bdfd63634", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment" + }, + "version": { + "uuid": "fd21c841-7149-5283-a472-9c140de833d3", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7146d491-de76-40e0-b9f0-380e3c4096d5", + "name": "wildfly-elytron-ssl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "bfdbd2b2-d7e7-5c92-b3ff-5782ece82961", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6b920a15-41f3-518b-8d14-94605ddfeeea", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl" + }, + "version": { + "uuid": "6beec024-d9b0-564d-bcf1-4e11bb2fdafa", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-940e26c2-1b38-4b6b-86ce-610ad349447a", + "name": "quarkus-maven-plugin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dd5cadb4-0a04-5aad-a4ed-5a1c1ee2f019", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6ba3b95f-dd9f-5213-9c30-fd2fe57d104a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin" + }, + "version": { + "uuid": "5355eb2e-2bd0-5462-8dbb-df577008899a", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfc56126-e2cd-4789-a4c7-81b97fa975ac", + "name": "smallrye-common-os", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "f73dbff4-27f8-54c9-88de-abd56e2001bd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bb69edb-7ee2-5c6f-b3c6-0691d5b5dafd", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os" + }, + "version": { + "uuid": "113c1eec-0c95-547d-ae45-9a203dbc1b27", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc5df4fa-1d77-40f3-bf66-34fc9fa1bc52", + "name": "quarkus-rest-data-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6cfa5672-5d2a-53bd-9b97-ea41cccac1e1", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6bf685d7-274d-5000-aa13-d9e508197601", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache" + }, + "version": { + "uuid": "b1a3c4e9-de8e-5a31-84b0-1a06acd4338d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ad0b8ec-0237-49ca-acee-d4c8938d30ff", + "name": "quarkus-smallrye-stork", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0b78bc76-e6d4-59b2-8fb6-6940a523c0b8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c17e661-bf0b-50bb-b566-736d8851e3d3", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork" + }, + "version": { + "uuid": "4e553315-531d-5d64-a401-716b1938301d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be2c8d3f-f2cf-4805-94fe-737dd12f4721", + "name": "quarkus-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "15445e75-f052-5dfc-b4ab-63ff74f4bba6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c68269e-589c-5bca-8a88-e09700b75e18", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb" + }, + "version": { + "uuid": "59dd6f31-ddc9-5ac5-a30e-17dd349958a0", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2162d8be-0f8c-42ce-8ded-0003566fc076", + "name": "guava", + "version": "31.1.0.jre-redhat-00004", + "purl": [ + { + "uuid": "bfb052a5-011e-533a-bd18-806445f6d9d9", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6c75680f-b140-59c3-9b52-397243d2b489", + "purl": "pkg:maven/com.google.guava/guava" + }, + "version": { + "uuid": "7ede0c6f-105b-5966-a852-502c45f19844", + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004", + "version": "31.1.0.jre-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39103775-fc22-4aae-bca6-c91989c8b438", + "name": "quarkus-resteasy-reactive-jsonb-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6035ecba-96b8-591c-8529-68468c94e5b2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d3faf65-3cba-5f4a-af93-fbbc9e494e26", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment" + }, + "version": { + "uuid": "030135a4-e2f4-509f-bee5-97dcd8da13d2", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-79a49f73-f087-4a3f-80ec-cabd0b66d353", + "name": "quarkus-opentelemetry", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "875c4b2f-35f9-514f-a92d-98e3a9469252", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6d569531-d78b-5e63-a709-c526212a1b73", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry" + }, + "version": { + "uuid": "93155d5d-f059-5518-b74b-64353b6478b2", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9dc13228-fe20-4490-adb5-90be2bb678de", + "name": "netty-transport", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "4b4743bf-08af-5e85-ba49-089e61524d69", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbb1cee-48a4-51c3-b0b8-bde2f82066ff", + "purl": "pkg:maven/io.netty/netty-transport" + }, + "version": { + "uuid": "0a7f07a9-1246-5f82-b2a5-9db1253cae88", + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0d5fcc1-6f79-4c99-a25a-71589268a756", + "name": "opentelemetry-sdk", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "dbfa7238-76c1-5b63-bf89-06b2f9939b7a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6dbf9715-51d3-55c8-b6d2-9c101aa7e85b", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk" + }, + "version": { + "uuid": "476c4a43-d319-5bab-8541-7a2ac012a520", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b570be0b-25ed-4127-9643-16234239e2e6", + "name": "quarkus-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9eb64eb8-f576-578d-8d3e-04199b7a1e13", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e0f56bb-62cd-506f-8ad3-e5bf3a281056", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment" + }, + "version": { + "uuid": "44a3bda2-7dd9-54e3-9391-cf4f712e3aa8", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78f2a277-47d6-4d5a-b5e1-b410ffcded3b", + "name": "quarkus-scheduler-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fef6935c-7bb1-55f8-8530-638867de5d76", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e1f2194-d4bb-5499-9480-92ab9e1d8d0a", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common" + }, + "version": { + "uuid": "d0678b0d-9604-5b87-8663-53e56bfc8655", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3564a3f1-1f35-4710-869a-27b0dcab5f4b", + "name": "jdom", + "version": "1.1.3", + "purl": [ + { + "uuid": "d079853a-3305-575f-adbc-7edc8be35211", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "base": { + "uuid": "6e3f0ca4-44c3-538c-82ab-902ae4c75b3c", + "purl": "pkg:maven/org.jdom/jdom" + }, + "version": { + "uuid": "d354582c-5665-554f-93f4-d28a755e13d9", + "purl": "pkg:maven/org.jdom/jdom@1.1.3", + "version": "1.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-427a29d6-57fd-4675-8de3-cc6987fc7eef", + "name": "quarkus-openshift", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f63fe058-0590-596e-8259-30e03afa9301", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e7521fb-48f6-51f0-befe-83f9bebe57b5", + "purl": "pkg:maven/io.quarkus/quarkus-openshift" + }, + "version": { + "uuid": "8fede6ab-953b-5faf-b21d-7b6aa450de9a", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8a72cbc9-6e68-4032-afa1-66eef5d0cb24", + "name": "zstd-jni", + "version": "1.5.2.3-redhat-00002", + "purl": [ + { + "uuid": "dee3c89f-4328-5d53-b763-f37616793471", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6e850260-f58e-561d-b202-d0d61360d643", + "purl": "pkg:maven/com.github.luben/zstd-jni" + }, + "version": { + "uuid": "b2105c1f-2f61-5b9a-91f1-d07862e08e74", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002", + "version": "1.5.2.3-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aebaf362-a78e-4c0a-aa0c-9a0e1c7da821", + "name": "quarkus-undertow-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "adf147ea-6b5c-54dc-93fe-860919414c11", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f483e38-83ee-530a-86c8-682f04cc99b0", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment" + }, + "version": { + "uuid": "0863688e-215b-5901-ac85-71676e8605ce", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69b1ef68-56a1-4208-bc48-4413926c5c5d", + "name": "smallrye-graphql-cdi", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "c3f8ea2c-3029-5298-a9e0-c295a2341efe", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f616adc-43bc-5cd4-8be1-556cd84ca2e7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi" + }, + "version": { + "uuid": "9b4482cf-11f0-57d7-acff-456183a72348", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7d36a76f-199f-43ee-82cb-7e1e6d21efc5", + "name": "quarkus-oidc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8c732e8b-08bf-5065-af2f-fc8de5ee76ef", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6f80022c-2e29-55c0-b2ff-147a7fdcb1fa", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common" + }, + "version": { + "uuid": "beec90c4-1d47-54c4-a25e-06049a3d8516", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a8cff30-f924-42bd-b6e7-cca68547f433", + "name": "quarkus-smallrye-reactive-messaging", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cbdcb5a1-e1a4-57c6-8713-035ad9df9b46", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "6fb5f32c-191d-54f6-84f2-9275e4a8b23b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging" + }, + "version": { + "uuid": "eef1a569-0e0f-524f-a853-4940e43bd381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff0aa3aa-63a9-4657-a8a9-e2d867bd88ee", + "name": "kubernetes-model-node", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1bcf7a97-269f-5edc-b349-eb4cd0964d3f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "706993fe-aec9-5e95-ade3-63d3e788bea2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node" + }, + "version": { + "uuid": "a1279cc9-d1d1-542f-9647-1072da59d1d2", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68ae0f2a-018b-4eb4-86da-43832b8d89e9", + "name": "netty-codec", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "adfeb0c7-f3f8-5785-b3c5-a4baf26c16f0", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "70bb8124-bc03-5917-ab6b-5112011967e7", + "purl": "pkg:maven/io.netty/netty-codec" + }, + "version": { + "uuid": "7e3d3cb5-fcbd-510b-9c67-6145b6af291d", + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-598a20c6-0049-491d-84e8-6ff13f64ad7d", + "name": "hibernate-validator", + "version": "6.2.5.Final-redhat-00001", + "purl": [ + { + "uuid": "8e6fd706-05d3-55fc-881d-4a543f0a9363", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "71092309-966a-5639-8169-cefc7adec58e", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator" + }, + "version": { + "uuid": "44fb29d2-e02d-5dde-8a6c-b5e96645860a", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001", + "version": "6.2.5.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e8c649c-4daa-4d88-ab09-311a23e90574", + "name": "opentracing-api", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "fa03d3cb-872e-5fbc-8e31-27d19c612129", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7112cfb1-9b75-535d-af0b-4f972fbdbb4f", + "purl": "pkg:maven/io.opentracing/opentracing-api" + }, + "version": { + "uuid": "9b3c4fd1-c21d-5658-bc82-a41a46e44825", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90a21179-df5f-40e9-bea7-536902823476", + "name": "mutiny-reactive-streams-operators", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "ac833ea0-5064-57a6-a41d-1a84b534af62", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "713c0a55-957d-5142-b0ab-ac99f13c53de", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators" + }, + "version": { + "uuid": "1d92ad6d-e0cb-5121-b70b-1f587f925b36", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e6335a8-5e9a-4615-854f-0cee3ea8f9b6", + "name": "smallrye-fault-tolerance-autoconfig-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4bcc8b58-97c9-5c15-be94-8b35d5a9a555", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7160cad5-2481-5693-b825-accdc5679aad", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core" + }, + "version": { + "uuid": "abba4993-6de8-52cd-9594-3c3fe0e35e01", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d2b7bb8-d559-4fa9-b5df-ac6391715916", + "name": "bson", + "version": "4.7.2", + "purl": [ + { + "uuid": "d2052552-599e-5365-8f49-c3560f2ca1a0", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "base": { + "uuid": "71e7fb3e-683c-507c-a773-aaebf3a5b654", + "purl": "pkg:maven/org.mongodb/bson" + }, + "version": { + "uuid": "ef0187e7-4231-5235-97ab-ba5b1c167034", + "purl": "pkg:maven/org.mongodb/bson@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-262ebcf1-72e1-420d-8c35-db55339f3386", + "name": "quarkus-hibernate-search-orm-elasticsearch-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee6c349d-9542-5e7b-a63d-1f79e5c6097f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "723a9e99-126e-5f6a-a9e9-ce835bca17af", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment" + }, + "version": { + "uuid": "23e9428d-af34-5eb2-a567-a05046922d36", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2819edf2-2c10-4ddb-92e1-f3d904873e9f", + "name": "smallrye-reactive-converter-mutiny", + "version": "2.7.0.redhat-00001", + "purl": [ + { + "uuid": "bb0ae7ea-f27d-59fc-9b13-dcb1c5e9397e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72774ef6-6732-5d35-8401-870df4847e89", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny" + }, + "version": { + "uuid": "eb01c8d5-43c1-5ea9-aa8c-5b5c43c592bb", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001", + "version": "2.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7996bd7c-f79d-4802-869f-e56d1c3c2694", + "name": "quarkus-http-vertx-backend", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "4bca5ada-fcd1-5d9a-b209-9936dbbdc512", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c84524-8559-55f7-aea4-caa824065441", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend" + }, + "version": { + "uuid": "c05511fa-bb6f-5d8d-b1ea-5b2bf84202f0", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-700b4701-3be3-44c6-9aea-0cce2eb42b25", + "name": "grpc-protobuf", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "9d839873-a196-5b7c-b437-5f40558b8884", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "72c99360-3c94-53e8-8f12-015f833f6bd1", + "purl": "pkg:maven/io.grpc/grpc-protobuf" + }, + "version": { + "uuid": "42a77ee6-5e39-5576-8a7f-db1a70c1a821", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6840471b-3772-4c44-9e65-8832a2770ad1", + "name": "junit-jupiter", + "version": "5.9.1", + "purl": [ + { + "uuid": "9c0f8b7f-1c21-506d-8929-e65472d94bf6", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "base": { + "uuid": "72ccf629-6fc1-5032-a127-806f7465e594", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter" + }, + "version": { + "uuid": "b2a5d287-084a-5d87-bc47-31f3f1602235", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c074a622-b88b-4524-91ee-c76ac578fe57", + "name": "jdbc", + "version": "1.17.3", + "purl": [ + { + "uuid": "9c8ac9de-ab66-5d1d-9bea-32c1012dd62e", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "base": { + "uuid": "7343d594-acb2-5bfc-9c6e-7eb4c7795fd8", + "purl": "pkg:maven/org.testcontainers/jdbc" + }, + "version": { + "uuid": "bc6cad07-e279-51a1-bd77-de97106246ff", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0eb27c33-c07b-4534-ae34-ea73e336dc64", + "name": "quarkus-reactive-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da5db5f5-c917-56c7-a30e-4b25a76ab42e", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73622207-8ffd-5713-9aab-e1f402d3794c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment" + }, + "version": { + "uuid": "42aa7bfb-20a1-577a-b70e-b458238b49c4", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-793c32fe-321f-4132-bab0-5439d9369da3", + "name": "quarkus-smallrye-health-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d15f2d6f-fa63-58b1-8477-c51099005fa9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f0aef9-e57a-52f1-94ff-ac68cec074e4", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment" + }, + "version": { + "uuid": "45e1bd90-8585-5ea7-bc51-a20005f69f85", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3c7e8b0c-9546-4d49-8f0f-9778360059c1", + "name": "apache-mime4j-storage", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "443a0acd-bcea-5d18-baa7-bdaf5593edc1", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f1aaea-82a8-5779-91a5-8a46783bbc81", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage" + }, + "version": { + "uuid": "a81f3579-ba71-5100-a895-3a2ccbf00c71", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7abc95c2-9863-4033-ad0f-8d8c1a43e49d", + "name": "smallrye-context-propagation", + "version": "1.2.2.redhat-00001", + "purl": [ + { + "uuid": "50d9030f-8107-5b7f-896f-4aa3f51b668d", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "73f5d37d-fc72-56bf-aa15-0b16599bc43b", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation" + }, + "version": { + "uuid": "73aa5be3-85de-5a27-a71f-484c9d1908fe", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001", + "version": "1.2.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8dbcf3-62a3-43a4-b4f6-c6bef0ff407d", + "name": "quarkus-grpc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b08a514e-d85e-5351-9475-c103a5c07241", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "74081d31-78ee-5bf3-8cfe-23a3c95b6cdd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment" + }, + "version": { + "uuid": "5f26769a-2465-5f70-bc07-d25cd408ce2e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f6874c6d-5c5b-4bfa-9da8-cc8e24353853", + "name": "plexus-component-annotations", + "version": "2.1.0", + "purl": [ + { + "uuid": "908ca1ca-3fdf-51a0-aed0-941eae6ad695", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "base": { + "uuid": "75f85b67-cf13-5b3b-ad63-462428e43d19", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations" + }, + "version": { + "uuid": "bcc6d15f-9733-5c17-8a6d-232921289359", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0", + "version": "2.1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb03062c-5a39-4e44-9a4d-a057810b0354", + "name": "maven-resolver-connector-basic", + "version": "1.6.3", + "purl": [ + { + "uuid": "3a363077-fd64-5f02-b42d-56c3c4f0691b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "base": { + "uuid": "7631ea21-bcc3-5f13-ad73-a907eec1ca5b", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic" + }, + "version": { + "uuid": "2b478fed-6e7e-5804-9140-b233d06548e0", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a71fb1aa-3541-4406-8b45-1f9f1ed37e84", + "name": "bcprov-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "46ca2115-c0c2-54ff-b528-7ff675dacd06", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar", + "base": { + "uuid": "7642fc54-068f-51d8-8a95-345b6b889e51", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on" + }, + "version": { + "uuid": "8e026edb-4e41-5a6a-84a1-539ff4eac077", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0baa6c4a-8958-464b-81da-eabefb6cdb6a", + "name": "grpc-stub", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "85caccc3-d88e-5377-85ee-5f176331a715", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76713adb-07c5-54a8-bede-37d9fa603645", + "purl": "pkg:maven/io.grpc/grpc-stub" + }, + "version": { + "uuid": "17126315-21a4-531e-a16b-6a67ed839b87", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-da73a39c-ca55-4fa6-b23a-a741d7088e2b", + "name": "apiguardian-api", + "version": "1.1.2", + "purl": [ + { + "uuid": "63b40fdc-b07c-5cc8-a646-4083fc7b0e0c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "base": { + "uuid": "768a5bb2-30f4-5bba-8e0d-0dcdc9fc323c", + "purl": "pkg:maven/org.apiguardian/apiguardian-api" + }, + "version": { + "uuid": "88d1bc5f-44f0-5ce4-ac56-ab3d82c38999", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2", + "version": "1.1.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe9108a3-e536-4c11-a755-ae1ea344e52a", + "name": "jakarta.el-api", + "version": "3.0.3.redhat-00002", + "purl": [ + { + "uuid": "d3936534-460e-51b5-a6b4-df85c9aaf90b", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "76d15f92-a1cc-56a2-a688-530d7984bbfe", + "purl": "pkg:maven/jakarta.el/jakarta.el-api" + }, + "version": { + "uuid": "b9236167-4fa9-57c0-9294-270a7fb0ecf0", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002", + "version": "3.0.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f6e6a08-d7bd-4ecf-9a8d-8e037cb00f37", + "name": "quarkus-hibernate-orm-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1245d5f-a29f-5dbb-be97-44230b9486d0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7748af30-7cb4-59b4-895f-cb46016bbb72", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi" + }, + "version": { + "uuid": "6f021625-a14e-550d-ba6e-5908cb7aa320", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5f56b9ee-c7e3-48ae-8a81-9f79f5d45d01", + "name": "resteasy-client-microprofile-base", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c7cebcb8-9491-5222-94d3-51037213f402", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "781cbb78-c573-5384-a2be-6554232dbecb", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base" + }, + "version": { + "uuid": "77aa2c60-745f-5207-b89c-ed47bc3e75f8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53c8a70-b451-417f-9f6d-4e6b485c343d", + "name": "org.jacoco.agent", + "version": "0.8.8", + "purl": [ + { + "uuid": "c7e9bca9-1c41-5a5a-95fa-bacb96e2ca0b", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "base": { + "uuid": "7847d718-c311-5427-9f9c-32b6b8a57f6f", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent" + }, + "version": { + "uuid": "43d48287-d0f4-556a-aa28-bcdf1a1c4ab7", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2d10e08f-f4ce-48ac-9fc9-95368af46518", + "name": "jsr305", + "version": "3.0.2.redhat-00009", + "purl": [ + { + "uuid": "8c331a97-3ace-5c68-8a2e-522513a1ebd9", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "784dfa29-c06d-5c73-8bd8-f85afb387e6e", + "purl": "pkg:maven/com.google.code.findbugs/jsr305" + }, + "version": { + "uuid": "79950bd4-2e43-573d-a258-8ca19af6de06", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009", + "version": "3.0.2.redhat-00009" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3ade8ee-d85f-4276-9d10-20710425a18e", + "name": "quarkus-spring-webmvc-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "e96c0377-ba3f-5171-b59c-07c61d3b6525", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "790f380c-394b-54fa-8ac8-52c1ead62e4a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api" + }, + "version": { + "uuid": "df271e6f-3c83-58ba-b36f-aa085ab926ee", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b53688c7-4cc5-43c3-8213-460158f9fdca", + "name": "jboss-logging", + "version": "3.5.0.Final-redhat-00003", + "purl": [ + { + "uuid": "8702ac72-a5b6-531a-a27b-b8cf1a7faac6", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79b4244a-dfe1-560e-8db7-28b3551a7ff3", + "purl": "pkg:maven/org.jboss.logging/jboss-logging" + }, + "version": { + "uuid": "dd0f6b2f-f3fb-52c3-aaa3-690ac1732154", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003", + "version": "3.5.0.Final-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f8363ae-c138-4c8f-bc91-95971672d8a3", + "name": "mutiny-smallrye-context-propagation", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "d35f891b-8150-51c2-ba30-eb3d93fa3169", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "79c272ec-81f8-510d-a1c8-0380cf22c5cf", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation" + }, + "version": { + "uuid": "94fc8bef-011b-5c31-8528-503ef30de5e5", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5a5ec89d-f1fd-4cd1-9990-fbe4d4e76f71", + "name": "openshift-model-machine", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "12e5bce1-333a-5574-bde6-021d62376811", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7a8953c1-1781-54cd-9ec8-0f2579ddcbc7", + "purl": "pkg:maven/io.fabric8/openshift-model-machine" + }, + "version": { + "uuid": "b5b42f31-fde6-5dc3-b8f7-3cb7178e08b9", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80a38ed5-1071-4547-8e56-7ef6bb55b058", + "name": "quarkus-spring-data-rest-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32594038-85b6-51ee-95b1-006283768db1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b1c876e-1842-5634-af41-eac112702f5d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment" + }, + "version": { + "uuid": "bcc259db-cc4d-51a0-a419-d9aebfa0644b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e155be86-3227-4103-9edb-77bae78824cd", + "name": "quarkus-spring-boot-properties", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e28ec0c-4664-5492-b2f4-da4dc7b229bd", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b7f25df-d67c-548d-add2-633689b5cfa7", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties" + }, + "version": { + "uuid": "2e26faa7-a8d1-50f7-a1d3-25c337ec6e66", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-870db237-fa6c-4865-8985-f52fb4a99c2c", + "name": "quarkus-jaeger", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c63c3edd-d82b-5d24-b833-dd95390a3153", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7b85a659-89e9-525b-89be-2647ff8f425b", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger" + }, + "version": { + "uuid": "caec611e-23ed-5414-a897-abf59900d67c", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50955954-8217-4237-a08f-68bfc83b971c", + "name": "openshift-model-installer", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af503388-25cf-5931-97ed-fdcc4aae8143", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7bbde0f4-12e3-5cfd-ab51-a7482699ccfb", + "purl": "pkg:maven/io.fabric8/openshift-model-installer" + }, + "version": { + "uuid": "44fe3466-a1ff-5364-a89c-32bfb776feec", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e1dde70-a999-408b-8a90-cc83ef6f1c07", + "name": "resteasy-core-spi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "75fa697c-8e3e-5d66-b711-2701ccec0327", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7c4109fb-de8e-543d-9c34-54521f2c403e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi" + }, + "version": { + "uuid": "c2fbe820-c693-559b-8e3e-975c1ec6cab9", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98102101-e190-42ae-8f59-37df41c16a2e", + "name": "shrinkwrap-resolver-api-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "ac72a825-c315-5afd-ab58-ec67db6a33e7", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "7cd84e26-98b1-5f9a-a1cb-bf281296d027", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive" + }, + "version": { + "uuid": "c9a3f517-93ab-5bc9-abc8-1b8908febe44", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4cf10882-86ca-4f70-b107-d3c803a4f7b9", + "name": "shrinkwrap-api", + "version": "1.2.6", + "purl": [ + { + "uuid": "42142d15-f0c9-55d9-b6a2-d54d46af3be7", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "base": { + "uuid": "7ce34e5a-c4cb-5bcb-bc75-5a4785c250a1", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api" + }, + "version": { + "uuid": "63f5d097-4d50-572a-8a0c-2e1b1670d4e9", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6", + "version": "1.2.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2e3afd81-cca0-4f5b-821e-3a114413ce41", + "name": "mchange-commons-java", + "version": "0.2.15.redhat-00003", + "purl": [ + { + "uuid": "bc9b40a5-37d5-5d2e-9c21-3a5ecd99b4c6", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7dd51fc6-0eb8-5f50-bb7e-df5f609cb716", + "purl": "pkg:maven/com.mchange/mchange-commons-java" + }, + "version": { + "uuid": "0e7b4990-1b13-5265-91ed-be79950109df", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003", + "version": "0.2.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d147b19-9b71-4da7-9e42-c0822e8136bc", + "name": "smallrye-reactive-messaging-health", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "6ed7cec9-7053-5fb3-83e6-615fa6a23ce4", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e27bc44-c491-533a-be41-ab307808b858", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health" + }, + "version": { + "uuid": "77f02034-c129-530e-b867-b9516f66ca0b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e4bae24f-a93a-4442-8271-183631f43ead", + "name": "quarkus-http-websocket-vertx", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "c1af1c6d-d31a-5179-998c-185428ead557", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e4797b0-c53e-518c-ad36-e04ef5ed24b2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx" + }, + "version": { + "uuid": "15867c26-9f35-5aa9-8094-368ac2ee82aa", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a3460edd-8fab-467a-b4bf-6683dec71b53", + "name": "openshift-model-console", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "703cac3a-fd16-53b8-93c7-4006c84b2d83", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7e661fb0-c7ea-5227-ba4d-24d66889774b", + "purl": "pkg:maven/io.fabric8/openshift-model-console" + }, + "version": { + "uuid": "61dbb7ed-10a5-509a-991b-eeb127f6402a", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc3665d6-323f-4ece-b3a7-80b0ee3abb28", + "name": "smallrye-fault-tolerance-context-propagation", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "8fa980f0-a387-5f26-93ae-3f116ecc7b15", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7f177b34-8828-511d-ab6d-cb2d6020e627", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation" + }, + "version": { + "uuid": "2ba1c785-443f-53de-8a0d-1fadedab954d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c99295ab-b562-400b-817c-419cf238d77f", + "name": "quarkus-resteasy-reactive-server-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "956d2efa-7999-569d-9143-46a4fb912c0c", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "7fe8e55b-1e62-58f6-9aa0-48da0a320cd6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment" + }, + "version": { + "uuid": "11b8a748-0958-5b72-b151-5b5aef1fee04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b8be532-f505-44b7-8bdb-8ce85ca924d1", + "name": "simpleclient_tracer_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "29074224-a733-590d-a133-3f1aa7966562", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8006f815-73bc-5632-8905-dd02fa694b41", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common" + }, + "version": { + "uuid": "9a8d0569-88d8-520f-baae-897cd84204c5", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c7a950fe-b50f-4d3e-956f-e701d88a8b54", + "name": "testcontainers", + "version": "1.17.3", + "purl": [ + { + "uuid": "c4cfb61f-56b9-5b3d-aa21-2800e3f09fe8", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "base": { + "uuid": "803c3d61-c2e3-5358-a098-20144e2d8291", + "purl": "pkg:maven/org.testcontainers/testcontainers" + }, + "version": { + "uuid": "8ff8c255-64c8-5b6a-bf1c-9b634b6af1f2", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de65163b-f27a-438f-98fb-a3b39487a797", + "name": "quarkus-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "900e18da-2a3f-5572-9db9-6fdc7c1dddf0", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "803e21b5-c5f5-525f-8da9-75a953d18f1f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson" + }, + "version": { + "uuid": "a32c4f28-1462-5e39-b5e3-255c25ea899f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ae8a270-f743-4a2b-98a8-76fa043e62b2", + "name": "quarkus-keycloak-authorization-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "39aa0936-b303-5c34-83a9-492bebda9ddf", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8096f4f3-7458-590e-9214-5b3e61c58208", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment" + }, + "version": { + "uuid": "3f6c7f88-6862-59c9-902c-fd430d93bd4e", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f15ec78e-edcd-484d-9db1-3f9f7f991946", + "name": "quarkus-spring-web-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ce5d970-42fc-5788-9425-c6aebc1cba8e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80c688a4-d3a8-5445-b3a7-7508d55b95e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment" + }, + "version": { + "uuid": "327f7023-b759-514b-9bef-8cf5dff57545", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68e9b381-db68-4826-bc61-817051e1ae2a", + "name": "quarkus-narayana-jta-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "70fdf043-217e-559d-9a2a-fbfb51701053", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "80de8c07-ef1c-52cc-b8a6-888ecca10806", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment" + }, + "version": { + "uuid": "3a83f8f0-6e1c-5b58-a6f5-ef004c788c1b", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e12355c9-ccf2-4eda-99ea-c6d7391c4541", + "name": "wildfly-elytron-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8ef4d765-c95b-5373-9eb5-f4df58b61a3f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "819d1c79-4c9e-5519-8564-faee920ff645", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util" + }, + "version": { + "uuid": "faf9024c-e4d7-5d24-8b4c-24916bd72d89", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0554d465-1b36-41d4-9b78-90dfad98c6cc", + "name": "jboss-metadata-common", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "484cb7f3-1f98-55c3-9af6-3a557460c168", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "81cabe25-fffe-549e-ac11-bde8a10982d8", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common" + }, + "version": { + "uuid": "5a596a79-746b-5add-a836-fda2c2337635", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-646ca491-44f7-4def-8de4-3ee49f91b304", + "name": "opentelemetry-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "e1d88c15-0d21-536f-92fb-0e3f6eff33ff", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "823ce5ea-7ab8-5220-840f-f9724552c9a6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv" + }, + "version": { + "uuid": "6d3458f5-c01f-5e01-92fc-d93289938a3a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ab8a86f-818d-4c97-84bd-c2ab7a85f523", + "name": "mariadb", + "version": "1.17.3", + "purl": [ + { + "uuid": "070185b1-d6ff-526c-a3a8-72960f347dca", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "base": { + "uuid": "82a0307d-5278-5a01-89cb-b13f95f97f0f", + "purl": "pkg:maven/org.testcontainers/mariadb" + }, + "version": { + "uuid": "1f5dd20f-b83b-5afb-ad68-129128ec6f78", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e6a61eb-64bb-4de0-aebf-6eca86837530", + "name": "kubernetes-model-discovery", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "20a1b099-fdc9-5b51-a994-9c6d1669e008", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "831c0def-97f3-53a5-8638-be405da6cc5d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery" + }, + "version": { + "uuid": "34d5394b-d367-5d0b-9b67-2d63affa594b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90c6d369-ed91-40ed-acd6-ee8ffe4c7d92", + "name": "LatencyUtils", + "version": "2.0.3.redhat-00001", + "purl": [ + { + "uuid": "d4aa71df-1b24-5686-b3eb-19ff38dafcc1", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83357be3-a4ea-5920-adb0-793b0f29e3bf", + "purl": "pkg:maven/org.latencyutils/LatencyUtils" + }, + "version": { + "uuid": "f692daa0-857d-51e5-bf3b-ae56d8303ace", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001", + "version": "2.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9bb9a4ac-f467-47a5-8573-2d7c6f5a6537", + "name": "quarkus-jdbc-mysql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cc737316-be25-50bc-88b0-e2380e514f64", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "835553fc-e319-52c2-bc48-55d70a2e8187", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment" + }, + "version": { + "uuid": "ba51d5cb-6edd-5938-a4e6-0cf9148a314c", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0e49d3d-ec02-46ea-8051-c03cbcaceff8", + "name": "slf4j-api", + "version": "1.7.36.redhat-00003", + "purl": [ + { + "uuid": "45cf5a25-8599-5a6b-8d1c-9e54d2993901", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83c5c03c-af5f-59ef-beaa-0eecbbb5aaf4", + "purl": "pkg:maven/org.slf4j/slf4j-api" + }, + "version": { + "uuid": "36009fd4-004b-583f-a166-d030751ad3eb", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003", + "version": "1.7.36.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff2e02c7-eddb-4208-9d5a-82e4290744b3", + "name": "vertx-amqp-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3411337c-1f90-5f0c-9ee3-a657865b0488", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "83ec07e2-f518-5407-8fc8-c0562ca76076", + "purl": "pkg:maven/io.vertx/vertx-amqp-client" + }, + "version": { + "uuid": "6f186fa3-83bc-5948-a399-a6509e535fc4", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b8226df-fd96-4b37-be36-6e763ecadb77", + "name": "smallrye-graphql-client-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "a1b39348-9913-57f1-ab21-fe4056beb0c7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84385951-077a-5cc6-ac7e-a281080ee807", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api" + }, + "version": { + "uuid": "40bc84d1-daab-59b6-99f1-bcc809073641", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5804ea01-67c0-49e0-8f73-6320c725332a", + "name": "microprofile-config-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "eafb34aa-8c4f-5657-b29d-194e781fe250", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84849c62-a1c1-5715-a7e7-33e9db672204", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api" + }, + "version": { + "uuid": "d6be2622-7940-52f9-bf26-60413434fc24", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61e1d904-3bd8-4eff-b08c-5889c3bfbb35", + "name": "microprofile-rest-client-api", + "version": "2.0.0.redhat-00003", + "purl": [ + { + "uuid": "9ed7d58d-0192-5f02-9b06-dbb698a9fa0c", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84a19b7a-3e79-5380-a407-6bb56b380821", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api" + }, + "version": { + "uuid": "a0e44876-884e-56cb-bea4-981a74aff8fd", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003", + "version": "2.0.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-de924e9f-a767-44d0-a261-b967399024ea", + "name": "quarkus-container-image", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c47e373-6eea-5f0e-94cf-5ec5b5a6c694", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "84d91d6f-a02a-5104-acc7-df3f7971a499", + "purl": "pkg:maven/io.quarkus/quarkus-container-image" + }, + "version": { + "uuid": "6d96e730-0745-58b1-8e57-d0a25579fc52", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8250ddf2-3f04-45e6-8221-5a414ed5b9c3", + "name": "quarkus-spring-cloud-config-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f3dc8aca-8374-51a5-af20-ea89a4221ca8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85456513-49a5-500f-bf9e-ad975600f71e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client" + }, + "version": { + "uuid": "e5b65e32-3acf-5321-a2a4-04fef8b0b8d6", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21b37735-8fa4-436c-9039-40682c6840a1", + "name": "quarkus-hibernate-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9c587df9-c5b4-52d8-b945-107f5ae06e67", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8549e270-4cc5-5e0d-ae98-563e798a0e6d", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment" + }, + "version": { + "uuid": "93d1e295-f4c4-5840-876d-166c10e0cf76", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-918a51b4-7a51-416a-b690-f4d14a879089", + "name": "jboss-jaxrs-api_2.1_spec", + "version": "2.0.1.Final-redhat-00001", + "purl": [ + { + "uuid": "eb19f18d-19c3-5ceb-bb70-9d2d1a72156f", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85a2637a-4060-57d2-93f9-c172be824802", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec" + }, + "version": { + "uuid": "ce00f9b7-9f24-53f8-a43e-b124853fade6", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001", + "version": "2.0.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-61d7808a-c3c7-496f-b4e8-8a97d533fcb1", + "name": "failureaccess", + "version": "1.0.1.redhat-00004", + "purl": [ + { + "uuid": "fa9b9ea7-0920-5cb7-b89a-be733a21724a", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85ae9d93-29c5-5520-9e0c-6729bbc9866e", + "purl": "pkg:maven/com.google.guava/failureaccess" + }, + "version": { + "uuid": "d50f9b81-cf0a-5345-ac28-4e145e0e76f5", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004", + "version": "1.0.1.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28fff811-5662-4f07-b30e-9d5054d3113a", + "name": "kubernetes-model-events", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "6cfd2cdb-2e79-50ff-8cd7-6fb135337026", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "85bea654-77cb-5ac3-a550-a4ab729cf45c", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events" + }, + "version": { + "uuid": "c5586dff-5e24-5bbe-bda8-25f01b40c651", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-352b0490-7286-4d57-8d9e-8389255cb6d3", + "name": "wildfly-elytron-auth-server", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "80b8a8f8-5d23-5be6-abe2-e009dbc55285", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8611def9-522a-58a4-b227-54459188d2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server" + }, + "version": { + "uuid": "baeee0e4-5dd7-51ea-80af-2077be51d747", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0600dc-cf4d-4c54-ba10-47e63cb889cc", + "name": "postgresql", + "version": "1.17.3", + "purl": [ + { + "uuid": "6ec1c15c-96f1-5233-acae-0401b52a12b5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "base": { + "uuid": "86a8f963-5405-528f-814f-ccd528e8f986", + "purl": "pkg:maven/org.testcontainers/postgresql" + }, + "version": { + "uuid": "7bfbb2e1-2f67-531b-908b-a4daf09269c5", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e42d136-b872-46a1-8694-aba9187bece3", + "name": "quarkus-hibernate-orm-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1113f065-02a1-5a2b-a24b-6b5a017ba2a3", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86cd0b18-a502-5999-ad85-121edc70dcca", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment" + }, + "version": { + "uuid": "0688e6c6-2486-5688-afc5-2c50c1ce5c8e", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8ee0139b-a03b-4efc-b124-ae1104ccc14a", + "name": "saslprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "3b6eeca1-049b-52c9-ba46-82572f8d8f45", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "86d395e2-997a-577f-bb39-b82b8c1af0bc", + "purl": "pkg:maven/com.ongres.stringprep/saslprep" + }, + "version": { + "uuid": "70b81bb5-2b13-59e2-9ead-81f8bad097fe", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6a140c57-6426-4102-abfd-2ad47a45be45", + "name": "netty-common", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "71811857-77f1-5c71-818f-39932ff0bb7e", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "870186f2-68c0-54d4-b632-cb524ed17e79", + "purl": "pkg:maven/io.netty/netty-common" + }, + "version": { + "uuid": "2bde327b-738c-593b-a11d-7e5261be5900", + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada6909e-2187-40a9-9d16-97133501fd8b", + "name": "vertx-auth-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "7a6d7c1b-1c01-5b60-a532-da61683a7355", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "872fa866-4a6c-5b5c-aa38-20f3c9a10f92", + "purl": "pkg:maven/io.vertx/vertx-auth-common" + }, + "version": { + "uuid": "a5bcd606-fa0a-55d4-9df9-b85a3c91506a", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5139a51b-104d-48a0-bcff-fc3af938ebe3", + "name": "annotations", + "version": "17.0.0", + "purl": [ + { + "uuid": "2b9276e5-4390-58ac-a453-7a317e200bc4", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "base": { + "uuid": "874a6312-844b-52cf-93ae-d5d05b6314a6", + "purl": "pkg:maven/org.jetbrains/annotations" + }, + "version": { + "uuid": "e3c1a073-4bf1-5bb2-8601-8956081cd4ef", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0", + "version": "17.0.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8f1f9a5-ae6e-4fb1-ae53-b54f9d6af6f1", + "name": "jcc", + "version": "11.5.7.0", + "purl": [ + { + "uuid": "0785d1dc-3bd0-5491-b2b9-2755d61b5449", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "base": { + "uuid": "87bf994f-dc1e-5921-8246-a16ded4150ca", + "purl": "pkg:maven/com.ibm.db2/jcc" + }, + "version": { + "uuid": "c02cc0e6-dfb9-5fe3-b482-2cd02c6d608a", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0", + "version": "11.5.7.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e219e264-7a2a-4ce2-b739-530e599366eb", + "name": "quarkus-undertow-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f0dc1fa5-0fe8-5f34-99de-545c7100c8c1", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "87bfa2aa-0fd1-5f7e-816f-ccae9b3dbec5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi" + }, + "version": { + "uuid": "b96b6835-ac44-51cf-bf99-16a2d8e0b5e5", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-573dc0de-7010-4812-8fe3-a177c2fefac6", + "name": "knative-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "352a09b2-a14a-59de-b721-b7438cd5d23b", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "880b82c1-9909-5c94-bbcd-5fce864cad31", + "purl": "pkg:maven/io.fabric8/knative-model" + }, + "version": { + "uuid": "87d762ec-b40b-51ab-949a-4555b5c268b3", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39c9b12c-f528-4ccc-867e-3e700fd00eb8", + "name": "quarkus-smallrye-graphql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66fdadb4-877a-5096-991a-81a0854af017", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "881457c9-aec4-509c-bfc0-55dcce7942d7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment" + }, + "version": { + "uuid": "3c00118c-2382-5aa0-8375-ce1ab309e54f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-60be7891-250c-4cea-8243-a5dc8f0621c3", + "name": "wildfly-elytron-sasl-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "93035cfa-2a96-58ee-912d-a1a0fb2dbc20", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "885a1d71-b5e9-5b10-b652-682a141ae2ce", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram" + }, + "version": { + "uuid": "23a387b5-ed0c-556f-b447-6fe71afce3a8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f6f8395-6081-4698-958e-43c1e8adfd70", + "name": "microprofile-openapi-api", + "version": "2.0.1.redhat-00001", + "purl": [ + { + "uuid": "5ccb8df2-102b-517e-a682-76d28851a4f3", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8873cc91-62af-5acf-ad0f-c2fa85ed1b45", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api" + }, + "version": { + "uuid": "7135db6b-9e0d-55a2-a6cc-f50999a153e8", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001", + "version": "2.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7875f88e-5485-4b01-9d8b-a58e422f3b6e", + "name": "quarkus-smallrye-context-propagation", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce888339-535a-5a0d-8385-3bcb4168b77e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "88825f7c-0148-5eb3-92ab-cb823d86c24a", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation" + }, + "version": { + "uuid": "4470755c-2368-5c06-8788-14de4b1adc66", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c65b088e-10e6-4abf-87b6-238808a76144", + "name": "jna", + "version": "5.8.0", + "purl": [ + { + "uuid": "641e0388-782b-5e89-ae09-198d93be2218", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "base": { + "uuid": "889e0087-8e2f-5956-b845-87d2371eac7c", + "purl": "pkg:maven/net.java.dev.jna/jna" + }, + "version": { + "uuid": "c3ce0bd1-4778-5a61-8dee-d44de93b4c27", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0", + "version": "5.8.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97b3dffc-6c54-49c0-919e-3834812c9886", + "name": "quarkus-spring-data-jpa-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "af8db6db-ee5a-5ac1-991f-29067f7185ba", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8991ccf9-64ed-5730-ba85-47437bf6b293", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api" + }, + "version": { + "uuid": "5e6e574c-b83c-5a8f-aa0f-321e57d7adae", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fc7c15b-8c3c-4573-8287-23bfde8997a6", + "name": "resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dccda6ae-0f2f-5a0a-ab47-6c03ef2d7b74", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "89c6538e-8f5c-5dc4-8bed-e6ed0fc7d21b", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive" + }, + "version": { + "uuid": "fab2ee4f-2315-5ad0-bf0a-037f4545a2b6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b44b1830-bcd6-4d01-8c5a-ca7a5ee59aad", + "name": "openshift-model-whereabouts", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "964ffe26-dc4f-5a4d-a00a-d42a27148885", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a1ef539-88da-5f4c-a25e-052d00798b1a", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts" + }, + "version": { + "uuid": "79ac53af-8d77-535e-a0c9-eeb26d587d2e", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6159804-c8d6-4237-9761-22f97bc8fccf", + "name": "quarkus-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae311bc2-7848-5c3c-a26a-f2b8f31d1447", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a3c8def-0399-56e6-947c-07a1fb4b44ca", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment" + }, + "version": { + "uuid": "f6a2eee4-b67e-587f-b70f-b727737658ce", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5d8fa47-875b-4fbe-9f20-7340e23a90fb", + "name": "quarkus-agroal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f168de3f-4478-5789-acf7-b6c6730dbcc4", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a407fc0-9844-539e-98e6-c380d0722594", + "purl": "pkg:maven/io.quarkus/quarkus-agroal" + }, + "version": { + "uuid": "2a339e09-59c8-5907-9683-9786118e6b64", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5da8676-8445-4aa3-8ddc-9b3170ccbc82", + "name": "protoc-gen-grpc-java", + "version": "1.49.0", + "purl": [ + { + "uuid": "0eab9dfc-4247-5d8d-9007-3a3945cf9727", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "base": { + "uuid": "8a7602e1-b398-5b81-8d28-dd231fad375b", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java" + }, + "version": { + "uuid": "c6063c2e-5082-5754-a4c9-13cf74a64edd", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0", + "version": "1.49.0" + }, + "qualifiers": { + "classifier": "linux-aarch_64", + "type": "exe" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dc80859-cc81-43ae-be36-63181d004f4c", + "name": "commonmark", + "version": "0.19.0.redhat-00002", + "purl": [ + { + "uuid": "d0b4f256-2c4a-5cb0-b47f-f33318465247", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a77f97a-6f5f-50b9-b5ee-83880684e3e9", + "purl": "pkg:maven/org.commonmark/commonmark" + }, + "version": { + "uuid": "39842d84-2d0d-5b6e-a97e-e6071d5a9376", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002", + "version": "0.19.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-11b7fc0a-bc3c-4578-9667-fd9a2f001f39", + "name": "arc-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45f0c536-c04a-5344-bf57-540f7375ceb4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8a7b3a75-2dde-56b0-b441-bfe58d6c94a4", + "purl": "pkg:maven/io.quarkus.arc/arc-processor" + }, + "version": { + "uuid": "6df7d2d7-d694-55ac-85a0-7d2a6a430d16", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5c50423-a678-4d56-9953-7330c3c5e232", + "name": "quarkus-panache-hibernate-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ce31edc6-2710-5460-bd71-2a660959e25b", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ab2fe35-5260-57bd-a745-bb22509ac334", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common" + }, + "version": { + "uuid": "a08b583a-f0bd-55a3-9bd3-c89250811f72", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb216fe5-e8fc-4ee8-8f6e-e64579bd9aa1", + "name": "microprofile-metrics-api", + "version": "3.0.1.redhat-00001", + "purl": [ + { + "uuid": "25ea4526-b263-52ce-8e77-7b71741f1d2e", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ad492a9-1d07-57ba-8b6b-73d1e158f985", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api" + }, + "version": { + "uuid": "83db2800-aac4-5b42-87a1-54e40c1a4de5", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001", + "version": "3.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6587db85-8577-4aa7-b4b5-50d4f65b5945", + "name": "quarkus-resteasy-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "50df6c36-498b-506f-b5b6-f22cdca035a1", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8b692a6b-ce77-577a-949b-c2793aefae76", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb" + }, + "version": { + "uuid": "31c75ceb-977a-5f70-91fa-84b3c0e6c0c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e56a882-8bd0-4cc8-bef3-9048d2c05271", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a8c9f89f-d045-5181-995c-0bf89e8981a2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8ba5f31a-9f2f-5008-9f13-804d5c197c6c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi" + }, + "version": { + "uuid": "f0f67e7b-34c5-5539-9f62-48a6c82bffba", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eb0faa5c-b7a2-4a95-b809-75249c89e374", + "name": "microprofile-opentracing-api", + "version": "2.0.0.redhat-00002", + "purl": [ + { + "uuid": "a1c53aa6-5c90-5278-8ca0-4991107df923", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8bf38973-fe69-5ef4-886f-34701eaf9f41", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api" + }, + "version": { + "uuid": "53471608-e0d9-51b4-a89a-a18440c2abe5", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002", + "version": "2.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1af8ffc0-d301-42c2-8980-82f971e3d585", + "name": "quarkus-smallrye-openapi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac3051ce-b7fa-5d1b-8071-4756e914723f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c22239a-29e9-5fd2-8048-9503219b4c15", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment" + }, + "version": { + "uuid": "7b245d36-b6d3-5d84-b9dd-282eb101dc92", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c8266f7a-1795-4f0f-8f49-c96c5a72f688", + "name": "smallrye-common-constraint", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "41ecadce-f57f-575d-b1bc-064f5166aac1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8c2c3d1e-214d-587c-a507-378f047aa568", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint" + }, + "version": { + "uuid": "0c670bb9-0056-50a2-bd93-c0c4aad42358", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f027729d-5c2c-4f6c-b3b1-2511f4eb0ef0", + "name": "istack-commons-runtime", + "version": "3.0.10.redhat-00003", + "purl": [ + { + "uuid": "40d11f39-5a42-5379-81d6-a8be63f739c2", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8d598cbb-33fc-55b7-ba56-643acfde8577", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime" + }, + "version": { + "uuid": "0e0a842f-f911-5d81-ab3f-3220acd31ce9", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003", + "version": "3.0.10.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6095bef-676f-4f49-a3db-612888f8200f", + "name": "quarkus-resteasy-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f012f320-f329-5707-90f0-80233d44540d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8de15e7f-5d38-571a-a0d2-baa6da3ffefa", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment" + }, + "version": { + "uuid": "e389d577-7d21-5ace-8276-450f2617ec73", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc8ba62f-fcb4-4d1b-88bc-fdf317d55a1d", + "name": "quarkus-netty-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c68068ba-f4ec-5984-8de9-0c803541cf3c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e018191-bd99-5687-b999-4bc37ec3f997", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment" + }, + "version": { + "uuid": "f03e1436-bf6b-5c9e-a0e5-9496f388e74c", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f04eab2c-3517-4c71-b333-b6d534776396", + "name": "wildfly-elytron-mechanism-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "502bf412-31ab-519d-9e86-eed10b8ca214", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8e6dfe3e-4874-571f-8148-88285e5c22f9", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest" + }, + "version": { + "uuid": "66b7bb88-58a7-513d-96a5-2fec6335fc8c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38110b57-7694-45e1-aa87-79aeec9c0e85", + "name": "openshift-model-operator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "af41d460-af48-5172-9d59-ffa1905508e6", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8eba4804-f1d9-5bf4-8fff-5a7633caa123", + "purl": "pkg:maven/io.fabric8/openshift-model-operator" + }, + "version": { + "uuid": "57babfb6-f256-52be-a24a-c406f550f5fc", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a26fda24-bce5-43e6-8b99-a1e89165717a", + "name": "quarkus-kafka-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd66beb3-a365-51e7-aee5-fc221fc3540d", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8f06998b-ffcb-5891-af8f-f7c784117f2e", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client" + }, + "version": { + "uuid": "9fbc9520-e228-5105-8d3c-6fd5f0e33fd8", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9203ecb9-6da3-4567-853e-36e9d6850e4f", + "name": "jakarta.mail", + "version": "1.6.7.redhat-00005", + "purl": [ + { + "uuid": "3420c62a-c934-565c-9ae9-47ddede43b4b", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "8fa4eb3e-d9cb-52be-9351-dbc12449817f", + "purl": "pkg:maven/com.sun.mail/jakarta.mail" + }, + "version": { + "uuid": "dfb7aa91-aba2-522c-89a7-00176c628d13", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005", + "version": "1.6.7.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c3311e08-a810-4534-8f64-adc4c755cd36", + "name": "infinispan-commons", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4ac826a9-70a6-5802-9091-ba458ecb325f", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "90a33888-01ee-52f1-89a7-bd6018a7bd36", + "purl": "pkg:maven/org.infinispan/infinispan-commons" + }, + "version": { + "uuid": "96156ee7-58d0-56e0-ae75-ce752bd2bb73", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b6a09ad-2f0d-46ef-98ca-d5cd664de753", + "name": "kubernetes-model-certificates", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9c81fccb-aa91-5670-bddd-4b96d8df1153", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91115481-14f5-575a-be42-9dd4ece0a065", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates" + }, + "version": { + "uuid": "855e59ba-4723-57d9-97a2-db15f4e77e7f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-33025a1f-2330-4031-be0a-cd2d50e9b2e9", + "name": "quarkus-elytron-security-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4818d536-ecd1-5ded-9623-90a74e5ab213", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9117ba37-1138-590e-a902-c1cb33c00ff3", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment" + }, + "version": { + "uuid": "bfe43c3a-b5e5-50c1-81af-f3ee7d0977cd", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-955f9c35-31d2-4825-a615-5d5c24b2ec36", + "name": "quarkus-reactive-mssql-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d232d104-560d-5908-a63d-8f28ea917d8c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "919f5488-b06a-574d-9a79-fef7466711a0", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client" + }, + "version": { + "uuid": "1c444ca8-d051-5508-b4c9-019bed0a1531", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-16606645-7867-45a5-b5da-6dae9c252d11", + "name": "quarkus-devservices-postgresql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4cb84e06-cb6b-5bc9-992e-23061c9135ad", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b0c71e-9d37-5127-88d1-32b5584fea3e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql" + }, + "version": { + "uuid": "fe48a8a2-ad04-5236-8bf9-63412e2b649d", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a6221a55-41a2-4bbd-a384-5b6282513bd3", + "name": "wildfly-elytron-auth", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6a7d4c1d-6e3a-5ad3-bd24-8a5cde170a93", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "91b63bb7-3bbd-57a2-8a44-e0de91c45f98", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth" + }, + "version": { + "uuid": "e650d46d-10b2-579f-a679-58d2dcec9cb6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-063926b6-3b62-433a-ad46-d54f67214d8b", + "name": "wildfly-elytron-sasl", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "6e486eaa-6beb-5f61-9ce9-845659e288a0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "92a4af86-051f-5d8c-8b8a-943f0be085b2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl" + }, + "version": { + "uuid": "09e64465-8314-566d-adb7-e7f22c71a619", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b1469f4-0420-4700-bedf-04f144682b21", + "name": "mongodb-driver-reactivestreams", + "version": "4.7.2", + "purl": [ + { + "uuid": "b6462533-0ea9-5c96-ac0c-a48e9f4e4b8f", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "base": { + "uuid": "9361ad00-09af-52f9-8857-1b53a9c70842", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams" + }, + "version": { + "uuid": "78583d0f-e848-5262-aa37-a363a4f3de82", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7a70cd-8eb7-490f-a75d-94dfb14619d1", + "name": "quarkus-caffeine-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2bc54d22-b269-5028-82a5-eb5fac9fa9e6", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "93ee44b8-118d-5fe0-98b0-c8811c36f64f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment" + }, + "version": { + "uuid": "ab10c629-cb60-58b3-8939-4fcbc12cdec0", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a1af55a-3912-4a0e-9e0b-81c5a496321d", + "name": "java-dataloader", + "version": "3.2.0.redhat-00001", + "purl": [ + { + "uuid": "799f6788-0a24-5759-8c35-b5e31f0a4139", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94501096-2829-5c29-954f-0616c7dbb81f", + "purl": "pkg:maven/com.graphql-java/java-dataloader" + }, + "version": { + "uuid": "45747a89-22fd-5e2b-9976-afac0b7554ef", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001", + "version": "3.2.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7a8e72d-00f8-41e5-815b-433e55057177", + "name": "quarkus-container-image-openshift-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "570db129-156d-5573-a298-64c82816868f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94511500-7e2d-5455-94cc-92336ce41ffd", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment" + }, + "version": { + "uuid": "2faa4353-5e95-523c-9e00-1b54c6a21e3f", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b8749e8f-fa47-476e-8276-358d3a921e4c", + "name": "jackson-jaxrs-base", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "d29b1b83-913d-57da-a1f7-abba49e8ac22", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9474e6d4-6eeb-5519-bc30-b7894cdbbf8b", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base" + }, + "version": { + "uuid": "002780fa-7d3a-58df-9ccc-03268521285c", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05906e73-54bb-4c23-9172-898c76bd6d55", + "name": "quarkus-spring-di", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a5692e79-903d-5125-9df2-0b8bc3418bac", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94a4a80a-b08f-5fec-89fe-84bab45c7edf", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di" + }, + "version": { + "uuid": "c3320e62-70a1-5e58-9858-dda7172306ab", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6472196b-9449-46e4-84af-06d3f33a4e3a", + "name": "jsoup", + "version": "1.15.3.redhat-00003", + "purl": [ + { + "uuid": "dfc20dee-d85b-5082-a33a-dbc905081106", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "94e72278-ec79-5487-84da-16aa8050a5fc", + "purl": "pkg:maven/org.jsoup/jsoup" + }, + "version": { + "uuid": "061162a8-07ae-597e-b940-ee4b21111680", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003", + "version": "1.15.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62e1e726-c8cc-49a0-8f06-6d4610c1d163", + "name": "org.eclipse.sisu.inject", + "version": "0.3.5", + "purl": [ + { + "uuid": "83708c05-7065-571d-ac82-30913a5f21f3", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar", + "base": { + "uuid": "95ce5d15-0e11-5545-a5e7-d8fa6bbc8387", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject" + }, + "version": { + "uuid": "20e3266b-4b8b-542d-b4b4-e8935d29d8e2", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5", + "version": "0.3.5" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28cd761a-5469-4bfa-a5aa-8ab2710d001e", + "name": "smallrye-mutiny-vertx-runtime", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "7155fe5b-2463-58a7-8b0f-fd5742f1e31e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "961fa74a-6c4b-5700-a1fa-3ec0f6fd3127", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime" + }, + "version": { + "uuid": "0d767b00-cbf0-534e-92e8-1ff6a921ffaa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c405aca3-72f6-46e2-b501-8271ca6cd545", + "name": "jboss-metadata-web", + "version": "15.1.0.Final-redhat-00001", + "purl": [ + { + "uuid": "c6b7d903-5a15-54c9-9935-5e2ce3fa074c", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96873796-1fcd-5efa-b76d-bb3e3bd6a5fc", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web" + }, + "version": { + "uuid": "980de31f-275a-5925-ae1c-355f257c9d17", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001", + "version": "15.1.0.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e0585032-2300-4fa9-aab5-87503c00d4ef", + "name": "protostream-processor", + "version": "4.6.2.Final-redhat-00002", + "purl": [ + { + "uuid": "09b3b7f6-41b3-54c2-93f2-2339b2503adb", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "96eda509-98ed-5bab-9c67-c196fc14c258", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor" + }, + "version": { + "uuid": "949025a0-6c74-5f5c-a45e-c82a260010b0", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002", + "version": "4.6.2.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb77ebf3-b21a-4b47-90d9-3f1178769e71", + "name": "postgresql", + "version": "42.5.1.redhat-00001", + "purl": [ + { + "uuid": "a22d8881-b843-5911-a386-19bab74f3a29", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "970cbb50-334f-5efe-9840-965c5101b866", + "purl": "pkg:maven/org.postgresql/postgresql" + }, + "version": { + "uuid": "51f6b31f-a3ab-513c-a068-499a23d3fbaf", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001", + "version": "42.5.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62cb4303-30df-443f-bbd1-16e8e0701445", + "name": "quarkus-hibernate-orm-panache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9091fb5c-790e-5c4b-a5c4-6373814af611", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97734d36-fd79-5fa8-b849-14b92bc5547f", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache" + }, + "version": { + "uuid": "74088374-2888-59c5-a21b-9de6275f5c8a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a1a98e3-53bf-4e66-9fe5-13ac6b6d049a", + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "805c7c4f-8b37-5dc1-baa8-d193b49e9397", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978a364c-8815-5146-9f51-df97ad59dc2e", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin" + }, + "version": { + "uuid": "1a8e0e98-de1d-59d2-9702-03caa5827a41", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-07fc401e-5fab-4015-ae21-0bd3103e45a5", + "name": "docker-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "2780120e-0ccb-51ca-be04-c8602902a570", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "978e5f14-acbb-571e-be7e-3ad737464650", + "purl": "pkg:maven/io.dekorate/docker-annotations" + }, + "version": { + "uuid": "9ef0de46-1842-5ecd-bd72-19da6c78e528", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-39ebd0ce-1c2e-40be-80ce-22b10eb8b48d", + "name": "quarkus-spring-scheduled-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "29cca5b2-78a8-5ad2-9935-32e52e736e1e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97af3578-54eb-5a12-a6d2-d0f39229cc93", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment" + }, + "version": { + "uuid": "ff268798-f104-51a1-8278-75f64881d56f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4d78d43-66d4-4e33-a0e4-9d163885efaa", + "name": "quarkus-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "592e29f9-da5b-56c9-9d65-28ebaf6d825e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "97eec557-775f-542f-ba39-f15c6d84442f", + "purl": "pkg:maven/io.quarkus/quarkus-vertx" + }, + "version": { + "uuid": "e7343811-020f-5b12-943e-8cb34cdaa63e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a4fe36e1-4ead-4679-af4a-3e086b3ce72c", + "name": "opentelemetry-extension-annotations", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f453d03c-3e67-5468-b64b-28f5d0fcf4b3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9830454e-3f70-5643-8fce-087b92d92c2a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations" + }, + "version": { + "uuid": "12ed2218-3ab1-501d-a928-f9fbbbf78463", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91075d55-492e-4ae9-a64a-c71cf9f90126", + "name": "opentelemetry-sdk-metrics", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "f1642d0b-38f5-5412-9825-c603ecc98da8", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9843976e-ecba-52a4-946d-36bb69fb9a20", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics" + }, + "version": { + "uuid": "1e817668-ce72-5cfc-b38d-e91079329377", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47424eea-17e4-4baf-b234-7300d0e460f1", + "name": "microprofile-reactive-streams-operators-core", + "version": "1.0.1.redhat-00001", + "purl": [ + { + "uuid": "0d68ec46-8ae4-5cdc-b626-899d28299c36", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9855244e-21eb-556e-8974-fa86b5fad960", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core" + }, + "version": { + "uuid": "5cda712b-921a-5620-8a7b-27ec1b5ab3b8", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001", + "version": "1.0.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5b2e399-8783-4c82-bf88-c922daeff8d4", + "name": "quarkus-reactive-mssql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d83c7999-1f0b-5dfc-9013-68e0db3accc5", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "98909be2-ed23-5db6-b364-6eeeda380e57", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment" + }, + "version": { + "uuid": "7dcd7aae-6975-5ac1-80d5-c20e95d4b699", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc887ec2-b239-405a-8aff-194c76814806", + "name": "generex", + "version": "1.0.2.redhat-00003", + "purl": [ + { + "uuid": "a56681a4-749f-5a86-aa4d-74f741b80547", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "995caeff-22dc-5039-8842-5418858702c9", + "purl": "pkg:maven/com.github.mifmif/generex" + }, + "version": { + "uuid": "3036329d-03ed-552c-8316-a591211412c7", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003", + "version": "1.0.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-116dd7f0-a7be-4a74-af52-5ccbfea77ec8", + "name": "protoparser", + "version": "4.0.3.redhat-00001", + "purl": [ + { + "uuid": "f89f45e3-8d55-522e-b323-cf80c8a0ff3c", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "99719b06-3206-5739-8408-6e66857a4ad3", + "purl": "pkg:maven/com.squareup/protoparser" + }, + "version": { + "uuid": "262b4206-d9f2-5abe-b1ef-7d9dec70ba1b", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001", + "version": "4.0.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0821e7e-1b0e-4708-84a9-76e49a1fd627", + "name": "smallrye-mutiny-vertx-mail-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "2dce8758-49c6-525a-9f45-67a5c0a1c557", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a0d82a8-5964-587a-92ae-69891199f5e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client" + }, + "version": { + "uuid": "6a574575-3ce8-5199-a892-7200bf8ae502", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6237aab0-f0fd-4126-b944-26ec3ef68f23", + "name": "mutiny", + "version": "1.7.0.redhat-00001", + "purl": [ + { + "uuid": "5d41a447-4a53-52c3-8f42-56d6a32838ec", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9a16965a-bca5-5dad-9c9c-271dbce57173", + "purl": "pkg:maven/io.smallrye.reactive/mutiny" + }, + "version": { + "uuid": "f32cbc64-1c28-52d7-9193-2f143eb85784", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001", + "version": "1.7.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cc633ec-b6ac-452d-b4c5-d3cb497c88ea", + "name": "quarkus-micrometer-registry-prometheus-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e1532096-16d8-5f77-b992-6a8281551132", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b077a81-e987-595f-885a-8c0a2e5a2cb4", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment" + }, + "version": { + "uuid": "358086a9-a452-5cca-a9af-71d39039f097", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a15d46a-bb11-40b5-8320-24670429d36a", + "name": "quarkus-resteasy-reactive-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee333e07-55af-595b-b0ce-4ea31785a8e3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b3468b6-cba7-590f-91ea-e408afcf66a5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment" + }, + "version": { + "uuid": "1825399a-e96e-5c0d-8573-4789961cc988", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-912eb1f1-f103-4b17-bc87-0d597056e584", + "name": "quarkus-logging-json", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ffc7fa3-6fba-51c8-a81a-ef4f7c4fd2a6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9b735f2f-6ac1-5323-94d0-db693fd230e6", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json" + }, + "version": { + "uuid": "fd07d24e-1029-5de1-a3bf-6b270a5139a5", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e70cf4f4-c7a5-49d0-9efd-96173cd3d73c", + "name": "quarkus-container-image-util", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aaf4b651-c295-57d5-a024-8b83a4b165f5", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bca9925-dedb-5efd-9a91-2e84c276f60a", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util" + }, + "version": { + "uuid": "207a230a-12a6-5c63-822a-278e66616c3b", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9aa8f03-f9c7-43a3-803a-bec9ed624ab5", + "name": "quarkus-container-image-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "86731ecb-63a2-571e-b9c5-f5cebdc88a2e", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9bdb7289-f52b-51f4-86dc-d038b99795d0", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment" + }, + "version": { + "uuid": "c76b5491-ca1a-5835-b587-10a74f11e531", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b214ec95-bc6f-4aa4-bf20-555f320034d8", + "name": "quarkus-resteasy-reactive-spi-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3617f8da-e4f2-502b-b5a3-88939f7f4a42", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c14c788-bf52-596e-9734-779af6967284", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment" + }, + "version": { + "uuid": "65d504ee-537c-5c0d-8be6-d8930138d3d4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-289492ea-77ac-4b09-8fb8-deebcc1009d4", + "name": "jaeger-core", + "version": "1.8.1.redhat-00002", + "purl": [ + { + "uuid": "ef36d07a-4042-50d4-9881-a76d77eb19ce", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c260a36-5747-5b05-b6a9-57bfcfe71ec8", + "purl": "pkg:maven/io.jaegertracing/jaeger-core" + }, + "version": { + "uuid": "5a177197-f276-57b3-a6c8-bfb80bc12b8e", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002", + "version": "1.8.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d557514-5b60-4186-a560-c2d513993881", + "name": "quarkus-resteasy-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f2787103-d68b-50bc-a837-c99cdd1c2879", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c3864c6-f91f-51f3-9db6-f70304b7425e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment" + }, + "version": { + "uuid": "adc6fdb3-e783-562c-ba53-a01772beb6af", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd93333d-e809-4919-9c97-dc939de3453b", + "name": "micrometer-core", + "version": "1.9.4.redhat-00001", + "purl": [ + { + "uuid": "9b9a010e-6dd8-53e0-9c43-72049e27bbfd", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c573f57-41ff-58ce-9010-37cbde3799de", + "purl": "pkg:maven/io.micrometer/micrometer-core" + }, + "version": { + "uuid": "baad3786-69eb-5ea5-8b66-6d80c6d91ff9", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001", + "version": "1.9.4.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21fd301e-8966-4ffa-a7af-e4f639430f55", + "name": "quarkus-kubernetes-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6ca59ae9-378c-54c2-8924-44c4178ed253", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c66fb58-da6c-5c32-ac44-20a02871050b", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config" + }, + "version": { + "uuid": "6d6010bf-e5bb-5d4a-b523-a4fd21600186", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f495b8a-5b8e-4669-a647-3f589dcee861", + "name": "javaparser-core", + "version": "3.24.2.redhat-00003", + "purl": [ + { + "uuid": "ed870786-c6ad-52d3-bfe1-3a989d36e6c9", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c7ff4e1-3cc1-5820-8025-c5c7aca3cb5c", + "purl": "pkg:maven/com.github.javaparser/javaparser-core" + }, + "version": { + "uuid": "78264c9b-acae-57a4-af21-c450c6cb3e7d", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003", + "version": "3.24.2.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9125c794-4347-4058-be5b-2a166c3622a1", + "name": "protobuf-java-util", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "e644d37e-912f-5bc7-ac70-186e842f255b", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c8eb57d-52ed-52fc-8481-2be70f6258cb", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util" + }, + "version": { + "uuid": "1d4ff46c-6ad5-50b9-b2fd-a0db04042bd0", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-22f7d732-1f1d-44f3-bb4b-99d1b3c08a2f", + "name": "quarkus-spring-scheduled", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dcbc748a-5278-52b6-a9ea-6d059857fe3a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9c924777-a53a-5e47-a978-e4b7b7f0372e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled" + }, + "version": { + "uuid": "a6245182-ff1c-56fb-a548-0e6c98ab1f4f", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-40f2518f-8db0-42c3-9f6e-7fb50ee5d6df", + "name": "kubernetes-client", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "3345183c-51da-5b3f-af74-06f5d3297edf", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ca7ed2a-d809-5c63-8b9c-0efea1faf265", + "purl": "pkg:maven/io.fabric8/kubernetes-client" + }, + "version": { + "uuid": "23637270-3c1d-58f5-b2cc-8f6b2fa1a4ee", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5cb99d7-f81c-444c-b03c-4434377a2982", + "name": "commons-logging-jboss-logging", + "version": "1.0.0.Final-redhat-1", + "purl": [ + { + "uuid": "dd8ce3f0-5574-517a-895f-45a19cfd244c", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9cdf0820-010b-59eb-a0c8-ef1f39c7cdac", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging" + }, + "version": { + "uuid": "ddbc7f20-9368-502c-b8b4-30d8aa099d43", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1", + "version": "1.0.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cad8349b-8185-46de-a9e7-8c5ccbb4ea70", + "name": "microprofile-fault-tolerance-api", + "version": "3.0.0.redhat-00002", + "purl": [ + { + "uuid": "a0445d4b-f3f6-5668-9baa-9d3453e7ac01", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d0e7561-ef68-59fc-b187-9e7723a5bbd9", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api" + }, + "version": { + "uuid": "e74ac8cf-ddfd-5dc9-9ef7-2a4a86480e6c", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002", + "version": "3.0.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf62bc72-111e-4768-a0f2-c61627cf9b62", + "name": "txw2", + "version": "2.3.3.b02-redhat-00004", + "purl": [ + { + "uuid": "32ad66cc-3954-509d-8162-cf0944101f54", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9d8f2973-cac9-53d5-945c-ed657eeac886", + "purl": "pkg:maven/org.glassfish.jaxb/txw2" + }, + "version": { + "uuid": "762730f4-a1ce-5ca9-97a3-90615585c768", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004", + "version": "2.3.3.b02-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f4f85f7-1eff-4487-869a-28717ad63a00", + "name": "quarkus-devtools-message-writer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c3089677-7ed5-5e80-bcb0-7c9bf3d206ff", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9df043cd-9411-5a0c-b890-0bb8f486f239", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer" + }, + "version": { + "uuid": "9ca065a0-36ee-5213-b715-cdbbf893562c", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-014069d6-89c8-4277-aac0-6963bd5005a7", + "name": "quarkus-arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ac9b931f-aa73-559e-83bf-3ca2a91950c8", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e4c3064-2c18-528d-aa07-701eea978318", + "purl": "pkg:maven/io.quarkus/quarkus-arc" + }, + "version": { + "uuid": "3b13dd42-42a6-58bf-afc9-353894a765a7", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6dba054e-c67f-4ecc-b9f9-28278f946f46", + "name": "quarkus-smallrye-jwt-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "72b8bc46-3c8d-5107-a96f-bb334d88e484", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9e64c5b0-7983-571a-8b07-1343eb6c07a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment" + }, + "version": { + "uuid": "da1597a1-9955-5cea-84e6-9e77a75d77c1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a051515f-b058-4911-8601-6ed67ea562c0", + "name": "plexus-cipher", + "version": "2.0", + "purl": [ + { + "uuid": "bce02e51-5ffe-5524-9363-638003b42b1c", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar", + "base": { + "uuid": "9e84e572-3ff4-584b-ae44-9056ec5d0947", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher" + }, + "version": { + "uuid": "d94b8c2a-73c6-5ef3-bb1d-03f21bb6e448", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-710b0f62-b01c-4a5d-8c5d-59d32fca85ae", + "name": "hibernate-graalvm", + "version": "5.6.15.Final", + "purl": [ + { + "uuid": "25cba352-6118-5b24-8a66-1109fe64f6dc", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar", + "base": { + "uuid": "9ebf23fe-cf5a-5b89-82a2-0db8b5802a5b", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm" + }, + "version": { + "uuid": "b22dd4f9-22bd-518e-bfd8-fbca2c8e6636", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final", + "version": "5.6.15.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6634e80c-0a68-4852-8ed8-6f1412906dc1", + "name": "quarkus-micrometer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8149cb27-43eb-530d-a5c3-9862d8751717", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9ec07e2c-785f-51f0-a277-07119eb3c876", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment" + }, + "version": { + "uuid": "077f4245-969c-5509-9850-57b828d5a874", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3af81bab-d8fd-47aa-b86f-c08d77bfb53d", + "name": "quarkus-smallrye-reactive-messaging-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5e6f667e-1bd1-5c85-bad1-52f5435657ab", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9eeb7ed8-013c-55cf-a68c-22ff0aea137b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment" + }, + "version": { + "uuid": "68913a3c-f609-531b-81ef-7f640e828566", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-49ccfb96-1fd9-4336-bf0b-2d4930a4a33b", + "name": "servicebinding-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "8a43eae9-b23f-5d48-abbb-480bc3743845", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9f22d621-8d93-5eb0-ae8d-dccbc2fec9d2", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations" + }, + "version": { + "uuid": "9aba4d32-4c5a-5765-8be2-0c14a70381db", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aa6a7b03-7e51-4e5d-b6c6-e55c580c5b3c", + "name": "quarkus-spring-data-commons-api", + "version": "2.1.0.SP2-redhat-00002", + "purl": [ + { + "uuid": "3192d31f-8c98-595d-b3f3-99ede09a4b03", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "9fbd3847-34a9-51b7-a363-38b828e5c7a0", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api" + }, + "version": { + "uuid": "388c8ce6-b933-57cf-9cc3-e9b8319b084a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002", + "version": "2.1.0.SP2-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-65669164-4163-4f7d-8050-53867a358667", + "name": "kubernetes-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "5689aba4-a804-55dd-a8a4-7b03d499438d", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1210bdc-73c0-53f0-bbda-3026831c8055", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations" + }, + "version": { + "uuid": "e7adc4ca-0726-59aa-82b1-65df54b89017", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-172b4b36-7807-446c-a885-b418c478714e", + "name": "smallrye-graphql-api", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "8ddf3415-cdb8-5127-91a9-1afbae7fe739", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a1d01979-c976-509b-957a-64180057894f", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api" + }, + "version": { + "uuid": "b798bf6e-d981-5152-afe1-07ba4043ad82", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7da82dc2-dc81-4112-a044-6ac0dc771cfd", + "name": "quarkus-avro", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4093e8d1-c6b1-56b6-a26c-914a596ac177", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a21b936d-f87a-5868-bf25-c2da931fc246", + "purl": "pkg:maven/io.quarkus/quarkus-avro" + }, + "version": { + "uuid": "817d4f59-f970-5273-8cdd-6bec155c197f", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e80a28-3c33-488f-8e8a-0cc61e0db024", + "name": "shrinkwrap-resolver-spi-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "a750c495-2519-50d7-ab05-b82f2a12caa4", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "a22f790f-9748-53a0-ad9c-fdfa579da877", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive" + }, + "version": { + "uuid": "2d4bc402-5b9f-5b18-b025-7d606f43b849", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d9c935f8-1cf3-429a-a65e-3768d5de7ada", + "name": "quarkus-devservices-derby", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "7c632971-b1b2-5ebc-9802-c3f20f5f8ab3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar", + "base": { + "uuid": "a2a9d404-b720-5968-bac4-579fa50dd40b", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby" + }, + "version": { + "uuid": "28d2d005-fa78-50e8-a0b2-8da5a269fc9f", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc1a9190-6b70-4834-8e0e-48b74fd172a1", + "name": "quarkus-jdbc-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0875f742-36df-5828-96c9-af456be678e7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2aa172b-411e-5444-8b2e-d42cb4415f8b", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql" + }, + "version": { + "uuid": "a6c0b74c-5619-537b-98a5-97f7772723fe", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc4e972f-69d6-48e5-9127-a362fc3d4010", + "name": "junit-jupiter-api", + "version": "5.9.1", + "purl": [ + { + "uuid": "29d0342d-a675-54fe-b245-75bb89753104", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "base": { + "uuid": "a2c9e015-c80d-5252-b366-be7dafb50f83", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api" + }, + "version": { + "uuid": "a0767967-0dd7-5630-9c00-7f7edc8b3335", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e53806d0-e917-4ba5-8c09-c5325e4e4a29", + "name": "quarkus-scheduler-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7daf0177-7c44-5ce2-abdd-c10da99f4cab", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a2cafc28-0a55-5463-9fa7-8d02dc70391f", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment" + }, + "version": { + "uuid": "556b676f-f02f-595e-a33e-ce3e19b828a6", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8453d252-74cf-42a1-b6b0-b2318b7baea4", + "name": "stork-core", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "80cbfdd1-dd80-5082-a278-5629f5587045", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a318ef05-4059-56eb-9cfd-7a2dc6fa6912", + "purl": "pkg:maven/io.smallrye.stork/stork-core" + }, + "version": { + "uuid": "6e82c133-5294-5bf2-b13e-3cbc9b5efa90", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09a7c643-bf29-4363-86e0-2e15223cb9c2", + "name": "smallrye-fault-tolerance-core", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "4a881159-ff9a-5384-8a22-f5d485ea722d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a39c9856-ed46-5125-a1c2-f637951936e3", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core" + }, + "version": { + "uuid": "8a9e7f32-edce-57e4-bcc7-35ceeef6ad59", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c3625f7-cede-42f6-941f-2cadd1dd02ed", + "name": "quarkus-smallrye-health-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1ac15027-2f56-56e9-854b-6c4f2a962b62", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44bef55-7920-56ab-8345-d3f36424051b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi" + }, + "version": { + "uuid": "ffe857ff-5085-5e3d-9620-296c47d47956", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceb5fe9d-9ef1-4afb-babe-7d9b5789211e", + "name": "opentelemetry-instrumentation-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "53133a17-dc08-570e-95df-cedfaab4583a", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a44fe4c2-46f3-51ed-b2a7-f97558c77ef7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api" + }, + "version": { + "uuid": "1717bba8-472c-5889-ae06-3aa4557cda6b", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96e098bc-ea70-4bc2-9236-ba0016461aaf", + "name": "org.eclipse.transformer", + "version": "0.5.0", + "purl": [ + { + "uuid": "4df009f8-c5a5-5679-84d4-abe2de963b46", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "base": { + "uuid": "a45ed202-b801-55e9-a2ff-feeb62f8d3c7", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer" + }, + "version": { + "uuid": "41363790-0911-5279-a277-53961df31747", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0", + "version": "0.5.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dd1f1af8-760c-489f-ae23-19af661562a8", + "name": "json-patch", + "version": "1.13.0.redhat-00007", + "purl": [ + { + "uuid": "c9fa32c6-15cc-5ce6-b1c7-6f5ef7212c72", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a460e3d6-6d8b-5052-bc0b-2feec967180c", + "purl": "pkg:maven/com.github.java-json-tools/json-patch" + }, + "version": { + "uuid": "89bb020c-cce7-57e7-97ed-06bfda513e53", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007", + "version": "1.13.0.redhat-00007" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d368d8b-0b86-4df5-a0e7-82382f49f40b", + "name": "quarkus-panache-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b7ee19f-b6cd-5170-8b2f-c2d8054a2d52", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a462f106-9e7e-551f-ae30-9c385ea9c469", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common" + }, + "version": { + "uuid": "bc5e3e5a-9007-5fea-84f7-32d5c220be54", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a1956e07-7ad1-414e-bee0-f0332544dde1", + "name": "quarkus-jdbc-oracle-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "74773f81-2b44-57ef-8cb9-640f3773974d", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a46c9370-742a-5834-aeca-78315f0cef6e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment" + }, + "version": { + "uuid": "e68f7c7c-ae7d-506e-9c19-8288b87110b1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63df3915-1b7c-4e1c-8711-81404b9c3882", + "name": "quarkus-bootstrap-maven-resolver", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "87748030-57fa-5eb1-8949-271458c4eb89", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a4d204ab-0029-5780-8b93-4988d8b6f602", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver" + }, + "version": { + "uuid": "245b37ef-554e-59b2-ae47-f62ed4cc66ee", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-891df0b5-9db2-489c-8a78-8988e576f238", + "name": "quarkus-mutiny", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88ee5c2b-40b3-503d-8000-24a7f6490dba", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a50c1576-98e5-5270-bee9-03db1bc4e63d", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny" + }, + "version": { + "uuid": "558092c3-cec1-549d-80a7-1ce75c7c8a2b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3ee77a41-e8a7-4b5c-b576-f9125b138d84", + "name": "resteasy-reactive-common-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c16d9da6-2b73-513c-94d0-f952e66b9167", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a517a429-c199-5768-a449-b12f40024453", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor" + }, + "version": { + "uuid": "6b4684eb-705f-54ef-b04a-f5087b69838c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e5d05d9-39b1-485a-8de3-bf29a64038b0", + "name": "vertx-web-common", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "ccee0525-6e1c-5063-92f8-31a26339d3e9", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a54659b9-ff9b-5787-937f-c4ad566d4759", + "purl": "pkg:maven/io.vertx/vertx-web-common" + }, + "version": { + "uuid": "c4e8e173-7951-500f-ada2-61b6b907ca5f", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0eb5efa-d271-4c76-a518-d8248b2c6bf6", + "name": "quarkus-spring-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "515b624b-e7a8-5890-afad-ad61efc2de64", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a56c5039-7863-50d3-a09c-2a13355cf17d", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache" + }, + "version": { + "uuid": "d2ecb6ae-29f1-5a86-93fc-0f072dbbc07c", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c769adc5-011d-47d5-bc2a-e58edd9ecb76", + "name": "quarkus-qute", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5ae7faa-1491-5cc9-b011-e86818db6e5f", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5b81d9a-cdea-5e75-bc2c-943d256d3a9d", + "purl": "pkg:maven/io.quarkus/quarkus-qute" + }, + "version": { + "uuid": "289de4a4-d62d-57ff-8cf1-7eeec2b4b2d0", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e428f265-fa01-4065-a184-2ac90cc8a25b", + "name": "kafka-streams", + "version": "3.2.3.redhat-00011", + "purl": [ + { + "uuid": "0d39f533-1000-5fba-9b6e-c2fb33d2d65f", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c58a06-5e54-50f7-91d1-9a1935129919", + "purl": "pkg:maven/org.apache.kafka/kafka-streams" + }, + "version": { + "uuid": "74999747-9c16-5450-8583-448b4e22a3d6", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011", + "version": "3.2.3.redhat-00011" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-008baaa8-8056-48c3-b019-24a82b3a4bf1", + "name": "quarkus-smallrye-metrics", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd26dc77-054e-502c-bc44-3c6b80e74fad", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5c9830d-7f73-5389-9dba-e9cb66ba91d2", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics" + }, + "version": { + "uuid": "2a37afdd-d720-5891-b85e-ca69d6d9c46f", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98ddc554-a57b-4498-b1b2-b0b64e276ede", + "name": "quarkus-smallrye-opentracing", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a3ba153b-e142-52ff-8678-6a07343b1840", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5d3be76-744f-5808-ae51-cd7152c10edb", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing" + }, + "version": { + "uuid": "0483a86b-4be2-5e41-9ab8-9481363bdc29", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f451c0cb-ec89-4a82-8f9a-7800470d831c", + "name": "quarkus-datasource-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8a6fda76-aba0-5f9a-8eec-962e34658d62", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a5f50241-7b05-58ec-a676-5c7f98134e67", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment" + }, + "version": { + "uuid": "0620bcbf-dcf9-5a3f-8a2e-ada6a9131612", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ec4b24cb-1c51-4692-a5ab-b5d57ed62005", + "name": "quarkus-resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4e2882ee-e8f2-5caa-bf21-d228086703e0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a63eacd6-584c-5dd6-ad64-daa1377f4af0", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson" + }, + "version": { + "uuid": "fc9dbe74-fa58-5478-9216-30891383f491", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-303f9f51-ea0c-40d2-9074-c941f540b35c", + "name": "infinispan-commons-test", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "5dac9517-d2fb-5c42-aab6-c0146d0ef898", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "base": { + "uuid": "a6c5ffde-ffb3-519f-9a9f-32e0fcbe1311", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test" + }, + "version": { + "uuid": "47496474-fdc7-54d3-abf1-e3b469c9dbb0", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c99b4eb-803b-4209-a976-5428d741db88", + "name": "stork-api", + "version": "1.1.2.redhat-00002", + "purl": [ + { + "uuid": "aaafd3bf-9a7a-54e7-86fb-3ef4a1fa235b", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a6e4e5a2-1c85-5a22-9165-2d1a09d1e8c6", + "purl": "pkg:maven/io.smallrye.stork/stork-api" + }, + "version": { + "uuid": "3881ff2d-3e60-5b21-a079-176b41639565", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002", + "version": "1.1.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ef03e2c-bb4a-49bc-888a-18cc01d830e8", + "name": "resteasy-reactive-common-types", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "da8218aa-1bed-5788-82a1-3d0cbe251c66", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7006e0d-50f6-5e50-a334-097abe32ac60", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types" + }, + "version": { + "uuid": "7d9453dd-b7f7-5648-8eed-6504c777dd0a", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad24d95c-698b-43c8-a36b-57e68ac1cba5", + "name": "quarkus-devservices-mssql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "669552ab-82ce-5109-b276-ed2b71b37951", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7071bc7-2ab2-573b-998d-fbc29756eb93", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql" + }, + "version": { + "uuid": "907db670-f9ba-52ac-b8e0-106b7b21b2c3", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37dd0078-95f8-4c28-a970-d4dbdbf85368", + "name": "org.jacoco.report", + "version": "0.8.8", + "purl": [ + { + "uuid": "899e0071-b01a-57b6-8e6c-eff34997b312", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "base": { + "uuid": "a73e2f5b-867c-56ec-b4d1-d239195cf58c", + "purl": "pkg:maven/org.jacoco/org.jacoco.report" + }, + "version": { + "uuid": "e6f5b5ea-56e0-515f-9cf2-9afa0a4a2e81", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d12885f-2e06-44d8-ab73-01ee247a9187", + "name": "wagon-provider-api", + "version": "3.5.1", + "purl": [ + { + "uuid": "f170f971-44d8-5b43-b666-81964273d97b", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "base": { + "uuid": "a74fc332-a8da-58fb-9b45-d8de975c04cb", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api" + }, + "version": { + "uuid": "86dffb8f-650a-59e1-b364-2b8d7cb9e115", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-017b7f2b-8aea-4698-9dff-afa56b500736", + "name": "elasticsearch-rest-client-sniffer", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "1c8b429b-e3bb-5c9a-bae9-aba6cab96742", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a77a8d78-ebde-524a-8c53-dab491a449ce", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer" + }, + "version": { + "uuid": "bb8750e3-8273-5a37-9fed-7ffcd782cd57", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ae73c7a-afc9-4052-abc6-ed601e1bbe12", + "name": "narayana-jts-integration", + "version": "5.13.1.Final-redhat-00001", + "purl": [ + { + "uuid": "056412dd-a8f4-5b2e-8b86-fddde4df5127", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a7cba9a7-9987-560f-98ec-2067da809448", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration" + }, + "version": { + "uuid": "d83519eb-4a3e-5044-9546-f18123e07b1f", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001", + "version": "5.13.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29c17706-1d5a-40ae-8498-087c7932c404", + "name": "quarkus-smallrye-metrics-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "6fe294e9-f209-5483-b98a-9c9308a9ab2c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a91b7192-9283-5f97-805b-321b3349c545", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment" + }, + "version": { + "uuid": "02a8a9ea-afec-50e7-8afd-8c38bdc90381", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bf0ec7c3-11dd-44f6-9226-c2ec7513f36e", + "name": "kubernetes-model-rbac", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e7f9d09e-1d51-5d20-9952-872c4a516c65", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a95ff8d3-a90e-55ef-a260-b3348fd27a83", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac" + }, + "version": { + "uuid": "ca8a3467-82a9-541c-a954-f0691035bb93", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e87d737-00b6-4d6b-8a3b-ee35fbe17894", + "name": "bson-record-codec", + "version": "4.7.2", + "purl": [ + { + "uuid": "87bd9835-0a76-59f9-9e60-312973b6d8fa", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "base": { + "uuid": "a982f454-4b85-54d3-8bff-219fc34d94aa", + "purl": "pkg:maven/org.mongodb/bson-record-codec" + }, + "version": { + "uuid": "75c64c9d-420c-554b-9c58-bedb79e370fc", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfa97a5d-0a3a-422c-b533-495986937ab0", + "name": "quarkus-websockets-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8718bc4b-91f4-58b8-8ce2-a2b62a1582b3", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9b32bec-1535-58aa-bd9e-5e5b6ae73372", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment" + }, + "version": { + "uuid": "a9331cac-8dd6-5970-8ddf-e6dd187663cd", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-301ad4de-2d36-4397-b512-dfbe4881ab15", + "name": "jackson-jaxrs-json-provider", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "c6fb4a75-1e19-53ed-afa5-522ec608ea4d", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "a9c75185-9157-56aa-8b0f-8e97aa12b422", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider" + }, + "version": { + "uuid": "fafd3497-e0fe-5a02-a401-c779ecc6bdc5", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c53901ad-4c41-444d-878c-5a3853473c18", + "name": "smallrye-fault-tolerance-mutiny", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "84b7b16d-2de8-51b4-b715-eccf5c869f25", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa137d6c-74f1-558c-93ca-d67d72da1e1d", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny" + }, + "version": { + "uuid": "7c13efbc-ef63-5198-9393-c7043f04b4f8", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-93bf3c52-5bfa-4ecd-af2f-635d45b85c55", + "name": "quarkus-fs-util", + "version": "0.0.9.redhat-00003", + "purl": [ + { + "uuid": "834a103e-902f-5e2e-a646-9ef8f9710e5f", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa2a8226-6ae5-5eb3-a055-62497a754f27", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util" + }, + "version": { + "uuid": "bbf326f1-bd76-5630-b57c-b7132a58cef0", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003", + "version": "0.0.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d7908c34-3692-426b-9f99-d0ce56eeccf8", + "name": "knative-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "b957c4eb-7c9a-5c37-8ba3-d4fdacd7825b", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aa43d542-4e59-5ff0-89fd-dd78ac6aaa6a", + "purl": "pkg:maven/io.dekorate/knative-annotations" + }, + "version": { + "uuid": "b0af83f1-344b-57f0-a678-2d9542a024ac", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-667b4d5e-cdeb-4685-8d46-83adf2838236", + "name": "btf", + "version": "1.3.0.redhat-00003", + "purl": [ + { + "uuid": "e9842b88-63f6-5d31-8ed6-a971c46b0303", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aaa1e2ba-8b4c-5271-8e02-a28948f81a95", + "purl": "pkg:maven/com.github.java-json-tools/btf" + }, + "version": { + "uuid": "efba71c1-3555-5a6c-bf2e-fd919b543528", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003", + "version": "1.3.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15dbdcaa-d711-4c14-a539-6e75bfe91a59", + "name": "resteasy-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "aa9f9f22-7ec2-539b-a3e6-db40a84ad862", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab04c64f-975d-5573-a615-7d2bbdae0bfd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson" + }, + "version": { + "uuid": "bca9dc53-6971-5836-a00e-ce89d99e5a8c", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cc31759e-a95b-4640-9bbc-c2fe5954eb79", + "name": "quarkus-jaeger-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb08d125-73d6-5057-8e9b-f0a6f83359c4", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ab7c597d-4fb3-5346-a38b-93a986f86aaf", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment" + }, + "version": { + "uuid": "25632245-49ed-5c4b-a915-663d53c8be7a", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d0668cf-8d30-47aa-9d14-63806309258d", + "name": "quarkus-jsonb-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88714dff-3c3d-5355-9918-6535fdca4139", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "abd436b3-604f-5064-822c-14b38771497a", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi" + }, + "version": { + "uuid": "d2084924-2339-59ae-8d71-668f4b37176c", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b14ec9d3-69a2-45ad-a7ec-76e51500adb4", + "name": "kubernetes-model-common", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "a9bcc51b-bf91-5f5c-a5db-e8148e58fb96", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ac387e91-927d-52ae-9a26-bfcff64009cc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common" + }, + "version": { + "uuid": "a925f3eb-304a-5926-8f23-bf9a71454d5a", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92f47d5-6d74-4dfa-9a03-1017989ea3ca", + "name": "quarkus-resteasy-multipart", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a7d46a6a-8561-510e-9e2b-d588b6ab56b4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aca1f02c-7f73-5c80-997f-391190a548a7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart" + }, + "version": { + "uuid": "ec5f69d6-0b02-5a8b-8d24-501783dc5514", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cb246c02-310a-477c-803d-46702f764eea", + "name": "plexus-compiler-api", + "version": "2.7", + "purl": [ + { + "uuid": "d34ea620-b813-55db-9b2d-004f1a15091f", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "base": { + "uuid": "acbc3879-9e4c-566e-b0d5-5680b45181de", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api" + }, + "version": { + "uuid": "26b86c0d-6863-5e84-89ba-9ab90a98ead0", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7", + "version": "2.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-add95616-a4fc-460a-a480-605b2f787876", + "name": "kubernetes-model-networking", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "ffbae85a-7dfa-518f-aaa8-62af10a29a51", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "acedb9e0-cc89-5460-87bf-b1cb4e31177f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking" + }, + "version": { + "uuid": "22811d32-ef03-527b-887b-9a8754ac4fd4", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6cb4a43a-380f-40b3-b196-54b1f46395f8", + "name": "quarkus-narayana-jta", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5313707f-d662-5b75-a796-642bda3b77c2", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad2dee77-d472-5cf1-96ef-83a361d66fed", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta" + }, + "version": { + "uuid": "d50fb45f-283b-53fa-872c-f7ca5f53d4fc", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a835b50-f148-47c5-853c-02089d9df2cb", + "name": "opentracing-concurrent", + "version": "0.4.0.redhat-00002", + "purl": [ + { + "uuid": "69d669fb-682a-56d4-8e54-1e98304c32ae", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ad524135-9b8f-57d7-ad7f-66f319939403", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent" + }, + "version": { + "uuid": "b5bd04f5-9aef-5474-ae94-a170afeda698", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002", + "version": "0.4.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-90f322fe-ae88-4695-be77-8f60e6b06d3d", + "name": "quarkus-mailer-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0688ee06-5888-5216-957c-94739a0f0869", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae4bf923-0e17-54f3-a6a2-e429010c9743", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment" + }, + "version": { + "uuid": "765cdd7c-5b8f-5793-8864-3a10c765c677", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a58c69b-be61-48cf-8ba2-af220e958f23", + "name": "quarkus-kubernetes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b230e2bb-3462-5899-880a-280f096d0e73", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ae5704d8-da92-5d2c-9fad-37b7b9d8e2ce", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes" + }, + "version": { + "uuid": "ab28e575-2a40-56da-b59a-8025b69b36fb", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-75d63abe-1fed-4a80-8c57-22b10d4e0a70", + "name": "plexus-classworlds", + "version": "2.6.0", + "purl": [ + { + "uuid": "fdb841fe-fddc-5669-87e7-72f6707e82d2", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "base": { + "uuid": "ae72ea11-d623-59ae-9e30-1fad358823c3", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds" + }, + "version": { + "uuid": "9d2a817f-d18f-5551-a990-42481ec2ab37", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0", + "version": "2.6.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b7fa52c-b248-4335-b3c9-17f29fff0a7b", + "name": "hibernate-search-util-common", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "d62eacf7-8ba6-5bb1-81c3-bc9f277eabe0", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "aebb49eb-e0df-5725-b6a9-eff9316c4692", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common" + }, + "version": { + "uuid": "80b011d3-2718-5f49-95b7-59ce3efe5fcb", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-70218961-bc6a-4cbc-b765-1b27f15f2545", + "name": "vertx-uri-template", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "9ebf2c6a-a509-591e-ae41-5a80eac203d2", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af6d5dad-4f1e-5981-ad57-1f8825c39c8f", + "purl": "pkg:maven/io.vertx/vertx-uri-template" + }, + "version": { + "uuid": "55633649-10d8-53af-99bc-05fbcf18e083", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f9e643e-0c95-4c7a-a496-a755dcfcdfac", + "name": "quarkus-oidc-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "13bfa14d-7e22-5378-aa7f-98ec6dc4df8f", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "af73962a-e96b-5b6d-9bb4-7055d5005aaf", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment" + }, + "version": { + "uuid": "ed12e1be-db8b-5daa-a559-ca91dcafd1d0", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-28e51f46-74c7-49cd-8c3d-d1a5afecfbae", + "name": "quarkus-hibernate-search-orm-elasticsearch", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d4f24d3-9d33-58e1-bcb2-fe6e3561f16b", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b003df58-6a0b-5761-ad37-aebccd7ae80a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch" + }, + "version": { + "uuid": "2d9612fb-9177-5271-9aad-1d9576c124e0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-223d51f5-099c-4871-a8cd-ffc20951af22", + "name": "quarkus-spring-context-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "7b41fde2-f915-5564-8a84-eaa69045d0b2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b024b481-4312-59a7-80ae-87302e3c14df", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api" + }, + "version": { + "uuid": "41712f99-a8fc-5b5a-b1d0-4e895abf4163", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4249d006-888b-4ecf-aefd-bbc1aa25bb4e", + "name": "netty-handler-proxy", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "623955d6-e466-5312-9ac7-54acab01333e", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b056e5c5-162b-59b4-85c7-2a2f4055db3b", + "purl": "pkg:maven/io.netty/netty-handler-proxy" + }, + "version": { + "uuid": "b20cfab0-0860-5b79-8785-2f81bf383389", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc4bca3f-9689-444a-ac1a-290083a36440", + "name": "resteasy-cdi", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "dc456bc3-cecd-5899-a9d2-d236fdbdb4c5", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b05d7994-61a3-5d46-97d9-c4dd37460ed4", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi" + }, + "version": { + "uuid": "3ffcc0f5-cff3-5abb-ac26-6995f44cefb7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-78450b9e-300f-4e78-85a1-35441de0ad66", + "name": "quarkus-transaction-annotations", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8f6fa2ef-e221-5e0e-bd6f-2eb291f0a872", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b094d2f2-26f5-589f-a9aa-b2293997787e", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations" + }, + "version": { + "uuid": "0085ea99-2b38-5c5a-a407-75af872e7141", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee332db5-0cb1-48f8-a646-4f1cd997c7c8", + "name": "smallrye-metrics", + "version": "3.0.5.redhat-00001", + "purl": [ + { + "uuid": "30dd4750-c3d9-56a6-8e87-50b36d722ee7", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b11023dd-4480-59e6-91d6-98563f109b70", + "purl": "pkg:maven/io.smallrye/smallrye-metrics" + }, + "version": { + "uuid": "3081112b-1226-5064-99dc-3cb43b1c767d", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001", + "version": "3.0.5.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9e52c5a2-74d9-46c7-890e-7fd94697f3d9", + "name": "kubernetes-model-autoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "e615495d-b67a-5bc6-b883-1058c54a3bbc", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b15923b2-27e1-5859-a279-dd9dd65c606f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling" + }, + "version": { + "uuid": "67021ed3-8e27-51bd-bf84-31a0b0956fb0", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dbab4b6b-f934-42b6-8260-f83ad5824032", + "name": "smallrye-mutiny-vertx-uri-template", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "907e2d89-5c28-5b37-80f9-02a4c54e9f8c", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b16069ce-be7e-5be6-ba82-75b3ba3040a9", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template" + }, + "version": { + "uuid": "87902759-9cc8-5cfe-8132-14d79f667e99", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af60e412-8750-4e04-89c8-9846406b58f2", + "name": "wildfly-elytron-sasl-oauth2", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "294e5b64-85dc-53c5-866d-e1634bc3ed33", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b190be77-4ea8-583d-9686-551543a3e88f", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2" + }, + "version": { + "uuid": "abce7ca7-bd45-54cc-9f8f-b4b452704fc6", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e97119c-0fde-45b4-9b9a-425ca2acdf3f", + "name": "quarkus-swagger-ui-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "57c5a24c-606b-5a93-9c2a-75781efc6465", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1937ef8-56bd-51d4-83a2-7c5cc5c2c2a1", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment" + }, + "version": { + "uuid": "60f441f3-d7d8-5024-b00c-7c1b8efbb077", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fecc771e-7b86-4b29-94b0-922478a6e707", + "name": "quarkus-spring-core-api", + "version": "5.2.0.SP7-redhat-00001", + "purl": [ + { + "uuid": "143340c8-8b56-5d2b-b35c-6ac9983484f3", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1d58c38-3451-5e47-8974-60e7f4c872ce", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api" + }, + "version": { + "uuid": "0325af44-4120-56e8-95bd-e6bd1e9b355b", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001", + "version": "5.2.0.SP7-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f466ccaa-7abe-47f7-aaee-babef544025f", + "name": "quarkus-resteasy-multipart-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ef86130-0f3f-52b5-b90b-ba8ca10a46a6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b1e53941-21b4-5688-9d60-de6797c2450b", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment" + }, + "version": { + "uuid": "33235e9f-a1d9-54bb-9cf1-2e20231f70f7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-67cc2dc5-fee0-48ef-b6c0-7fbf34c8211a", + "name": "quarkus-rest-client-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45578196-ca80-55ee-9774-a4c44e749451", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b34fc052-8b75-5228-b4ea-29e2ab12bf46", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson" + }, + "version": { + "uuid": "75e92e4d-e142-5fcd-90bf-dbc83b51ee7b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1cf14635-0d46-498f-a8f2-5ebea5f035cb", + "name": "jose4j", + "version": "0.8.0.redhat-00001", + "purl": [ + { + "uuid": "f0444aa9-cceb-59d1-bbc7-22ddf95ddb94", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b37fa655-67b5-5199-8ddd-85a48593d548", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j" + }, + "version": { + "uuid": "166c593c-ff1b-5f07-86ef-f2927fbb440e", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001", + "version": "0.8.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fffc4e8b-47ae-434d-8666-1a46cde4bd2f", + "name": "resteasy-jaxb-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "3d83cb58-ca49-556e-a495-e27d40f3847a", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3c7618d-7e09-511d-b074-16157f80df6b", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider" + }, + "version": { + "uuid": "29622fb3-ed1d-56d3-b23d-fbd4a7959fca", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-800126f5-a1ce-47a1-934e-b29a042dfe8d", + "name": "opentracing-noop", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "16911099-604f-5881-bd58-38935b457b10", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b3ec962d-4969-5e14-b5aa-6141fe033b4f", + "purl": "pkg:maven/io.opentracing/opentracing-noop" + }, + "version": { + "uuid": "c6e4b9fe-325c-53d5-adfb-cc53c8339827", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-73408852-3ac6-49b3-9e98-466eb01e902e", + "name": "jackson-datatype-jdk8", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "085e740b-858c-57c9-bec5-04d7eff1d535", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4276e6a-374c-52fa-97c5-3dba49a00e09", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8" + }, + "version": { + "uuid": "3ed020ec-5a64-5d84-8b5e-067cec7daadc", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-df5002af-a5df-4924-a37f-c3d410f5ea26", + "name": "asm-tree", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "ca2b9b4b-2e66-5119-ad08-f6d02b1a9bfc", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b49ce4e8-c91a-5d67-a75a-5a60a8794502", + "purl": "pkg:maven/org.ow2.asm/asm-tree" + }, + "version": { + "uuid": "a9a01fa6-36f1-51e6-8de6-147e6f2cabab", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a53fd45c-c958-40a2-b6fd-0af85d57511e", + "name": "agroal-pool", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "ec369d74-86f4-5119-b18f-a29059b09555", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cde2f11e-04f7-5125-9966-92e4dfbcbc38", + "purl": "pkg:maven/io.agroal/agroal-pool" + }, + "version": { + "uuid": "7e3f6b7b-ff41-51f9-a38f-b786825742f4", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bba3b96f-09d0-49a9-9beb-1ed95705dc03", + "name": "wildfly-elytron-mechanism-gssapi", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "26bfa4d3-24fe-54a5-8896-0e8f2b153721", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4b1f28f-3de7-5363-af61-0ccbf2dee35a", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi" + }, + "version": { + "uuid": "bf4c1a1b-8f56-5aae-a8f1-24d3ee4f4cb8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62d38fee-c1ac-47b0-b054-7e5eea74109d", + "name": "logging-interceptor", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "3fa65adf-1d1d-5af7-9184-6b92c2aff979", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b4e1538d-805f-525c-bc59-d2e48c1bd55b", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor" + }, + "version": { + "uuid": "dfc77133-6d23-5c7b-814a-6093f6c7f9b0", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f5aa8685-839d-4a12-b7cb-1f413418ebf0", + "name": "quarkus-agroal-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f894eaba-d07d-5744-9c29-25100d5c450f", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b50622f4-f7b2-5458-9c2e-9e22f1448f76", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment" + }, + "version": { + "uuid": "67eec0b0-0d30-55c5-a312-a6b94d94ab32", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-248daae5-2712-4d93-afb5-04001ed14f36", + "name": "quarkus-datasource-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3ed57da3-c579-518d-9a2a-8584fb119536", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b512e741-660a-5a85-829b-87e3449751ff", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi" + }, + "version": { + "uuid": "4cf989c2-7a4d-5e25-8384-e3c4748acafe", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-97d3be1c-7f9f-4676-b32f-fe8c98e68b87", + "name": "quarkus-grpc-codegen", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "cf95cbe5-417c-59e0-aa98-00bd2e5a4675", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b580173b-e9d4-53f1-9970-e0498e968f46", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen" + }, + "version": { + "uuid": "2f598641-f28c-52ee-87d2-436a9a32e2b7", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afd70c59-a855-4146-a50a-eb24fe7672a3", + "name": "client", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "5130c89a-91b8-5d99-a699-f22abfd676a5", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b590ff9b-9038-5bb4-9a9d-4e3cc4a6aa8e", + "purl": "pkg:maven/com.ongres.scram/client" + }, + "version": { + "uuid": "f386ea64-8c35-5676-90a2-35777f9e33b6", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d65c4cf4-070d-4f3d-8e4c-c14e2df8232c", + "name": "jboss-logging-annotations", + "version": "2.2.1.Final-redhat-00001", + "purl": [ + { + "uuid": "30394aef-1ea9-5e43-94d2-ecda97b1027e", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b596b4c0-b1e7-507f-b06d-68f1a343619a", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations" + }, + "version": { + "uuid": "0e7c9265-9966-500e-90a4-268f83c34aac", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001", + "version": "2.2.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-26e49987-48b7-434b-b096-c21471019413", + "name": "smallrye-common-classloader", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "464b42b2-2e2a-59a8-8943-efce311df406", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b60672b4-c8b4-5ab9-80ed-658e17cb1dee", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader" + }, + "version": { + "uuid": "bfc4e87f-7214-5c50-8eb0-d014c2087789", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127ef7e3-6188-438d-a0ef-7a4e5aeab47f", + "name": "openshift-model-hive", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1c768849-e210-52ea-8936-c12745eac99f", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b65ae80f-2703-5731-92a5-1727b809764d", + "purl": "pkg:maven/io.fabric8/openshift-model-hive" + }, + "version": { + "uuid": "536c5d3e-fe4c-5ce9-bfc5-f72716b0f331", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cd12451d-aa25-49c2-b677-34613420f65b", + "name": "database-commons", + "version": "1.17.3", + "purl": [ + { + "uuid": "522509a5-a37f-53d2-aa22-470a69765d91", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "base": { + "uuid": "b69557e9-00ad-5d92-8133-f09e6618e94a", + "purl": "pkg:maven/org.testcontainers/database-commons" + }, + "version": { + "uuid": "8fba4ecc-95a4-51c4-bcf7-e2bcb8ffc979", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f5191a8-1693-40fc-80d4-377d1c73df66", + "name": "smallrye-common-expression", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "1d54c0df-e0af-5d31-8aa2-4555732b4a9f", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b6e778ce-3a5f-589b-b0fa-c35cda87023d", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression" + }, + "version": { + "uuid": "e2d85cfb-1025-56ca-8e4c-1d50dba3fb45", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f31f6766-e7e7-4ae0-8bff-a05f39354310", + "name": "docker-java-transport-zerodep", + "version": "3.2.13", + "purl": [ + { + "uuid": "cf64f108-9a77-597e-a4a6-6f53ef561b63", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "base": { + "uuid": "b6e7b38b-8ed6-5595-a798-67c15fcbf05a", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep" + }, + "version": { + "uuid": "4b90aa07-19c1-5382-919a-443f603f971f", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a6cb86f-e748-42cc-bd82-26bda20533e6", + "name": "smallrye-mutiny-vertx-web-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "6b308603-b862-5039-92e2-4c2d8674f9ba", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b742d5ca-53f8-5ae7-b035-9ddc58c24581", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client" + }, + "version": { + "uuid": "86b9234e-f302-52f1-b543-fff8b170718b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-63f4f2f6-6c41-4f57-952c-dd4adec4cd68", + "name": "jts-core", + "version": "1.17.0", + "purl": [ + { + "uuid": "84f96ac8-9732-5693-ae25-7170b7bc23d7", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "base": { + "uuid": "b74aeb10-cf01-582c-bc12-10c979aeb949", + "purl": "pkg:maven/org.locationtech.jts/jts-core" + }, + "version": { + "uuid": "cabd21e2-67f7-5033-a12a-429c2ff5eb56", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0", + "version": "1.17.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0586f265-f95b-49de-97ce-940eb6ffd4ce", + "name": "commons-cli", + "version": "1.4", + "purl": [ + { + "uuid": "75d171d4-14a6-58c3-9d31-4000b55881a0", + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar", + "base": { + "uuid": "b75b762e-baaa-5124-9fd5-74471f91dc50", + "purl": "pkg:maven/commons-cli/commons-cli" + }, + "version": { + "uuid": "ce7a4bac-ce8f-5dc3-9112-1caba6cc7cfd", + "purl": "pkg:maven/commons-cli/commons-cli@1.4", + "version": "1.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e384b3d-bffa-4c11-80e7-5be1e929e49f", + "name": "duct-tape", + "version": "1.0.8", + "purl": [ + { + "uuid": "b9e6e230-a396-5f26-b26e-e182e85dafd2", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "base": { + "uuid": "b7ac834c-83fa-53b3-b585-0dc0eaa28f06", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape" + }, + "version": { + "uuid": "7ac9111a-2a44-594c-ab5c-503e6a01c9b9", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8", + "version": "1.0.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1aac04e6-858f-4056-90ec-dd65d6b64cb5", + "name": "simpleclient_tracer_otel_agent", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "c4deafc7-6482-50a4-8436-e36c07ca42fa", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7ccfb15-a41f-5dc2-8426-f66229b3dc01", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent" + }, + "version": { + "uuid": "d234bab2-bf82-5d58-b691-f32b4f1754fb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c1338d6-3b15-4d64-ab3e-a10c4fab864e", + "name": "quarkus-security-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4125770e-844a-5eed-aca7-f4154a21fef8", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b7f7f1e8-25ad-529c-a456-c475ed534902", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi" + }, + "version": { + "uuid": "78b19386-0ab9-583b-9ace-3f99176c753b", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7cb94d95-f8e8-4722-9c8b-133edd74d0cc", + "name": "caffeine", + "version": "2.9.3.redhat-00003", + "purl": [ + { + "uuid": "e292e726-315c-570b-87f8-51bbdf0f0847", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b81c2dab-a823-5d0a-9667-7064e9747e17", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine" + }, + "version": { + "uuid": "4ea3a743-baea-50f4-8920-4da4c0e8acc4", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003", + "version": "2.9.3.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b406a7eb-2a55-4a47-8a6a-30859cd87319", + "name": "quarkus-cache", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e7df6f9b-ab20-5f55-b526-c007b3325b2a", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b8a536ff-e7ba-5ccc-a0e2-b59d6686167a", + "purl": "pkg:maven/io.quarkus/quarkus-cache" + }, + "version": { + "uuid": "1ac726da-4b50-5760-a8b5-f622f6ce8fc4", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9b16d3df-35b4-4de7-8ad2-5c0733adf5ca", + "name": "simpleclient_tracer_otel", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "34a94ccc-87c8-574c-ba55-242d07384fcb", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "b90bb626-7307-52e1-a224-32efbeda871c", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel" + }, + "version": { + "uuid": "fa2f7424-b589-53d6-97c4-235e0e80f187", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f78207a2-0a6a-4972-8c81-2b0827135754", + "name": "quarkus-resteasy-common-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "73bf5c22-bb19-58e4-bf6f-a3ced74c9597", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba6ea902-3057-5e32-b4c4-564c667d5864", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi" + }, + "version": { + "uuid": "02ddde8b-12f0-5ca0-991c-a3f844a2a1dc", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3da1fe45-302e-48bc-afda-44f43ab765f3", + "name": "smallrye-common-annotation", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "2c5e4216-4e09-52a3-ab72-e1cfb176fecf", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ba7853aa-d05d-5583-a8fc-b779a893c9e2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation" + }, + "version": { + "uuid": "8da60842-f248-5358-9dd9-5dc58bbd2fe1", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-abd5ee81-d6ec-4a56-92df-f2086ded8879", + "name": "quarkus-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "59daad81-458a-532e-8e4b-bac83b96abc6", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bab686d6-fd7b-596e-a316-20c86f16b245", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment" + }, + "version": { + "uuid": "80b9e62d-9008-5d69-a5bb-cd0b03c8134d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9a448094-2d27-44f5-8838-2cf4331e2412", + "name": "openshift-model-clusterautoscaling", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "63f8b62a-90c6-51e5-99eb-e36b44c5b3ec", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bb1abe73-e635-58bd-b917-af965646e86f", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling" + }, + "version": { + "uuid": "3a79987c-757b-56b1-be10-f9e2afd64414", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1e6523c-c6b5-4451-af64-b41bf668afb6", + "name": "derbyclient", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "aead92c3-cfc8-5df7-8e2a-226ac318821f", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "base": { + "uuid": "bb52166c-477a-5d69-824b-c2e4773ce0b4", + "purl": "pkg:maven/org.apache.derby/derbyclient" + }, + "version": { + "uuid": "32edc83f-e60b-5bd0-a99b-a55babe8defd", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c55f2889-33e1-4a38-b91b-f5a4c7e938e9", + "name": "vertx-mutiny-generator", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "0b3e3049-2b06-5306-8c73-bb74991c78a0", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc319620-6b8f-5424-a48f-159d0c9e9599", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator" + }, + "version": { + "uuid": "47e89793-483c-54ff-ba5b-651f250fe18c", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83a64c36-23c6-4450-a8e9-ca5bb7e6177b", + "name": "quarkus-spring-boot-properties-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0ecb7f2f-6e43-5fc4-962a-ed48dd1935e8", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc7db2c8-98df-5847-9ff0-b66674644633", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment" + }, + "version": { + "uuid": "92e2bbb5-a0c8-5c9f-ae43-781fb70ac666", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7a109d3c-0f6b-4845-95da-755cdb0a171b", + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "494deda2-802b-5677-a5ab-502533b0e24f", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc87fa94-f423-56eb-b22d-462dc63bf89a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi" + }, + "version": { + "uuid": "e7847a94-108e-553e-b0b2-760ea7dc37ae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-811bdc6a-22a1-4e19-a700-86361456bcf1", + "name": "quarkus-extension-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f6a5013c-4047-59b3-9fea-882f7cdb0450", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc887a8b-fa8a-5674-a92b-ae516c054e8d", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor" + }, + "version": { + "uuid": "564602ff-daa0-51d7-b0a4-49b1959571b1", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1c7b7c96-64f9-4de0-ac3f-d37ac7e72d3c", + "name": "simpleclient", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "1287506d-c02a-56d1-b3b9-33d0bfbbe75d", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bce26e70-c30b-56e0-831c-11a9bbf964ca", + "purl": "pkg:maven/io.prometheus/simpleclient" + }, + "version": { + "uuid": "22e609e2-0bb2-5747-8b81-5328cdbe2aa0", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3b8ba8cf-d579-4811-abed-fbdca1363287", + "name": "quarkus-opentelemetry-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9d4415cb-eb17-5b29-ad16-f202f3d06a14", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bd6e8f49-b1fc-52b5-bca1-63c2f5bc8881", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment" + }, + "version": { + "uuid": "42705cfa-6638-5dd6-a0a1-ec273e7b3bb7", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d5e9e485-a895-42a8-9d33-9419d5496ce7", + "name": "aopalliance", + "version": "1.0", + "purl": [ + { + "uuid": "ddd0e340-18b0-519b-b9ca-9127c9576f59", + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar", + "base": { + "uuid": "be4bb357-7956-5f7c-80e0-e6eb057ec1eb", + "purl": "pkg:maven/aopalliance/aopalliance" + }, + "version": { + "uuid": "f0a4e83a-177a-5c0e-adf7-3f9fd86ab354", + "purl": "pkg:maven/aopalliance/aopalliance@1.0", + "version": "1.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bfc6b7bf-551b-41db-ac76-3858e44c4950", + "name": "quarkus-rest-client-reactive-jackson", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "88a8026c-0e3d-5889-9692-0dd368c00273", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "beb64354-4f34-57f5-adeb-55dc35b8252f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson" + }, + "version": { + "uuid": "b2e7d260-aa64-5011-8abe-d5b5f3c550b8", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3db6727f-c699-42d4-9944-a0b3e6a03c1f", + "name": "mongodb-driver-core", + "version": "4.7.2", + "purl": [ + { + "uuid": "82a336f2-ef8d-5de3-9e47-d8258610d879", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "base": { + "uuid": "bf4aeb09-4fa0-572e-8f99-b6408b72bf04", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core" + }, + "version": { + "uuid": "ede32ba0-781c-5038-bc69-af9f4872d7da", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2", + "version": "4.7.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fb0e264c-0781-438c-82d1-6a3f4adafe74", + "name": "quarkus-hibernate-validator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7ffca768-1aac-5286-b6b9-0345aa49c08c", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf7829a4-4d05-5542-b6cd-d3858f454b96", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator" + }, + "version": { + "uuid": "7d28776d-c068-547d-8aa3-8dea9c4e2e41", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-127304a6-d01f-4f8a-8685-bb175bc628ae", + "name": "quarkus-rest-client-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bb1a455a-f6ba-554d-af23-34fab2c30ed5", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bf90e9c9-dbdb-5812-a939-846823cdde5c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment" + }, + "version": { + "uuid": "ccd1e9e5-e77c-5942-9195-e89f29048b26", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3d7e5683-049e-4ca3-a7eb-7c74166bf270", + "name": "quarkus-jdbc-h2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "bb07a947-8abd-5efe-a506-5d4b98290197", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar", + "base": { + "uuid": "bfa22aad-813e-5305-b413-79b96297e7ac", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2" + }, + "version": { + "uuid": "51150981-f062-5a23-a9d5-23a7e7c183e1", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ac9496bb-11c6-45b1-abaf-babbda819d3d", + "name": "smallrye-health-ui", + "version": "3.3.0.redhat-00002", + "purl": [ + { + "uuid": "f4897db0-9416-5900-9302-13b9482270fd", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bfaa8863-0a85-5878-a5f5-b605a6bed303", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui" + }, + "version": { + "uuid": "8bbcb3a5-b7c3-5e20-9e65-0064fd6f035a", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002", + "version": "3.3.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-42a08c97-bb36-4371-a6d6-7532ded21aa4", + "name": "wildfly-elytron-mechanism-scram", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "173f9d04-e754-5b8c-8e79-a7d030f2ce45", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0060407-27aa-5e64-8bdf-46a0918f63d7", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram" + }, + "version": { + "uuid": "e5637003-60cc-5b0c-bb49-3f5a159c5912", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2a7f930b-5eef-4d4c-ab17-a721ed63eb16", + "name": "commons-codec", + "version": "1.15.0.redhat-00008", + "purl": [ + { + "uuid": "ee288973-7f4b-583d-8cb0-d72c5125e12e", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c0322ef6-dec2-50e7-9a7f-bac805139694", + "purl": "pkg:maven/commons-codec/commons-codec" + }, + "version": { + "uuid": "5df06864-6fe1-546c-add4-0855e4741e80", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008", + "version": "1.15.0.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3e89e122-d3cb-4bd7-a015-80ea2ce4227d", + "name": "kubernetes-model-extensions", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "7b5beb38-1cbc-5d8d-87e7-34242494c3ab", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c11baae8-3b26-5695-b515-652630b81d8d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions" + }, + "version": { + "uuid": "170b75e7-41b5-564a-bba4-de1b99eb1b60", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ff4bf53f-782e-4929-8be1-6773c45e0321", + "name": "quarkus-jdbc-db2", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "5b628f22-01b0-5f21-9d70-edb366d09ba7", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar", + "base": { + "uuid": "c1524a71-ccd1-5d31-814c-85267a3c7100", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2" + }, + "version": { + "uuid": "8eb7c3ae-9e93-5ed6-9ec6-584e22184a80", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46b5ba29-c5e1-422c-bd89-a4cd7d32918f", + "name": "quarkus-scheduler-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f8a3d3a1-a04a-56e3-b5ec-7c0eeb92be1b", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c179b651-c10e-5827-9dcc-07c24d6963ca", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api" + }, + "version": { + "uuid": "aebae22b-7fad-5724-aadf-f7e93ca21312", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bba006a-8d20-4861-bd8f-4040b7800c52", + "name": "jboss-connector-api_1.7_spec", + "version": "1.0.0.Final", + "purl": [ + { + "uuid": "4ec275c4-9da3-5989-b946-63bdd4fa223c", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "base": { + "uuid": "c1a8e5c0-54d2-5e06-b718-80e831e15ca5", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec" + }, + "version": { + "uuid": "d918f616-1d07-5bf1-a834-e7f26623dd09", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final", + "version": "1.0.0.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7e15a6ad-2737-46e0-bd65-bcd52e336e09", + "name": "quarkus-jackson-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "117ffc0d-d066-502d-9ab0-db9a87e5bf16", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c1b86c4d-7b22-56ee-afb4-bd47394447ed", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi" + }, + "version": { + "uuid": "e3c590c3-a642-5a25-92f5-c74633e19f7f", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9d9de10a-d505-4bd5-987c-8d2f065d4373", + "name": "shrinkwrap-resolver-api-maven", + "version": "3.1.3", + "purl": [ + { + "uuid": "3130cca9-4892-530f-976d-b55898c422d6", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "base": { + "uuid": "c1daa764-390d-5e14-9602-772e31c88fa0", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven" + }, + "version": { + "uuid": "7e6b125e-f00b-52a5-b1b8-31757dcd33ed", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2b30ef8d-3d57-4f2a-84d5-3792712a5c92", + "name": "quarkus-reactive-pg-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ae0a9100-69a5-5795-953a-06a41f1f2cbc", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c237b650-b89b-5888-aeb1-9fedef81f41b", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client" + }, + "version": { + "uuid": "b89903ba-462e-5340-9102-6f5ec3b28bf6", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ed8f6a1-0abe-45b3-95eb-4d10f4c549ad", + "name": "resteasy-reactive-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "51fe20ab-f04d-5a95-b6e4-b677b7fa4ee8", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c24bdc76-cbee-5602-8925-cb320cb67033", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client" + }, + "version": { + "uuid": "bb7b4eb4-8570-5880-a9fd-5bfbcb470654", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8d3a99fc-23d6-40ec-a66c-c8c765ffa627", + "name": "elasticsearch-rest-client", + "version": "8.4.3.redhat-00002", + "purl": [ + { + "uuid": "791bdd6c-0100-5a2d-b761-8bd157bd6857", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2503d1f-c5df-59f4-9a37-ee9b43fd7dcd", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client" + }, + "version": { + "uuid": "badf5abe-d829-596c-9a87-ca255078745f", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002", + "version": "8.4.3.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea5e3c65-b994-4a1a-acb6-3273e72659fe", + "name": "mongodb", + "version": "1.17.3", + "purl": [ + { + "uuid": "156a5d24-0f5e-5f6f-aa3b-b767ee69be6e", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "base": { + "uuid": "c2910e9d-4512-579a-bbde-d295c725634d", + "purl": "pkg:maven/org.testcontainers/mongodb" + }, + "version": { + "uuid": "949c005b-3f95-5206-9511-070f3bb002c6", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4c20bcff-3790-4708-a9f1-4b58d2bb8d3e", + "name": "opentelemetry-sdk-common", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "2cd90a68-8edb-54eb-83bb-8d495267eeae", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c2c3ca09-4a25-56ae-bb3d-1d126d6a4928", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common" + }, + "version": { + "uuid": "70051e7b-1301-5195-80cb-f6b2f9483b27", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5efbc662-6a25-48e1-a1f5-82695b1637e7", + "name": "quarkus-infinispan-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e7e676-1070-5342-9efb-b0f15e12e1c3", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c304a290-381b-5ec7-9c62-dae6bdfc4712", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment" + }, + "version": { + "uuid": "02009d12-be92-56e0-bb8a-c7103317b927", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fe49a3a1-49a1-4050-89fb-1dfe8a263784", + "name": "kubernetes-model-apps", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "2fed7690-6261-554e-95ca-adb0bc5d473b", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c31b829a-e16d-5e61-9976-3c42ff2cef91", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps" + }, + "version": { + "uuid": "614b30c2-76c2-5922-ad4e-30ac909a19a3", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a088b32e-bcd3-4454-92ff-7304dde872b9", + "name": "quarkus-rest-client-config-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7da94023-a664-5603-b887-6146d1d8a79a", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c3792597-babb-5cdf-be19-edf43e05de75", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment" + }, + "version": { + "uuid": "98d5f791-db47-5589-8faf-17eb6bc9e0f3", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9c4d89d8-2cd3-44dc-a7db-667df14518a5", + "name": "quarkus-security-runtime-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c48073a9-9245-5fd9-a574-b009fafc5115", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c4600f25-a848-5551-98b3-72a94b7d8856", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi" + }, + "version": { + "uuid": "5a692d37-61f1-52a8-9520-2d543e0c5c31", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bb44a393-a8bb-4957-8d6a-55164c4c17d1", + "name": "openshift-model-miscellaneous", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "9b908b9d-c54e-5808-a3fa-4cfc6888c821", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5397cac-b49a-5ea7-b335-29b4677bf73e", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous" + }, + "version": { + "uuid": "0984895f-2fcb-59a8-b647-5f4c9da14fc8", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d08c424a-7e73-4b95-8d82-1147e41cec83", + "name": "quarkus-class-change-agent", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "201e7f0e-c1a1-56cd-84fa-640545076a13", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c57fc5d6-3a8c-528a-baa1-3891ef904b8f", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent" + }, + "version": { + "uuid": "fe5596ef-7151-5682-9fdd-4c0dd78b707d", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6824ec9-6014-4b7c-a37b-10b5a19bbb5a", + "name": "rocksdbjni", + "version": "6.29.4.redhat-00003", + "purl": [ + { + "uuid": "14ccb04a-6882-5ef0-8782-5180630fab08", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5a0874c-763d-5965-b72f-a51b2dedca22", + "purl": "pkg:maven/org.rocksdb/rocksdbjni" + }, + "version": { + "uuid": "1b651aea-6748-511c-9f57-6212252d51dc", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003", + "version": "6.29.4.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f1b88647-cf19-4fbf-a198-5496063c1b4a", + "name": "smallrye-mutiny-vertx-sql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "d8ef1e6a-46a5-54c8-9886-79e080ab5668", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c5ed2328-cc4e-58cd-a867-0d4b95a1f964", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client" + }, + "version": { + "uuid": "101f4a4f-485b-56af-9d9f-a6b8a0731bb1", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c542ebd4-13cc-4af1-ad60-63ca9441b2d4", + "name": "quarkus-spring-web", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "91d52121-2e68-50f0-b83c-6017c3eb60d1", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c618deec-c4c6-527f-aca7-3de7bfec0062", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web" + }, + "version": { + "uuid": "b3fc4345-ddf4-576d-9f53-1f4dde44b98e", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5791f9bf-f838-4ba2-a1ad-39aa09c0152b", + "name": "quarkus-hal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "21b1b624-f6ca-5b26-875a-8ed46a9c0ec0", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6298040-511d-513b-b3c9-2e11972101f9", + "purl": "pkg:maven/io.quarkus/quarkus-hal" + }, + "version": { + "uuid": "ed41b090-b79d-52e0-9570-30368d3070fb", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38c8759d-36e5-4db3-b309-afd4ed74cb72", + "name": "quarkus-mutiny-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4b8c9126-6fd4-54c5-8e9b-0f56fb13432b", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c62b7ee3-361d-54ab-9d31-52cfc86baa59", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment" + }, + "version": { + "uuid": "c4512ecd-bd30-5d5e-963c-d75c38c4e75e", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0ab13806-47d5-424c-951c-1257bc395fac", + "name": "asm", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4ac452a6-322a-5be1-9a03-97f4faec0846", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c6688112-7859-50c1-b268-37a70c6f5c6c", + "purl": "pkg:maven/org.ow2.asm/asm" + }, + "version": { + "uuid": "a2cc9f9a-c0cd-503f-abd9-438d0beb7832", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8dad42-8b11-4d70-a049-8bad56c7e7ed", + "name": "jdeparser", + "version": "2.0.3.Final", + "purl": [ + { + "uuid": "2f5ad9ed-52c5-5b8a-ba80-9f259b2b955f", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", + "base": { + "uuid": "c67725d0-1db9-5a9e-be9f-21c5452347d5", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser" + }, + "version": { + "uuid": "25456099-0280-5556-89cd-e4d1d961b389", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final", + "version": "2.0.3.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95be5c33-d6f8-4ed4-92f2-9baedb8a154a", + "name": "quarkus-oidc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a95f54c6-930e-560c-a51c-4d02b4739661", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8042e2e-4275-51ce-921a-1dcae7fc6761", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment" + }, + "version": { + "uuid": "3e0b9512-38c9-5de7-a662-39d3f36a3723", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56d6f412-3030-4ae4-8d0d-aa2d8c78a2f4", + "name": "resteasy-core", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "4424a848-5ded-5fe8-96d3-f40b12439da7", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c815ec3c-db72-556b-b676-010e4b05cd66", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core" + }, + "version": { + "uuid": "e1903d35-0c95-57f9-8f2a-25986a64ec75", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8e95a024-ee66-43b9-835b-2d11d5b493c0", + "name": "quarkus-resteasy-reactive-jaxb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "dc8315da-46e5-536c-a642-07e59fad8155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c81b2d5d-9c8f-5286-851b-fec430be2d1d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment" + }, + "version": { + "uuid": "990e83d9-051c-5dad-916a-fead476aa663", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-47c07c21-05e1-4d6e-b0a0-5e04c5df47ef", + "name": "infinispan-remote-query-client", + "version": "14.0.9.Final-redhat-00001", + "purl": [ + { + "uuid": "c62f0eeb-5ed0-593f-8108-bda47907197f", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8a5b843-eed0-5bad-b669-ebda4632f1f4", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client" + }, + "version": { + "uuid": "09379375-6a84-5436-9c47-c67844da5e4c", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001", + "version": "14.0.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0ada100-56a9-4985-8c49-ca049fb45ac6", + "name": "stringprep", + "version": "1.1.0.redhat-00002", + "purl": [ + { + "uuid": "2f9b6793-a68b-5888-b5bb-62babecea891", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c8b20608-964f-5c77-8a87-1eb7842ac87d", + "purl": "pkg:maven/com.ongres.stringprep/stringprep" + }, + "version": { + "uuid": "db706f6c-1dac-534f-92b9-c505a2d462df", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002", + "version": "1.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c0aeb25b-d890-4e4c-a142-f527507bab3f", + "name": "wildfly-elytron-sasl-digest", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "8284b064-5fe7-5061-a416-152769f56147", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c93ba262-ceff-5b89-9009-96b633839486", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest" + }, + "version": { + "uuid": "13fc05a6-2427-5a06-a203-ebfb0b86474c", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9593b6e2-86d4-49eb-a6d6-3330cee374a2", + "name": "openshift-model-storageversionmigrator", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "1dcc5ec2-0ba0-5eea-b665-39bb69223be7", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9450bb-0dd0-599b-915e-2ea3533f101d", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator" + }, + "version": { + "uuid": "bcaf5389-2a82-5669-b9aa-c85ba23dcb97", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5786c94e-39ca-4ee7-aa79-de9306f41c1c", + "name": "smallrye-mutiny-vertx-web-common", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "4cfdd208-d569-5c99-8d5a-429497899af6", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ca9daac1-622a-54f7-a7c9-94ab3d8eacca", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common" + }, + "version": { + "uuid": "bae0ccdc-c55f-5c6b-88cb-34070554f33a", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-093f8d34-1829-444e-b121-fd46d2e5a21d", + "name": "quarkus-reactive-datasource", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "454fde09-ab4c-527f-a07a-3c391e5c8050", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cab0d335-9258-5745-be2b-ae02849cccca", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource" + }, + "version": { + "uuid": "b6744a9f-1826-5338-86a3-24a219de8a6c", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8f3d595-7c07-4985-aa1b-7f6ae8ecf957", + "name": "quarkus-scheduler-kotlin", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "feeff538-4da3-5c93-a9e9-4837e2ab9089", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cc20cca2-8727-5b76-8462-adb1a4faa9bf", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin" + }, + "version": { + "uuid": "2483cc67-fa54-5dfc-8893-11ec9d90cd42", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-602547e7-1ca6-4ccd-aa95-19219c7593a6", + "name": "netty-codec-dns", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "fac6032a-a3fd-56f3-922e-65a6bda2358d", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ccec22eb-096f-5a75-b202-76243cef0248", + "purl": "pkg:maven/io.netty/netty-codec-dns" + }, + "version": { + "uuid": "c2c003af-376a-554f-b25b-40daaed23825", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-939ba758-bb97-4c7e-8745-8d9c2250805b", + "name": "bcpkix-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "29094e6c-4948-5a51-a69a-352f6f24b25e", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar", + "base": { + "uuid": "cd593f11-951e-5b98-9438-1f7d518c9a45", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on" + }, + "version": { + "uuid": "a14da170-3963-5f63-a4fe-8bb33b0e5892", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-cfb4276d-a7aa-41e1-86d6-d4241bb9032c", + "name": "elasticsearch", + "version": "1.17.3", + "purl": [ + { + "uuid": "84e92957-fbf3-529e-9f5a-d14532f3015e", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "base": { + "uuid": "cd69a3bb-bba0-5b16-b8da-1be0b02a1513", + "purl": "pkg:maven/org.testcontainers/elasticsearch" + }, + "version": { + "uuid": "48fe0ca9-93e3-5675-882e-d385f78a5eaa", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10b8f85c-d5bf-4887-af22-1a42526378ef", + "name": "quarkus-resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "997392c0-a505-53c2-b7a5-74bcc72276f6", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cdc79fdd-3e5e-5215-809b-85fc11bf9608", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common" + }, + "version": { + "uuid": "9a4d1bdf-74ad-542e-a639-3302f7ba899d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4fb3aa8-cc92-473b-8c65-dbd6ee2936a8", + "name": "quarkus-spring-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "807d6824-d29f-5abe-90bc-f8a69a3d96c2", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ceea7fb8-e1de-57d7-bede-60be4dca1173", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment" + }, + "version": { + "uuid": "e4de23fd-6bce-59ed-9731-d52c7508d17a", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-83341b2f-4f40-4aae-aab5-bf4bc15a2465", + "name": "quarkus-security-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "48382e1d-9bb2-5d55-bf16-5b2a0a8bd1b6", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf328f3f-3eb4-5533-83cf-b5a3e4bedc43", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment" + }, + "version": { + "uuid": "529aecde-30c7-56d4-acc7-3c58957e57aa", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-04a79f86-01ba-4c25-adbe-b04fdecaeb21", + "name": "simpleclient_common", + "version": "0.15.0.redhat-00001", + "purl": [ + { + "uuid": "4dc4a859-5dbd-5cf7-a812-e147a61176ee", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "cf6a8a20-e21a-5f28-b20c-a32c7473ebdc", + "purl": "pkg:maven/io.prometheus/simpleclient_common" + }, + "version": { + "uuid": "a79f0375-ced0-57d7-aa6d-57295f22b07b", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001", + "version": "0.15.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c2461bc7-1c16-4114-acc2-64b420d46f1e", + "name": "maven-resolver-spi", + "version": "1.6.3", + "purl": [ + { + "uuid": "e329de40-878e-533b-9156-9c5e2fce0c3f", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "base": { + "uuid": "cff3f5d2-e58e-5bbd-8ff6-b262cf895378", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi" + }, + "version": { + "uuid": "6d64fc8d-bb40-5924-be41-8dc8a0049348", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-efc8d6a4-2bf7-4dd9-aad2-eaf5d388f9b2", + "name": "openshift-annotations", + "version": "2.11.3.redhat-00001", + "purl": [ + { + "uuid": "66c3d028-caf8-57a6-9600-db8cfed5e7b8", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d06206e1-adac-5151-a93a-f41b028663b7", + "purl": "pkg:maven/io.dekorate/openshift-annotations" + }, + "version": { + "uuid": "beec2008-78cc-579c-9e2d-d369749d20ac", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001", + "version": "2.11.3.redhat-00001" + }, + "qualifiers": { + "classifier": "noapt", + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c4dda317-8fcb-4cd1-a736-d2fc43a78445", + "name": "jansi", + "version": "1.18", + "purl": [ + { + "uuid": "40f6dd19-968e-516a-93d5-9ef510d570d4", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "9c2c6ba6-09cf-55d7-aa49-47976ce107fb", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18", + "version": "1.18" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5848de0c-8b48-4961-b50c-10f08b0614db", + "name": "jansi", + "version": "1.18.0.redhat-00001", + "purl": [ + { + "uuid": "425b6ac3-dd6e-5bc1-9f6e-545a2997af4c", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d0e55c78-ae3e-53c0-bdce-113239838dda", + "purl": "pkg:maven/org.fusesource.jansi/jansi" + }, + "version": { + "uuid": "5538b1d3-4145-513e-a433-ae7d0a351fef", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001", + "version": "1.18.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f8138770-4cf7-48e9-b95a-5c6864329306", + "name": "arc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ba957310-890b-538d-b97b-c05f2322bc0d", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d21608ed-1ee4-58c1-99a8-413afa5f8ccf", + "purl": "pkg:maven/io.quarkus.arc/arc" + }, + "version": { + "uuid": "c819ccd9-8801-5468-a2c6-9a61b33066e3", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2810262-85f5-4aba-a163-22a83ec4780e", + "name": "smallrye-open-api-spring", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "237c26b3-1a26-5502-9f37-d9c589754b80", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2a244fb-c3ab-59f7-873f-570963d17332", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring" + }, + "version": { + "uuid": "8e86cad0-15ad-594f-912b-85653e0eb836", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e955d9b8-7ace-4a5f-8d82-119b7dd30d1f", + "name": "quarkus-core", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a0e67580-8cb6-52f2-ad55-392b99d3f2ae", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d2df7e32-548d-52f0-b31d-61463b78ce90", + "purl": "pkg:maven/io.quarkus/quarkus-core" + }, + "version": { + "uuid": "7389656f-66f0-51d7-b6a7-455db9a42336", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c364c65b-1475-4230-99f3-86c403fc0f04", + "name": "asm-util", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "4305e36e-4efd-53ab-a4c4-7d0fd6ff6764", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d339c9c2-22fb-51ca-835c-5e36293389f3", + "purl": "pkg:maven/org.ow2.asm/asm-util" + }, + "version": { + "uuid": "9ad2ccee-91a6-5545-b2a6-1d5ddc50b0ea", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b92e41db-c38b-407e-8bc1-a4f30032473d", + "name": "mariadb-java-client", + "version": "3.0.8.redhat-00001", + "purl": [ + { + "uuid": "311e2c44-65ae-54d8-88e8-f920cf0ddc25", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d34b3560-9cb8-5022-a94b-40df435b68fc", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client" + }, + "version": { + "uuid": "744f8bf7-af37-5d70-b06c-bdb3418abd54", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001", + "version": "3.0.8.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be320306-e624-4e2f-adea-141e59e4a129", + "name": "shrinkwrap-resolver-impl-maven-archive", + "version": "3.1.3", + "purl": [ + { + "uuid": "e298a2fa-227e-58f8-bf92-63a6253f5177", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "base": { + "uuid": "d3696aa1-8d03-5cbc-af76-6c872cfd9bbb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive" + }, + "version": { + "uuid": "971a1e91-dcfe-5673-ad67-f28d334d5091", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5d151d4a-5ce9-433d-a307-10c5c8edc599", + "name": "smallrye-common-function", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "ce60bd88-e01b-59db-8d9c-65057ba3fbca", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3c23337-89da-5d87-a5d0-1de086939dff", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function" + }, + "version": { + "uuid": "bb323913-5c76-5ef4-8988-19e13b39d915", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-430d898a-9b8b-456c-9151-e2b4e0783056", + "name": "netty-handler", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "48f562d1-fdfd-59b7-bd23-861503f31e5d", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3f4c0dd-ef9c-54fe-b6dd-b37380718a57", + "purl": "pkg:maven/io.netty/netty-handler" + }, + "version": { + "uuid": "a6382423-1382-51d7-bcd6-cfb2eab7d764", + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-309f41cb-a09f-4575-a0a4-f40ca7d3fb29", + "name": "vertx-web", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "3a5c8e1e-17c4-5715-b74c-f8b61c4d7d8c", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d3ff19de-94b7-54bb-830f-3f2dafeaf22c", + "purl": "pkg:maven/io.vertx/vertx-web" + }, + "version": { + "uuid": "65c44891-ea76-5c44-aeca-401c36d216a8", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3cbff5c9-167c-4883-aa1b-bda1de0dd37a", + "name": "asm-commons", + "version": "9.3.0.redhat-00001", + "purl": [ + { + "uuid": "478fc45e-791d-5e15-8c10-02348d868999", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d40a5656-3a05-5570-b0ad-4f487a253115", + "purl": "pkg:maven/org.ow2.asm/asm-commons" + }, + "version": { + "uuid": "d18ef3a5-4840-5ac3-a441-946a84ad1551", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001", + "version": "9.3.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d0b8ae84-0ac5-4c4e-9dc4-6f19d3ddea88", + "name": "wildfly-elytron-x500", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "7095581d-7663-5670-b601-6d496957cd3e", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d45b0c64-3b1f-5ef9-b817-5177bcd9adeb", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500" + }, + "version": { + "uuid": "11dc4fcd-2de6-5152-93bf-ee475e9a0aef", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dca658aa-d4db-434b-b895-d5e09ddba8fb", + "name": "resteasy-reactive-jsonb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4bcb077e-f913-54ce-88c1-67f1973627d9", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d4c55081-7168-52ed-a06d-d0ab9e759c41", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb" + }, + "version": { + "uuid": "21f067d5-a339-56ae-b081-0c3e6910a773", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6b09fad5-3e76-4db7-a27b-17ffc2c5c586", + "name": "org.jacoco.core", + "version": "0.8.8", + "purl": [ + { + "uuid": "152f1b27-849e-5bb3-9a36-7c42ae02a5c3", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "base": { + "uuid": "d4fff3a8-8ce2-56a1-807b-d88d31e19999", + "purl": "pkg:maven/org.jacoco/org.jacoco.core" + }, + "version": { + "uuid": "30744f5d-d500-58ea-951c-1e9023e0937d", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8", + "version": "0.8.8" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e5394603-dcaa-4daa-be4a-789157bee34d", + "name": "smallrye-open-api-ui", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "20aee484-5e35-5772-b1ed-f6fddb972a34", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d50f4327-1a2b-5120-8694-046dad80944d", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui" + }, + "version": { + "uuid": "13763b0f-8905-52d7-9bf0-ee376cfb243a", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f3b1193-8276-4b18-aa32-4e7c010ed13c", + "name": "maven-embedder", + "version": "3.8.6", + "purl": [ + { + "uuid": "41844421-6113-54a8-85bc-338b46099de7", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar", + "base": { + "uuid": "d59d4978-0479-5442-a904-d52e1b9848f5", + "purl": "pkg:maven/org.apache.maven/maven-embedder" + }, + "version": { + "uuid": "378342da-c152-5a0a-901f-52bc0cf755c0", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e89a745-9815-415c-a8fc-b5497276f778", + "name": "quarkus-resteasy-reactive-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32359031-6957-5c22-9f49-489e923fe155", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d5c854aa-d090-5a8b-bfbf-f11937c47d10", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment" + }, + "version": { + "uuid": "82696dd7-340b-5ca9-b6a7-4ab6c465f5ba", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ada002be-08e4-435f-bf50-8e6d55f9b77c", + "name": "quarkus-smallrye-opentracing-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "856c4344-2286-5319-b39b-69f20904dbf1", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d60f7e69-97cf-598f-8d1b-fcb93ab64dbd", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment" + }, + "version": { + "uuid": "e764743d-ab22-517b-b774-9034f3c1c8a7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbff440d-05ed-46af-8ac2-7a44767b93e9", + "name": "jakarta.annotation-api", + "version": "1.3.5.redhat-00006", + "purl": [ + { + "uuid": "2fcfdfe1-cce0-5b65-a9fa-2d19d353c882", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d62a943f-4d84-508a-959a-3801b00f132c", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api" + }, + "version": { + "uuid": "a99842f8-be47-59e9-a619-b45ccb0ed6cc", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006", + "version": "1.3.5.redhat-00006" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-331ea393-a9b6-475d-9a05-b8a28efe0a11", + "name": "jackson-dataformat-properties", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "f9b16f90-9bb9-54db-a8d8-a35edce2d12c", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d6f01238-65e2-5db1-b2ba-9c27c4d9f74b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties" + }, + "version": { + "uuid": "a28ad608-6806-5abd-9568-4283f13cd77b", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-483fab7c-3e06-4458-bf18-317ddb4c30e2", + "name": "protobuf-java", + "version": "3.19.6.redhat-00003", + "purl": [ + { + "uuid": "b45a6fb6-fbd1-57a2-a98f-52ebf0576586", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74b1e51-2fa1-5f6f-a674-f5820d8c2981", + "purl": "pkg:maven/com.google.protobuf/protobuf-java" + }, + "version": { + "uuid": "169531b0-d3c3-51a3-bbcf-d2772c22cd10", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003", + "version": "3.19.6.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0f5a12c7-be65-4abb-b9f1-65c3282cf3c4", + "name": "keycloak-authz-client", + "version": "18.0.6.redhat-00001", + "purl": [ + { + "uuid": "2b6bb5c4-fe3e-5a28-b322-f57428471781", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d74ffc9d-f31e-5e22-b1e1-e318fd494324", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client" + }, + "version": { + "uuid": "2a766080-82ba-530b-9610-4d8648da3ed3", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001", + "version": "18.0.6.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-50e388c6-8ba6-45ab-924a-df09d16cc99f", + "name": "smallrye-reactive-messaging-api", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "f60ccd86-7034-572a-a2c1-012cddd7c51b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7621210-5c3d-5882-bc88-14f6a3f5565b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api" + }, + "version": { + "uuid": "8bd56038-32f0-5af9-90c0-7def49adc812", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9796fe6-4b5a-4b7e-8653-cb95a1ff838b", + "name": "quarkus-kubernetes-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "7d5813eb-0754-5eb5-a9fd-fcd36abae683", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7a5f7a6-29fa-5062-92bd-ab610b82cfcf", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi" + }, + "version": { + "uuid": "d01383c9-fc4a-58ee-8989-443e28f3bf14", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6bc0b807-2836-49b1-a5f0-0a904f6aa282", + "name": "hibernate-search-mapper-orm", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "a2e8a8e7-234a-5ab1-9f50-d78eac9a4ef1", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea1747-fb26-5bc9-8172-5d7ba77c162e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm" + }, + "version": { + "uuid": "e4fda8ed-cab4-535d-a649-dbde7139a03e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-85f7155f-dab6-4acf-bd55-edede3d537bc", + "name": "quarkus-funqy-server-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "25538422-f163-5615-9733-f625dfa931b9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d7ea70cc-1d71-5a39-b561-9849b7d6028b", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common" + }, + "version": { + "uuid": "c82d962b-6c27-5358-80ad-85acb0c9485e", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-37565736-974e-4d89-a7bc-5b2ba2d362c6", + "name": "opentelemetry-api", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6707d2c9-16b3-5ab5-8326-da45e615ee16", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8622116-7510-5721-b9cc-ded372f5e93a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api" + }, + "version": { + "uuid": "68e34269-da86-5b51-93bc-18463f5f877e", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-89daeb0b-4b00-4a9a-8023-4493375007b6", + "name": "quarkus-kafka-streams", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fba76d19-f75f-5ec3-8872-8fda2fc9c0d9", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d86b5909-6339-5e49-866b-959bc438d0d1", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams" + }, + "version": { + "uuid": "88d4c728-e472-5778-a2a9-41789dd19093", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ab92847-6833-4cbc-889e-9e3b642f34a7", + "name": "resteasy-reactive-vertx", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "2c2f71c2-f2dc-5fb0-a106-f1bc68152e35", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d87835e6-dacd-5973-a64c-cafa75b464bc", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx" + }, + "version": { + "uuid": "0d0a31c9-bb9e-5d9a-889d-c4f0df9721d3", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-650b38c4-a6dd-4548-b1e3-e51ee70fe873", + "name": "quarkus-infinispan-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0279c963-bcb0-50c7-a934-4760a3c662f8", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d880a9de-1fd0-515b-889e-cb5b9c41f88c", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client" + }, + "version": { + "uuid": "62046603-515f-5349-bcc2-3a7f3d663547", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-34cc7641-6e23-480e-bda2-4dfcd2632125", + "name": "maven-model", + "version": "3.8.6", + "purl": [ + { + "uuid": "2e32497a-4d1c-51b7-9b37-cce28367c54c", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar", + "base": { + "uuid": "d8b537f3-9903-5a43-9723-ba46e81f3a56", + "purl": "pkg:maven/org.apache.maven/maven-model" + }, + "version": { + "uuid": "615b2366-753a-5328-b089-b6b1cde4d7d0", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d1b1b481-bffc-4251-b88c-8f7bb1a7ebbb", + "name": "quarkus-rest-client-reactive-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14785047-21c1-54c4-8f96-94ea0a9b2c1c", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d8dba6cf-5bc5-5e20-b593-59981049c708", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment" + }, + "version": { + "uuid": "14fc877f-ebd6-5108-a32a-6e04dc3b475f", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-690d153a-efba-4ef6-b4aa-2d5cae094615", + "name": "qute-generator", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "66171e88-dfcf-5b5a-a0fe-3a6e747d49a6", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "d9271688-db97-54a8-8722-f3bccd40680e", + "purl": "pkg:maven/io.quarkus.qute/qute-generator" + }, + "version": { + "uuid": "383c0104-7806-5449-ac08-f2f27401671a", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bd61191-e67d-4a0f-b6bc-559421f9e6c6", + "name": "bcutil-jdk15on", + "version": "1.70", + "purl": [ + { + "uuid": "41a894f4-3c52-5977-8bb6-5326db7ea708", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar", + "base": { + "uuid": "d96a5da0-3d47-5958-b0d4-cb01a4000e01", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on" + }, + "version": { + "uuid": "2e3fc837-c6c6-5657-9cea-1c266d4bbb30", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70", + "version": "1.70" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ca131642-6236-42b4-9421-f0063d6049ee", + "name": "resteasy-multipart-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "76283e76-06f1-5658-8653-827c3b4861fc", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da1e04d2-9374-56db-a0ec-28dda7cb317c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider" + }, + "version": { + "uuid": "7b1e181e-cbeb-5f85-ab6c-d77d2c777575", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceecdb9e-bd07-4f0b-8309-6fa6a33bb9bc", + "name": "jakarta.json.bind-api", + "version": "1.0.2.redhat-00004", + "purl": [ + { + "uuid": "b1c67dbb-3e76-582e-b0e2-956aa7977214", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da426a67-b898-5b48-8c12-a899b16bdc02", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api" + }, + "version": { + "uuid": "f1b963bb-de7f-5023-8acd-5ab12c2c2ade", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004", + "version": "1.0.2.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e699ed1d-f9c0-46f4-aaf6-43f3fab8a666", + "name": "opentelemetry-instrumentation-annotations-support", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "4de02faa-b2e5-5f1b-86fc-304ae6614a48", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da44d60d-86db-5d21-a117-d09e12bf9907", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support" + }, + "version": { + "uuid": "c36f6d21-e50b-5e7b-891a-c6789a66c83d", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3a4a3f3a-8e85-4978-890c-acec65cc6dc1", + "name": "freemarker", + "version": "2.3.31.redhat-00001", + "purl": [ + { + "uuid": "5d8d820f-fa35-5a4c-a0b0-183478400ab5", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da589496-88cf-5d22-8071-9f7903e62696", + "purl": "pkg:maven/org.freemarker/freemarker" + }, + "version": { + "uuid": "ec52110c-8dbc-5d9c-b625-7a1804543286", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001", + "version": "2.3.31.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-10f361ee-5181-4e73-bb59-a503fcfb69d6", + "name": "wildfly-elytron-x500-cert-util", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "0dc06cff-7f3c-50b7-923e-6073c6272f86", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "da71e4b6-a774-53b9-98f9-c4dc3cfccad8", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util" + }, + "version": { + "uuid": "cdbde95c-e117-5112-ba1b-d9a2d72aee38", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-be426b66-efcf-47c2-9754-d2ebfd69f56e", + "name": "quarkus-grpc-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b14c7b20-9b29-5c4a-9b84-bb0f66bfdaae", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "daf1f007-48ad-5a93-a9d0-dc0c4047d945", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common" + }, + "version": { + "uuid": "bbb398d7-242b-52fb-982b-75dc1d8e8517", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-966819c8-4b85-4652-bc70-741853a3bea1", + "name": "quarkus-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9a303325-e379-565d-b5cb-14b8ac2fda0b", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db42d908-5b79-5b91-8ba6-fa7fdd7ac877", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment" + }, + "version": { + "uuid": "41885b45-cb19-55fa-a9ab-2dda632044f1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9605d0d9-87de-4b9b-b587-54e284668fed", + "name": "quarkus-smallrye-fault-tolerance", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c8781235-c16b-5e9f-b94f-95aeec466dc8", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "db56d4dc-1396-5cd2-8c0e-66be2437859d", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance" + }, + "version": { + "uuid": "1412d8f8-dfb9-50ff-8efd-6f0ac64ecad7", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-013f6933-003d-4ef5-a401-24c420f56ff1", + "name": "quarkus-elytron-security-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f616fe4a-a0bd-590f-982b-1bb95971314b", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc70fd20-11e1-53a5-b48d-8bae6254ee82", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common" + }, + "version": { + "uuid": "74c5e920-6550-51f1-b0b1-99939e267379", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59a180d8-feee-48d2-9aaf-a6513e310bd2", + "name": "quarkus-vertx-latebound-mdc-provider", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ef5ab1b4-46e1-5339-81ea-5e55d7d0321b", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dc91c9d5-b0f4-5297-851c-5a472cd087f8", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider" + }, + "version": { + "uuid": "e7c3c379-25a6-5094-ac3b-7b874a4ac817", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fc04e6db-504e-4c3d-815b-c76906913f0a", + "name": "resteasy-jackson2-provider", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "211d843a-1a77-5a1b-b524-e3e69643084d", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "dd83d16b-6e70-52e2-abd5-9761d3f909e6", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider" + }, + "version": { + "uuid": "b1c10522-ea9a-5852-807d-a054501cf8a8", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2062c257-0917-4fd1-bd7c-e5a210910f9e", + "name": "quarkus-kubernetes-client-internal", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "169e4ab2-eff5-5d1d-a88b-52bc508ec8a7", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ddf5ef6a-eab6-5e2a-8c6b-6f45e0a6a8fd", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal" + }, + "version": { + "uuid": "7f390824-05d2-54b5-ba89-4f8bd977f018", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-994d040f-9b90-4541-9ef5-6938c5295c15", + "name": "junit-jupiter-params", + "version": "5.9.1", + "purl": [ + { + "uuid": "2852c776-33d3-5846-bf95-3e1275da65b3", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "base": { + "uuid": "de29e149-8f39-5a2b-822b-4b840fb4ac0b", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params" + }, + "version": { + "uuid": "51cc6fb8-9cf3-572c-93ff-e93b0b49d650", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1", + "version": "5.9.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4e4a901e-0b68-419e-8212-a227cd8e71ff", + "name": "quarkus-jsonp", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b03f382a-9cb6-549a-8745-dcd1187bfc67", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "df4d2555-8aeb-5ab2-93a5-4a36ddbb10e1", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp" + }, + "version": { + "uuid": "ee805429-45cb-5eac-92f9-8e11f4a66528", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ba06026-0056-47a2-b261-2cab8163ec3c", + "name": "kubernetes-model-flowcontrol", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "03d54396-ab87-5235-b9e6-2c7c1075915d", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0065e26-0d9f-55bd-b49d-4d498ebc6f6f", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol" + }, + "version": { + "uuid": "7d7e1248-4158-59ce-97f6-05a4e36c2cae", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5e0a6b31-9d06-49f5-b7e1-2126269dc7fa", + "name": "automaton", + "version": "1.11.8.redhat-1", + "purl": [ + { + "uuid": "9788038a-a19c-5c8e-89ae-27d3b6884142", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07738e3-bc56-549a-8930-820eab4f8717", + "purl": "pkg:maven/dk.brics.automaton/automaton" + }, + "version": { + "uuid": "df2761ec-af20-5556-83fd-3ec1c8afa3ba", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1", + "version": "1.11.8.redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f065cb27-319b-49f5-a82f-f5900e97b116", + "name": "grpc-protobuf-lite", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "75a69689-aa2a-583f-800f-c28f9e6d7a9c", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e07cf60c-9bd2-5b46-9cb2-eb895190c0e3", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite" + }, + "version": { + "uuid": "3ac65857-d5ef-5e1c-a481-541e70aea30e", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-80bc7637-1960-4c68-90ca-4dc28fc8415e", + "name": "quarkus-config-yaml", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d5c1f5f4-03a4-5d77-8dab-fc1b0e4bec04", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0cfa164-e24f-5b71-a915-b4858839cdf9", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml" + }, + "version": { + "uuid": "d9709101-564f-5048-b0f6-37eda91a58cc", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95cc9d65-07ae-4680-8f3b-bf9386f6ec56", + "name": "smallrye-common-io", + "version": "1.13.1.redhat-00001", + "purl": [ + { + "uuid": "d5e46976-348e-53c8-9b6f-552437b50cc2", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e0d729e9-9ed6-5ca6-a0d2-ed2829d97c15", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io" + }, + "version": { + "uuid": "59eea166-c711-52c3-9d67-65a14d6ba59b", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001", + "version": "1.13.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4bbd4631-877a-4cd1-9e7c-a6b3aa1f084a", + "name": "quarkus-smallrye-graphql", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "79739ec7-e63b-5a7d-9525-e351fdf1169c", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e112d705-5c6c-5861-82b9-5ff3c03e9f35", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql" + }, + "version": { + "uuid": "7f6e2d54-2fe3-5622-a494-53d0a6085615", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0e3a81be-612d-4a5c-94e0-9236b00b882c", + "name": "strimzi-test-container", + "version": "0.100.0", + "purl": [ + { + "uuid": "c90e8fed-82ba-51c9-ba32-31d2f4392b54", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "base": { + "uuid": "e17d8a32-7c26-5cd8-8a44-cc5d1cf36722", + "purl": "pkg:maven/io.strimzi/strimzi-test-container" + }, + "version": { + "uuid": "cf4db115-5f9e-50f0-bed9-2a576677160c", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0", + "version": "0.100.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ceab2589-b8c6-445d-8bd4-a3513037522f", + "name": "sshd-common", + "version": "2.9.2.redhat-00001", + "purl": [ + { + "uuid": "fc2024de-da0c-519b-a7ca-c2ee02fd609d", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e22d3309-e300-5dbe-8a93-61b4f172ac5e", + "purl": "pkg:maven/org.apache.sshd/sshd-common" + }, + "version": { + "uuid": "36363ea4-549a-5bf6-8352-95985b178a35", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001", + "version": "2.9.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1ebdcd6c-d532-4c2c-9cfa-c0fb7f9f8cd2", + "name": "hibernate-reactive-core", + "version": "1.1.8.Final-redhat-00001", + "purl": [ + { + "uuid": "b609e152-86af-579b-88f6-1ee7ca61f331", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2ab6fed-9bf8-56b0-9625-414a2ed06ce7", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core" + }, + "version": { + "uuid": "b504b566-b41b-5c81-85ee-74613d771dbc", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001", + "version": "1.1.8.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f44cd4be-ff38-4113-8870-427088038534", + "name": "resteasy-reactive-common", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "9034b075-cf42-5792-834e-c29cd9d74da6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2b0226e-c82f-516a-8704-64d8c0bc3f53", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common" + }, + "version": { + "uuid": "08c021d3-e5c2-5f14-838a-c52f59526abd", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-4a28718a-6654-4edb-b6e1-ff9de003532f", + "name": "quarkus-resteasy-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1b72385f-2a52-5862-ae6f-d44b0b864115", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e2cbbd8b-1589-5bac-8c83-0f1c8e9a4945", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment" + }, + "version": { + "uuid": "0f000bd1-dc2f-55f2-9603-ad98e863f030", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bc65230b-048b-4aab-9304-3a5f0ea74953", + "name": "plexus-sec-dispatcher", + "version": "2.0", + "purl": [ + { + "uuid": "18db0b90-ebba-5fa8-a691-eb511ae67272", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar", + "base": { + "uuid": "e33bac88-7ff0-5c21-9549-498c215d07a6", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher" + }, + "version": { + "uuid": "2ae28c87-8375-51f2-aa1e-09c5964a97ef", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0", + "version": "2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20b154c6-91d3-48ea-9368-4a91f1ac856c", + "name": "wildfly-elytron-http", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "a95d7c9c-9b06-5b5b-9c3e-b3aae3b66e40", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3693299-e16c-57b0-91fa-498b5a476582", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http" + }, + "version": { + "uuid": "d9e64858-f7c8-5255-8091-9b9e252ac046", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d936c3d8-a878-460f-bd83-a4de0d8f944f", + "name": "maven-builder-support", + "version": "3.8.6", + "purl": [ + { + "uuid": "18fde6b6-31e1-5dd6-807a-069770c1f45d", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar", + "base": { + "uuid": "e37d6676-ceb3-5f46-b7d1-3c1c180a0c1c", + "purl": "pkg:maven/org.apache.maven/maven-builder-support" + }, + "version": { + "uuid": "72908436-c8ba-50c2-979d-d2e05b020640", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6", + "version": "3.8.6" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62974fba-c40c-43e3-ae89-6c661116f1e0", + "name": "quarkus-funqy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "586516a1-bae6-59f3-883c-d5161830f3a9", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b726f7-1ffc-544c-b0f5-cc2814ebc939", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment" + }, + "version": { + "uuid": "3bdc2633-4b46-5918-a015-a873309d8238", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6110a3d3-a28e-4451-9092-198a41548ad8", + "name": "vertx-mysql-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "02403e81-b330-5cae-9ed8-01d562f387c2", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3b88155-211b-5133-aba0-0e3c3da26ccc", + "purl": "pkg:maven/io.vertx/vertx-mysql-client" + }, + "version": { + "uuid": "bdf26ac8-a7fe-530c-b384-40e84d087eb6", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ee01a004-e09f-431a-9751-d8cc589f31e6", + "name": "avro", + "version": "1.11.1.redhat-00002", + "purl": [ + { + "uuid": "e00de371-b46d-5575-bf0e-9fedfcd19b18", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3deed71-6ee8-532a-9082-8113348a60b4", + "purl": "pkg:maven/org.apache.avro/avro" + }, + "version": { + "uuid": "ca08ebb9-367d-5046-b519-1ef3d6150752", + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002", + "version": "1.11.1.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b2e4ff2-32ef-4e07-b427-bb0d226b8679", + "name": "quarkus-arc-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c85f974c-55ff-5023-ad95-e323ef574b20", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e3f03d71-d00e-52f7-a235-38ba3c986354", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment" + }, + "version": { + "uuid": "58ff6c08-889c-52e0-94b6-0e9c83590b4e", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-62b5aae9-b559-4227-b2d4-c01ab014943c", + "name": "quarkus-http-servlet", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "e30060cb-c597-5e6e-bbd2-32fee20681e2", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e413dd82-f4bc-5681-99ce-57cd7cde0847", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet" + }, + "version": { + "uuid": "2fecb6f4-5aec-5c4b-bdbb-f87c599ae26e", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-27573c70-8e12-47bb-b75d-b8ed41d7e89f", + "name": "quarkus-grpc-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "3848a13f-d5b0-5eae-81e0-e2a7a088bce5", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e45ada50-e9b6-54dc-82c8-e8b9225aa855", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment" + }, + "version": { + "uuid": "bf3f57ee-649c-5c63-9910-08a9ac7d15dd", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6f535279-4d47-480c-b9ac-cc649d7b986b", + "name": "mongodb-crypt", + "version": "1.5.2", + "purl": [ + { + "uuid": "1cf68ec9-52d0-5bf2-bbce-ec1b29eb80e9", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "base": { + "uuid": "e4f8eaec-f5af-55f9-91e8-46ce6fee4d7a", + "purl": "pkg:maven/org.mongodb/mongodb-crypt" + }, + "version": { + "uuid": "f7b45beb-c944-5bd5-af49-af2d26c80708", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2", + "version": "1.5.2" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-09336041-1fdf-41d3-b939-ad8f04bdaf56", + "name": "opentelemetry-instrumentation-api-semconv", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "6301bc04-af8f-580b-a322-b5060619b754", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e5332792-8cda-50fa-b96e-f906d39504d7", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv" + }, + "version": { + "uuid": "645868bd-76af-5478-ad2b-d86f56ef3995", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-adbb0cd2-9d2c-405b-9948-8cd444f67768", + "name": "mssql-jdbc", + "version": "11.2.0.jre11", + "purl": [ + { + "uuid": "d0b3d907-d157-51ad-b139-e306125314b3", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "base": { + "uuid": "e53d95f1-0ff9-5569-93b2-d761e398e719", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc" + }, + "version": { + "uuid": "70f21333-4e0c-56b4-a20d-1692caf8d7db", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11", + "version": "11.2.0.jre11" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96770b0c-63ad-48c9-baa6-8e5514b4ac59", + "name": "smallrye-reactive-messaging-provider", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "98fb61d7-6fe1-5933-a009-a64a8919eef2", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e543e0bd-16dc-5b17-9e5d-edc6f29ddeb8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider" + }, + "version": { + "uuid": "f349d81d-336e-55d8-961f-597b728e80e8", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0a672d40-b577-4282-b34a-3b3a12ed1d27", + "name": "asyncutil", + "version": "0.1.0.redhat-00010", + "purl": [ + { + "uuid": "c5727ac4-3396-58c4-983d-e2ed1ab04649", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e588643c-9d59-5544-afa7-9021354de547", + "purl": "pkg:maven/com.ibm.async/asyncutil" + }, + "version": { + "uuid": "c903f76b-b338-576a-ae76-9b2b80429fd4", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010", + "version": "0.1.0.redhat-00010" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9cc097e7-0dfe-422d-a8c7-ced13be42e49", + "name": "quarkus-resteasy-server-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1a7817fa-dbdc-52b5-ae15-9082a79a2415", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e60775c8-fe8f-5978-8449-2f016a9b0c4d", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment" + }, + "version": { + "uuid": "cddcd2eb-6050-50fc-a751-2594beb8dfa4", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b87fed48-0e65-4836-8abc-4b61e726ff18", + "name": "quarkus-resteasy-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "ee5d61e3-0323-53c2-ac84-1ef590b22c04", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e669abd1-f82b-5919-8ac1-aece2f195ea3", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb" + }, + "version": { + "uuid": "665eadea-578a-54ff-9fa0-c0030854bb1e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-14ce9915-817e-430c-862a-a0206211ab60", + "name": "yasson", + "version": "1.0.11.redhat-00002", + "purl": [ + { + "uuid": "70d7b8d4-1be0-5b6f-8cae-e73cc31c4193", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7572ec7-f9f3-5814-94a1-70137f548e8c", + "purl": "pkg:maven/org.eclipse/yasson" + }, + "version": { + "uuid": "9a260553-7218-5ecd-8989-92a83195d9bb", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002", + "version": "1.0.11.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-398bf94b-6eb3-4386-879e-92db2e9a2ee0", + "name": "quarkus-http-http-core", + "version": "4.1.9.redhat-00001", + "purl": [ + { + "uuid": "1ad744e9-dd82-5ca6-9c32-2f03916965f4", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7581509-5484-5bb2-827d-83025f2b0b48", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core" + }, + "version": { + "uuid": "ba4b9d12-2f6d-5026-a1ca-c0dd23538698", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001", + "version": "4.1.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dfec06df-816e-48d2-a5a4-227d3f2319bd", + "name": "quarkus-mailer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "95d0c540-d850-51d9-990c-7cce57293931", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e78e6247-5399-599c-9ba9-1e640160036f", + "purl": "pkg:maven/io.quarkus/quarkus-mailer" + }, + "version": { + "uuid": "be287883-1030-5b26-8df5-ee3d2cea0f1a", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6d475896-ed03-40a8-9566-10ce151f6a58", + "name": "quarkus-jacoco-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c6b7ad12-44ba-5448-abce-a4611f9c72f8", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7ac0bdb-68a4-5eba-97f6-0e73eaaaf17c", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment" + }, + "version": { + "uuid": "b50dbcc0-2d0d-54b6-8449-06ce9eef1447", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a7b409fa-37e9-4bd0-a0ed-530457866d1d", + "name": "smallrye-open-api-jaxrs", + "version": "2.2.1.redhat-00001", + "purl": [ + { + "uuid": "4ba03e98-745e-5e47-8187-99dfa32ea5e7", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e7b7b143-5366-567c-a5ca-07335c833daa", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs" + }, + "version": { + "uuid": "0cb3d944-8e00-5e5f-a2bc-2223e5107b83", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001", + "version": "2.2.1.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bbb77795-a272-4d8b-b96c-962a725dff02", + "name": "quarkus-grpc-api", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e58951cd-7e8e-5cd9-b060-a5b55d076ce2", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e80c7cbf-a286-52b1-ac4d-514b834ee826", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api" + }, + "version": { + "uuid": "b1487a52-d207-5661-ba97-e054fd1f5e3e", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-aab96740-45e5-43f2-8390-96913f4221ff", + "name": "quarkus-panache-hibernate-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b4e4d3a7-0ff0-518e-9b10-4deb8e88f0ce", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e811932b-e98f-5c7b-a767-0d738dd995a4", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment" + }, + "version": { + "uuid": "f913b684-02c6-5b50-9b43-fed9fa87c765", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b3f7c80a-498b-4413-bc54-48fac33d3567", + "name": "vertx-kafka-client", + "version": "4.3.4.redhat-00008", + "purl": [ + { + "uuid": "1d1c79fa-32f6-5e70-9fbc-f755567fad5f", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84d52a7-a429-5af2-9131-3a097a39550b", + "purl": "pkg:maven/io.vertx/vertx-kafka-client" + }, + "version": { + "uuid": "f7a0e6c2-aadc-5488-9d82-0557a80a35e1", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008", + "version": "4.3.4.redhat-00008" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e6310d62-0c07-4efc-b1b0-eb035cd04358", + "name": "jackson-databind", + "version": "2.13.4.2-redhat-00001", + "purl": [ + { + "uuid": "181f705f-c66c-5869-992f-978f5c0d2d1b", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e84ffc67-c0b9-5b27-900a-6dc7dc21a1b5", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind" + }, + "version": { + "uuid": "cf577549-9a40-5cb0-b33e-d0ca4e421f8a", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001", + "version": "2.13.4.2-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-44d13a7e-ee6a-4cd7-931a-e63a56607e9e", + "name": "opentracing-util", + "version": "0.33.0.redhat-00001", + "purl": [ + { + "uuid": "a0102ae0-d121-5382-aded-481e6e0d096c", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e85319f8-8f8b-559d-a3bf-267ff5c30357", + "purl": "pkg:maven/io.opentracing/opentracing-util" + }, + "version": { + "uuid": "432a3263-4f6b-51c3-a085-28bc3754cd4b", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001", + "version": "0.33.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-414155c5-d54e-4ff4-b58e-e3644e6b180c", + "name": "jboss-transaction-spi", + "version": "7.6.0.Final-redhat-1", + "purl": [ + { + "uuid": "75770e92-f4f8-507b-851b-37e7e3024352", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e88387d8-cdf2-58df-b1f1-baa8d41eb4b4", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi" + }, + "version": { + "uuid": "5a604fe2-0083-562e-a608-a3e509ec2461", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1", + "version": "7.6.0.Final-redhat-1" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-53a65c3c-f086-458e-832b-69c04378d7c8", + "name": "quarkus-devservices-mariadb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "c092f342-19b5-5cea-ba43-14cb48a07962", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8adee06-4843-5d22-bf57-92f0cba83251", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb" + }, + "version": { + "uuid": "74a34ae2-79a7-5516-9180-79bd64df9b4e", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3abe85a0-ec46-4c7b-9f6d-56520c92d9ed", + "name": "jackson-module-jaxb-annotations", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "ed9a598b-98e5-5b38-bca5-c91bf7d497ca", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8ca6241-0ea7-5e3e-be79-f362dd53f446", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations" + }, + "version": { + "uuid": "a23f49e7-a0b1-572c-906f-111235eaad82", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98a8eec8-a2f0-48e6-8be4-bff27859e282", + "name": "apache-mime4j-core", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "4eb789ce-6424-5ba0-8a3f-17f8ce59565c", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e8d1d414-2c09-557d-893e-c6df7961fc8b", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core" + }, + "version": { + "uuid": "89455017-2d20-56ea-9dbf-4f05dca2ed76", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7dda4c5a-5ec5-4a2a-9496-352e414ec67d", + "name": "grpc-core", + "version": "1.49.0.redhat-00002", + "purl": [ + { + "uuid": "157056ae-a75b-5cf9-b934-ae93edd1c337", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9a50c65-9cde-521d-b5d3-4bbce92070a8", + "purl": "pkg:maven/io.grpc/grpc-core" + }, + "version": { + "uuid": "535f50fb-abd2-5341-bc01-994f8d29812b", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002", + "version": "1.49.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b4df594c-1ed5-48e0-91dc-2f70daa7c9fe", + "name": "resteasy-client", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "8cd1f929-0f08-5e54-8d9b-e7929cc06b54", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e9d41d44-85f7-5803-8b36-8e1ab90569e3", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client" + }, + "version": { + "uuid": "d32c0ffe-22e0-5dd0-8e2d-d5d9e0092865", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56a5a9f5-326a-499f-85de-50f5e2a9de25", + "name": "snappy-java", + "version": "1.1.8.4-redhat-00003", + "purl": [ + { + "uuid": "52790975-79ce-5ad4-babc-2ad798f2d34f", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea6b0587-4f6f-5b25-861b-32b62f7d3751", + "purl": "pkg:maven/org.xerial.snappy/snappy-java" + }, + "version": { + "uuid": "368c08c8-54b3-5b6e-8a0c-7e5ca22eb6fb", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003", + "version": "1.1.8.4-redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-96f7c452-3dba-441c-81a4-1109b2a34689", + "name": "apache-mime4j-dom", + "version": "0.8.9.redhat-00001", + "purl": [ + { + "uuid": "726150d9-e5c7-5eec-b9e8-6ed3926a06db", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ea7eefce-cc98-5295-9cf0-4908146870be", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom" + }, + "version": { + "uuid": "5be05e0f-e1e1-5532-97af-5a4bc2a964cd", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001", + "version": "0.8.9.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-01247810-5a10-45c5-887f-f81652168913", + "name": "shrinkwrap-resolver-api", + "version": "3.1.3", + "purl": [ + { + "uuid": "d772b29b-f00b-5981-8d2f-7def7c38fb66", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "base": { + "uuid": "eaca849f-9dfd-5158-93c3-1d33b04675bb", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api" + }, + "version": { + "uuid": "1adb82b1-f03a-5595-a32f-f7047f768801", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3", + "version": "3.1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b191a999-9c96-43ca-b4dd-fb4b95f4566b", + "name": "quarkus-websockets-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e67eca41-b7a7-5a1d-a9e8-12c9b49c8861", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eafd7de3-5568-59e0-bcf4-770c03a8cabe", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client" + }, + "version": { + "uuid": "f4b66788-0c3f-5fa1-8246-c76346a9d1c7", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c584aa6a-61b9-42f6-8db1-365f6e038feb", + "name": "guice", + "version": "4.2.2", + "purl": [ + { + "uuid": "cca2a60b-b9a5-5c58-9fbf-db6a3d0a80f4", + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar", + "base": { + "uuid": "eb6c0c73-9a5a-5c36-8557-6b4e4d79060d", + "purl": "pkg:maven/com.google.inject/guice" + }, + "version": { + "uuid": "52bcdd85-fac8-5c0c-a4ed-2d3f347ae2d5", + "purl": "pkg:maven/com.google.inject/guice@4.2.2", + "version": "4.2.2" + }, + "qualifiers": { + "classifier": "no_aop", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1becf942-9e66-416e-a8c5-f414fff8d0f4", + "name": "infinispan-server-testdriver-core", + "version": "14.0.9.Final", + "purl": [ + { + "uuid": "bc0b4d4e-5d3a-54a5-adec-bb2572199ad1", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "base": { + "uuid": "eb6ebfbd-2408-53bd-b809-163ac9f10a4d", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core" + }, + "version": { + "uuid": "96522487-4d7f-5a33-b731-4792c4c7ab1b", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final", + "version": "14.0.9.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d6ecbbd9-31bf-46fd-afda-8082120f5260", + "name": "quarkus-bom", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "269366bb-0d1a-5058-a752-d2cc434431c6", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=pom", + "base": { + "uuid": "eb87eb3b-0dbf-5f1b-9198-94f453fd74f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom" + }, + "version": { + "uuid": "c0201f09-3d0a-5739-9cf3-8ad19dd177f7", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "pom" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-881df19c-2493-487c-bb23-0b8bbdaed90b", + "name": "jackson-coreutils", + "version": "2.0.0.redhat-00005", + "purl": [ + { + "uuid": "9d95b75b-f119-51e7-8cf3-081d88ea231f", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eba8d59b-3ecf-5546-b99d-879037b8a25a", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils" + }, + "version": { + "uuid": "638a1670-66e3-5345-b04a-d471dc4b14cf", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005", + "version": "2.0.0.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-15620797-223a-43a1-85c2-a9f622d0d1a1", + "name": "maven-shared-utils", + "version": "3.3.4", + "purl": [ + { + "uuid": "d2c3d1e7-9dd9-56b7-abaa-7b02113ee9a0", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "base": { + "uuid": "ebad6fd1-17f1-5388-b084-f5550996a73e", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils" + }, + "version": { + "uuid": "e02dcd09-0478-53e6-9bd3-a9428c2f5b61", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4", + "version": "3.3.4" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1eb4772a-bf1d-4f54-9078-adb6f5de182a", + "name": "quarkus-jaxrs-client-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "8e4868f4-f769-5997-a539-9a39cfd17982", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebcd4297-30fe-57fb-a57e-802840b432bc", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive" + }, + "version": { + "uuid": "53c02973-c2de-5a01-9973-2410e071c50d", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f17d32d4-37ff-4642-9e65-5d67b5969b6e", + "name": "hibernate-search-backend-elasticsearch", + "version": "6.1.7.Final-redhat-00002", + "purl": [ + { + "uuid": "ae9ce5de-669e-5e06-9cd7-a3920f640a77", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ebdb0632-67ce-5fd4-be75-20d45756788e", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch" + }, + "version": { + "uuid": "f60d35a7-53f4-574a-8ccf-de61fd8e25d2", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002", + "version": "6.1.7.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-77e38c05-e480-494e-b2cd-d47343c7a753", + "name": "quarkus-jackson-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "62015e78-a111-5b6e-8ed0-6b21e2c819b9", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec1b3715-dc3b-5d58-b839-f5c1ea208fc7", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment" + }, + "version": { + "uuid": "395d0c26-cfa7-58a7-bd0c-5a31f12a9f5e", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-606e93c5-f824-476c-b41a-099ef048910a", + "name": "opentelemetry-sdk-logs", + "version": "1.17.0.redhat-00001", + "purl": [ + { + "uuid": "1b4a2923-4f30-5c02-a0e1-a507e5f125c3", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec772a7f-e995-5ebc-bcd3-429992ab47d6", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs" + }, + "version": { + "uuid": "b165835d-cd26-5198-b895-2c50598eab1a", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001", + "version": "1.17.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a80568f3-9d9f-4b8d-8e3f-ce00bce70d78", + "name": "quarkus-jdbc-h2-deployment", + "version": "2.13.8.Final", + "purl": [ + { + "uuid": "8006ba9f-6a07-5ab5-9601-763eb6256206", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar", + "base": { + "uuid": "ec91fed5-997e-5c01-be6a-6fa710b87e8e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment" + }, + "version": { + "uuid": "a998d19d-cdf7-58c8-af06-e46af5502e03", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final", + "version": "2.13.8.Final" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-af373b75-06ab-4a2b-80f9-e14c3ebb0574", + "name": "jakarta.persistence-api", + "version": "2.2.3.redhat-00001", + "purl": [ + { + "uuid": "d486addf-9b87-5bd2-806f-9f3df16580b9", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ec9c42b9-5f26-5dcf-acee-ec08fc8db5e1", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api" + }, + "version": { + "uuid": "f26e22bd-35ab-561c-a345-f7eacb79856f", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001", + "version": "2.2.3.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-98d76f73-497b-4aa9-8ebc-5b76a248e722", + "name": "maven-resolver-api", + "version": "1.6.3", + "purl": [ + { + "uuid": "81782808-841b-5f47-8257-ea8c85e3d239", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "base": { + "uuid": "ed023777-2f71-5361-9fd2-5e6f651ea752", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api" + }, + "version": { + "uuid": "8e60a269-5158-5cb0-bd6f-e52471d319bc", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3", + "version": "1.6.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2f8a9a75-ccf4-4bd0-9ec0-c2b947602e42", + "name": "quarkus-jdbc-mssql-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d6241b2e-c46d-561c-b8d8-244f7df7e60e", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed09daa8-fe60-5150-9bc3-80a922275e74", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment" + }, + "version": { + "uuid": "a9e43bab-f27b-5a8a-b905-acdf1e011ec9", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b9c9d5da-f2a3-4327-81ac-2c5cbb64f76a", + "name": "antlr", + "version": "2.7.7", + "purl": [ + { + "uuid": "c69b6459-32fe-5b28-a768-4a012fd44692", + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar", + "base": { + "uuid": "ed1cb973-8e9f-5473-a5e2-40e096c77bba", + "purl": "pkg:maven/antlr/antlr" + }, + "version": { + "uuid": "d7b212a9-0305-5c19-822c-9ad2db12efcb", + "purl": "pkg:maven/antlr/antlr@2.7.7", + "version": "2.7.7" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0fc0c2c9-cb88-4e61-9421-785575d71b94", + "name": "quarkus-elasticsearch-rest-client-common-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "68d3db42-c217-5cfa-b90f-de03550b974d", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed33883e-cc22-53fd-80a0-36888b8f605e", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment" + }, + "version": { + "uuid": "6b290289-1fd6-5b72-918a-74ddf3a67400", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1d5a7a08-c1f4-40e2-a3d5-59ba5e7b4e3e", + "name": "common", + "version": "2.1.0.redhat-00002", + "purl": [ + { + "uuid": "89f2b38c-b46d-5eb3-9393-fcaff55c300b", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed733c85-1af4-5bf2-914d-e0ab6d0f13ac", + "purl": "pkg:maven/com.ongres.scram/common" + }, + "version": { + "uuid": "ae8cf3a9-9acd-58ea-aff2-ad4d21c5f351", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002", + "version": "2.1.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-d8fa99b0-0b14-4dba-ab2d-213f297fbefc", + "name": "lz4-java", + "version": "1.8.0.redhat-00003", + "purl": [ + { + "uuid": "5e39ce44-7315-5205-ad42-2bf0eb9f336d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ed9c559c-96a4-5a1e-bbb2-039ccf34a9ba", + "purl": "pkg:maven/org.lz4/lz4-java" + }, + "version": { + "uuid": "7afe0344-d86a-567e-bb65-e5ade21a817d", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003", + "version": "1.8.0.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5b1fb757-698b-451a-988e-4981f06da7d0", + "name": "quarkus-hibernate-orm-rest-data-panache-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "96067568-b359-56b1-85df-4cf4d5ddc4f1", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "edd63df2-6b50-51cd-9709-0a231c19f89a", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment" + }, + "version": { + "uuid": "590f04c1-a30d-594c-ab0f-6f0a2367da28", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-43bb5522-f8bf-424c-a355-159f43444802", + "name": "quarkus-hibernate-orm-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "384fb55f-3690-59c3-9712-dcbe3d478837", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ee8503c7-2ea8-5f6c-87a4-573ee712d1c0", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment" + }, + "version": { + "uuid": "0d5d0124-c32d-58b8-89be-cead6a776f64", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad6306f7-6154-4775-8ea8-f763bfe0f3d7", + "name": "quarkus-reactive-routes", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fbb05629-88e5-5674-b504-76eb76a64cd2", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "eebdff8b-0aab-58ab-ba5f-6b4c7aebda98", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes" + }, + "version": { + "uuid": "b8086ec8-1779-53d4-9039-adc82ff66861", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-21db41a7-5d44-46b7-87fc-95f3417a784a", + "name": "netty-codec-http2", + "version": "4.1.86.Final-redhat-00002", + "purl": [ + { + "uuid": "b5d0e298-efc7-55b5-a7dd-b78996689fb7", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef580dbe-9fdf-522f-93a7-aef4219fb71a", + "purl": "pkg:maven/io.netty/netty-codec-http2" + }, + "version": { + "uuid": "9accb509-993f-5f93-a36c-cf507582f098", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00002", + "version": "4.1.86.Final-redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-662fff21-daee-434b-8f55-a64e21b2e441", + "name": "quarkus-oidc-client-reactive-filter-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "45547554-2c80-528e-ac46-ca83133ec585", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ef86f974-20cd-526c-b7f8-14fb80a1f084", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment" + }, + "version": { + "uuid": "72bcd38d-cf79-57a9-9f62-85c1f672ab05", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-b6060db8-60ae-40a7-8989-0930bcd709f6", + "name": "biz.aQute.bnd.transform", + "version": "6.3.1", + "purl": [ + { + "uuid": "2c5c18b4-9309-5519-b1e3-1777863c1088", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "base": { + "uuid": "f00f4cb0-e722-54cc-872d-bac2e5af739a", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform" + }, + "version": { + "uuid": "80a0514b-76d6-5af7-9e77-7d3e9b2c0564", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1", + "version": "6.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-267c9496-dd05-407e-a219-7301513a169a", + "name": "smallrye-mutiny-vertx-mysql-client", + "version": "2.27.0.redhat-00001", + "purl": [ + { + "uuid": "966384b9-35f7-5ef5-afa8-f4f301f0a890", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f016551a-d2fb-59f6-be66-a57b7801a9fa", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client" + }, + "version": { + "uuid": "1bfbe9f9-b4f2-56ec-90d3-ef16d509e14b", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001", + "version": "2.27.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-69393a69-98da-4426-b814-20f6ca44fea4", + "name": "quarkus-logging-json-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "16af5276-7f3b-567d-88e1-189ddbc1b1ab", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0347c68-31d3-551b-b452-988c218428b2", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment" + }, + "version": { + "uuid": "26f32942-d724-5a0d-b072-3b44af40571b", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f2a671aa-786d-4d70-a832-3e833dfeaad6", + "name": "quarkus-apache-httpclient", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f97f2fd1-b9fe-5285-8775-3b6f0acbb386", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c07707-2d3c-56be-a8a9-2c806e49d209", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient" + }, + "version": { + "uuid": "217278b8-5cd9-548e-a04b-2296557b3fd0", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7383c2f5-c45c-4354-b520-c132aad20757", + "name": "kubernetes-model-policy", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "bef3ab80-1841-58cb-822e-8b8d819f0128", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0c36702-cfd0-54a7-9e3c-f35c5a94a02e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy" + }, + "version": { + "uuid": "76ba89bd-ff83-5e10-8c61-a7e31178a76e", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-68f997af-b8bc-4e64-a999-8e3ee0338c6e", + "name": "jakarta.transaction-api", + "version": "1.3.3.redhat-00004", + "purl": [ + { + "uuid": "3263d324-0f83-5315-b4c0-c9cf3bf43666", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0ca128d-ca34-5f6d-8a4f-0cbd1f67678e", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api" + }, + "version": { + "uuid": "c133a08d-38e8-5a95-9728-7d43407a3aa1", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004", + "version": "1.3.3.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5c74fb5d-4161-429a-aafe-9d768ddd7163", + "name": "quarkus-websockets-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "36858a25-2eba-56a5-8877-8bd9f17c5dbb", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0d9ca44-ef29-5feb-a477-37859493bc9b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment" + }, + "version": { + "uuid": "621e668f-41fe-53a7-96f0-f986103dae3b", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-91d643af-450c-4c6a-80a9-d55a38eb7f71", + "name": "quarkus-credentials-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "fec58798-c2d9-5308-86d8-994336dad58e", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0e1122e-d37e-5641-9427-59491383748c", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment" + }, + "version": { + "uuid": "59aa699c-bb4a-538e-adf4-441855b38fea", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-f0973486-3136-4c68-9275-92f6e6a39268", + "name": "quarkus-resteasy-reactive-jaxb", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "14d78abf-0845-5e04-bcda-a523fa5b1455", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0f0c6f1-d24f-5705-9e9a-fcf627a1d4c7", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb" + }, + "version": { + "uuid": "da82c5d0-b620-59eb-88c8-ab3cf62dc29f", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-56b7e34e-abe8-4180-8dbc-a0aeae6af3fb", + "name": "quarkus-rest-client-config", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "1f120145-691e-5886-946b-cde974c59f96", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f0fe896a-e8f2-5e61-b765-adf9f0526b91", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config" + }, + "version": { + "uuid": "bce8fbbd-4207-50e1-a76f-59b67ca59fc9", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8158ce06-83e3-48fd-bfa7-ecbbd759327d", + "name": "httpcore", + "version": "4.4.15.redhat-00003", + "purl": [ + { + "uuid": "74a58cd7-b0ee-5670-b360-d07f392f10ca", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f100839a-f160-524c-a656-2d38d9f1549c", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore" + }, + "version": { + "uuid": "4de4a4cc-3a08-52a9-948f-855e79294e74", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003", + "version": "4.4.15.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-212a3aab-65f1-40b9-92e6-a501f5bbd7ce", + "name": "docker-java-api", + "version": "3.2.13", + "purl": [ + { + "uuid": "a428a3f2-768b-5f51-9457-ffd126773b80", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "base": { + "uuid": "f119efeb-00a1-5f85-9b91-dcdb76421242", + "purl": "pkg:maven/com.github.docker-java/docker-java-api" + }, + "version": { + "uuid": "84569a47-9c7d-5338-b03c-d26b050d5601", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13", + "version": "3.2.13" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-eef8f7cd-876b-48bf-bb62-1d1bf799282f", + "name": "quarkus-reactive-mysql-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f734ec00-f2b0-529a-91e2-94d3dd5875c1", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f121d3e1-6188-5288-8ac2-83ed471a08ce", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment" + }, + "version": { + "uuid": "79a25ffc-602c-5034-b55c-a32a8922b983", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-95897968-1b5a-4cb0-9f28-1388a3119668", + "name": "quarkus-devtools-registry-client", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "a93abe61-4511-5388-bc92-fcaa9be4bb38", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f1252251-456e-5f2f-a68d-0a0c513198bb", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client" + }, + "version": { + "uuid": "b926dee3-9b8e-51c4-9f86-d13d261e5c4f", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-591524a2-6096-4a68-8de6-fb3cf5d5affd", + "name": "quarkus-micrometer", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e939d082-66a9-5fe0-b190-c098bfbd5612", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f14cc204-8f1b-5060-902e-a2e00aad23f2", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer" + }, + "version": { + "uuid": "cba221ec-b1cb-5dc9-b194-262ff36443ff", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3be9fc9e-814e-4f86-aee8-d1e9aadd2ab4", + "name": "smallrye-reactive-messaging-kafka", + "version": "3.21.0.redhat-00001", + "purl": [ + { + "uuid": "e606de4d-778e-5169-9268-5274118c3f59", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f219a67d-0ec5-55e4-b0d2-0e8cd81320dc", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka" + }, + "version": { + "uuid": "123ced33-7216-5f9b-a099-7c55e336a68e", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001", + "version": "3.21.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2cbdfe27-7b7e-4d49-99fa-a0e7af5551fb", + "name": "smallrye-graphql-client", + "version": "1.7.2.redhat-00001", + "purl": [ + { + "uuid": "4abf544c-8ad9-5fd0-9081-6538c18667b7", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f26641b3-eb52-58fe-9b3c-b5883d9072b6", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client" + }, + "version": { + "uuid": "e2f0c844-054e-5afe-91d9-84ac00c4fb33", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001", + "version": "1.7.2.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-102b6d6b-905e-4229-bc15-3f118d26aec7", + "name": "quarkus-quartz", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "11648f8e-675f-51eb-aae3-3e40ad9b1178", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f29a31fa-e2dd-520b-b980-420fbee5326b", + "purl": "pkg:maven/io.quarkus/quarkus-quartz" + }, + "version": { + "uuid": "60645d69-3a02-5e14-b927-319b8dd60ae6", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ea3ef789-f32e-4f8b-bbfe-2a388b3346f9", + "name": "microprofile-context-propagation-api", + "version": "1.2.0.redhat-00012", + "purl": [ + { + "uuid": "b9b9f69f-8685-546c-8613-83f8cc3fab62", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2ccbc2d-1416-51eb-812e-2ba643c9105d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api" + }, + "version": { + "uuid": "3ce6f629-c298-58ae-aa34-9b4987404a4d", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012", + "version": "1.2.0.redhat-00012" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6262bf3d-fb52-415e-a1cd-2d77de6ba644", + "name": "jakarta.activation", + "version": "1.2.1.redhat-00005", + "purl": [ + { + "uuid": "af886281-1946-5dda-ac7d-6fcba9c68df7", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f2f98e77-371d-56ce-a421-1188c4e53754", + "purl": "pkg:maven/com.sun.activation/jakarta.activation" + }, + "version": { + "uuid": "6748631d-1d32-5bed-aff4-f3a3be9b465e", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005", + "version": "1.2.1.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-701543d3-599d-4fe8-8adb-5fa3381e6812", + "name": "j2objc-annotations", + "version": "1.3", + "purl": [ + { + "uuid": "c9b6347b-9f4a-5500-945c-93a53f03616c", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar", + "base": { + "uuid": "f36b5587-3226-52ff-b8c4-2d10b132fd69", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations" + }, + "version": { + "uuid": "617caa6a-6b96-5d18-ad3a-77b85401a73d", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3", + "version": "1.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-9f692f30-49a9-4500-923f-2e9569518568", + "name": "okio", + "version": "1.17.2.redhat-00002", + "purl": [ + { + "uuid": "744304a4-9ef2-5756-a89c-fbbeeb66ac85", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4e146bd-0d14-551e-84e3-4a435a4ecea4", + "purl": "pkg:maven/com.squareup.okio/okio" + }, + "version": { + "uuid": "6c4d63ea-1dcc-5f2d-9f6a-7e47cb2f4dcf", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002", + "version": "1.17.2.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a8a2feac-a9ac-4664-8e83-f2b1e3e2c8b7", + "name": "quarkus-resteasy-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "225cedf5-8a3d-571a-964e-addf20718734", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f4ea9a18-592b-5dbd-9b7d-234c8e523512", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive" + }, + "version": { + "uuid": "901e6e40-6bc9-5bee-96cb-cd4ca571c98e", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-59710b04-2df6-469c-8b45-8cf0ff826175", + "name": "quarkus-vertx-http-deployment-spi", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "32c4828e-1191-585b-a481-1598d8da7815", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f556a5a6-1969-5992-ae52-1430aad891f9", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi" + }, + "version": { + "uuid": "8af646d7-5a51-59fd-9328-791543cd1c5c", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-fcdcd84f-89cc-4a1e-9260-edd729bc4b32", + "name": "derbytools", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "fd7474f3-99e0-52d2-9548-83b05298260f", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "base": { + "uuid": "f56bcbc4-db77-56e0-9c33-400528bce281", + "purl": "pkg:maven/org.apache.derby/derbytools" + }, + "version": { + "uuid": "6a5b9661-8d5e-5ef0-b9ba-9418471cb1cf", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-20d3d91a-c402-48f6-88f8-1f8648b1e02f", + "name": "resteasy-reactive-processor", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b7b4b25b-c224-5795-9d79-ba5bf1f0c7c6", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5a9b0f6-b7bf-5bfa-83cc-9de4c403dd64", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor" + }, + "version": { + "uuid": "9221c6e9-fe08-59d9-9301-9236ea906aaf", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8f4e9c2c-e4e8-43ab-89d9-363e8834a91f", + "name": "h2", + "version": "2.1.214", + "purl": [ + { + "uuid": "93d3809e-b645-5968-bbd6-c62474c9221d", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "base": { + "uuid": "f5b5b123-18f9-5b66-b603-d867a3391d6f", + "purl": "pkg:maven/com.h2database/h2" + }, + "version": { + "uuid": "c8c9fe85-0d3b-5946-aea2-062691611a07", + "purl": "pkg:maven/com.h2database/h2@2.1.214", + "version": "2.1.214" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5ee79692-2db1-4625-a4d3-dbf93a0b8ace", + "name": "gizmo", + "version": "1.1.1.Final-redhat-00001", + "purl": [ + { + "uuid": "60ec115f-9739-57e5-aaf8-62b82a489d45", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5c6ba47-1789-5a5e-b256-b16023be0d53", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo" + }, + "version": { + "uuid": "f7b71c77-d815-5351-8e6b-f1c0f2f628c3", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001", + "version": "1.1.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-05574062-3cfe-408e-8656-88275f32977d", + "name": "maven-model-helper", + "version": "20", + "purl": [ + { + "uuid": "d118f61f-f369-572c-9ad0-4a8aaa9b6c66", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "base": { + "uuid": "f5cf5659-46d4-5141-ae97-4b30cd7f959a", + "purl": "pkg:maven/io.fabric8/maven-model-helper" + }, + "version": { + "uuid": "70bec388-70e5-5adf-a8a5-4123a7be839c", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20", + "version": "20" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6ec9b984-d194-405b-86bf-100248e57956", + "name": "openshift-model", + "version": "5.12.4.redhat-00002", + "purl": [ + { + "uuid": "d1dbc27e-b5d5-5ab7-9ee3-9d258a724a3e", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f5ef5eaf-0a36-50fd-a0d5-9ed1bed5ebce", + "purl": "pkg:maven/io.fabric8/openshift-model" + }, + "version": { + "uuid": "1a4cf9c7-250b-5b10-8dcc-d7252bdbdb49", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002", + "version": "5.12.4.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-8b898f7d-3cb2-4ec4-af73-48d7e6f626f7", + "name": "quarkus-resteasy-reactive-qute-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d568bc94-a6a6-5510-9e60-aef0df7e4e28", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f60a5134-41da-518d-9fef-337a58d15926", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment" + }, + "version": { + "uuid": "fee91d1e-e00f-5697-ad27-caa0844bf7e5", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ecb52933-aeae-473a-82f9-a1b9fab9b3fe", + "name": "quarkus-scheduler", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "f5f62b6b-706c-5db7-96cc-2f5666a05487", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f62c3c31-8cd0-5de0-ab91-a3afdb05d786", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler" + }, + "version": { + "uuid": "fec0f312-fb75-55ed-9a9f-3cd2372d7683", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-e1725bb8-81f0-4344-9d93-0f4ed4734455", + "name": "quarkus-mongodb-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "bd124370-245d-503c-b4a4-a7e755ae8cdd", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f702a7a5-4ce5-5073-a22a-407778c5931d", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment" + }, + "version": { + "uuid": "343bb041-791f-5dd6-9b9d-3374b78da85f", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-46a56d3e-d55c-44c0-a6a1-e187f966b92e", + "name": "quarkus-caffeine", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "17b7dabb-49f5-5fe5-b33c-cfd3aaa60a1f", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f79a6a97-7816-5abf-a159-c492616d357c", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine" + }, + "version": { + "uuid": "40e8fdfc-9e4f-5fd1-a546-8acab5fafa1d", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7656e1aa-df09-46b3-a3e8-a65a6dfb5524", + "name": "smallrye-fault-tolerance-vertx", + "version": "5.5.0.redhat-00002", + "purl": [ + { + "uuid": "1baf27c7-5039-5076-af1a-3bb487da8121", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f7a6cd6a-8391-5617-8e17-08c08c9d9966", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx" + }, + "version": { + "uuid": "1d9451c8-18f6-5212-bba3-4b235d6198ae", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002", + "version": "5.5.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-dc7559fa-fcc9-4b10-a3fc-448510790327", + "name": "quarkus-hibernate-reactive", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "4ea927d5-5f2d-5538-ac45-a54f6d4e4513", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f81cfaf3-0ceb-54f0-9171-120e509fd7b7", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive" + }, + "version": { + "uuid": "367d45c3-e5b7-5b50-9c7f-62ddbe600fbd", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-5331ffbc-79e7-49a2-8c4a-221ab76a35ab", + "name": "quarkus-smallrye-jwt-build-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "992ce94e-a7f5-5272-b837-345ad0f503b9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f825cbd1-9668-55d4-94d7-3ddc9cbdf4a9", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment" + }, + "version": { + "uuid": "d686325c-4ae5-5f03-8bc6-3de81402452b", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-57d9d1b5-9144-4765-b097-7f7f25b97b9f", + "name": "wildfly-elytron-security-manager-action", + "version": "1.20.1.Final-redhat-00001", + "purl": [ + { + "uuid": "5a53c015-db73-54d1-893c-00e226973928", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8488788-157c-51a0-bb9b-b206046faa73", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action" + }, + "version": { + "uuid": "6b2f25c7-8dbd-58d6-9fee-4d3719f56bc0", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001", + "version": "1.20.1.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-0cca7eba-f4f5-411e-95f2-1bb15ab87faf", + "name": "jackson-module-parameter-names", + "version": "2.13.4.redhat-00004", + "purl": [ + { + "uuid": "729c6f71-50ba-5ef8-9213-301a845566bd", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f8d4dca0-b06d-5bbf-914c-44ba576672a4", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names" + }, + "version": { + "uuid": "cffe8529-9bbc-5535-9011-28e790eb6694", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004", + "version": "2.13.4.redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-789a4d1e-fce0-4bb3-aa33-d92514d6e206", + "name": "quarkus-oidc-client-reactive-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "d79179f0-6fec-5b7c-b158-640dea77fe96", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "f9a5116c-f4d3-5faa-94bf-0f14fa09b739", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter" + }, + "version": { + "uuid": "538bec89-69d3-5cfc-a9d8-237e5a51e407", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-234c3199-c4ca-4821-a483-54ecff90c70a", + "name": "quarkus-oidc-client-filter", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "5b9fb1f9-f2f9-5c08-8eb7-a614a362e66d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fa4011fb-d6d3-5191-a4bf-49a93e063d9d", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter" + }, + "version": { + "uuid": "1bd61d7f-a4f6-5ba4-ad12-1aba94c2bff9", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-c270293e-5e4b-4348-969a-f5088f9e488b", + "name": "mysql", + "version": "1.17.3", + "purl": [ + { + "uuid": "b5ec818d-6163-569f-8325-1f0b83510fb8", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "base": { + "uuid": "faafc662-a001-5c3d-a3a2-f66eaeb1e973", + "purl": "pkg:maven/org.testcontainers/mysql" + }, + "version": { + "uuid": "ee614387-3048-576b-b338-ada5c3ff9904", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3", + "version": "1.17.3" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-6c9a09c5-9cb9-4f85-a7bc-0929d08a486e", + "name": "wagon-http-shared", + "version": "3.5.1", + "purl": [ + { + "uuid": "ac1538ba-c18f-5cec-8ce0-1c97933a7224", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "base": { + "uuid": "fb0632e8-22f9-5b47-8f88-4490c6753eb1", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared" + }, + "version": { + "uuid": "3a1626c3-c3b1-5243-89c6-11662045b693", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1", + "version": "3.5.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-146f3134-4f6a-45df-85d3-4b393e14558d", + "name": "microprofile-jwt-auth-api", + "version": "1.2.0.redhat-00002", + "purl": [ + { + "uuid": "9abf7b4b-6897-5dd3-8679-1013ca9dd5f2", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb179a63-574f-5dac-a07c-f3a0317c131a", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api" + }, + "version": { + "uuid": "292edf5e-ce6f-5220-86a7-273dd9402b5e", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002", + "version": "1.2.0.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-3580bfb2-a804-4c1f-8532-ddc7ae2afe03", + "name": "mojo-executor", + "version": "2.3.1", + "purl": [ + { + "uuid": "27b68a68-4fe3-5787-a154-3a5f6ff5a01b", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar", + "base": { + "uuid": "fb5ed6ea-3731-5203-bd04-a25ea60af804", + "purl": "pkg:maven/org.twdata.maven/mojo-executor" + }, + "version": { + "uuid": "7606450e-e296-52f5-a7bd-2eadd5387039", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1", + "version": "2.3.1" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-2bd4233e-d61a-4ba0-a3f3-1d7e3b8a708e", + "name": "quarkus-rest-client-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "b15ba520-a315-5e71-8330-e835f569504d", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fb6347e3-04c6-5fdd-8f2b-929cae211192", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment" + }, + "version": { + "uuid": "bf4135b5-79bb-5f57-8d45-53f755883379", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-38841359-b95b-4d67-8041-1d30d1532308", + "name": "quarkus-jsonp-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "949cddbd-bd4f-5baf-b012-df5bc2f835e6", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc2ca471-59a3-54b8-8e44-5e87d8aae35e", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment" + }, + "version": { + "uuid": "3e7256b7-3354-5957-986c-7bc5cdc61b0f", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-bd0feec1-e291-47fc-a341-b5589b7a7b18", + "name": "quarkus-jdbc-mariadb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "427ac6de-e23f-513f-bf84-da830f776322", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fc7dde74-e9ce-5055-a26b-ef114fee1bfa", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment" + }, + "version": { + "uuid": "1feaf60b-57fc-5b39-b7c8-e1e5ad5b6c39", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-a9f020a2-9a52-45bd-8688-5c565c00bc5b", + "name": "derbynet", + "version": "10.14.2.0", + "purl": [ + { + "uuid": "19fb97be-de8b-5f1a-b5dc-8c460774cfd8", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "base": { + "uuid": "fcb5aea5-aae1-5c3f-b905-9e106a64cef7", + "purl": "pkg:maven/org.apache.derby/derbynet" + }, + "version": { + "uuid": "7e147c8d-ca47-57eb-9d95-06da6e471d5e", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0", + "version": "10.14.2.0" + }, + "qualifiers": { + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-1f651c33-f00f-48fa-9a9c-6165889783ce", + "name": "quarkus-rest-client-jsonb-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "e8dfe966-ecee-53f0-a815-6f868d2b2947", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd2eb40f-6220-501d-a020-a6bf30b08c1b", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment" + }, + "version": { + "uuid": "c46a3ee2-e815-5260-abce-8a88dfcdd481", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-29a326e0-5596-453d-aeed-aa8c5156e1dd", + "name": "aesh", + "version": "2.6.0.redhat-00001", + "purl": [ + { + "uuid": "b5ff1d8c-70a4-56bc-b44e-d43a932ef6ad", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fd40e5fc-5175-5937-b5e2-a7298b2b1707", + "purl": "pkg:maven/org.aesh/aesh" + }, + "version": { + "uuid": "8f0db84e-2f3f-564d-b76f-7bbbee44d70b", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001", + "version": "2.6.0.redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-7fd84e1d-6ec2-4bf7-9052-97482f7e6e6d", + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "288c8dfb-be21-54b4-801a-13f03e3a7de6", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fed8bd05-98d6-5ad6-b63e-95b67c2d5501", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment" + }, + "version": { + "uuid": "2de7c15a-ad26-5e7c-92e6-aab028ee5a3f", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-ad4d31eb-46a6-48bc-bd82-1dee6e4491f5", + "name": "jakarta.validation-api", + "version": "2.0.2.redhat-00005", + "purl": [ + { + "uuid": "85b0091d-6aff-595e-91a5-1fe47c39b6f9", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "feee224b-fd2e-5523-a228-7373a32ffe71", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api" + }, + "version": { + "uuid": "aaeed0c2-6539-5d2c-a8ad-e5e24117ebb3", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005", + "version": "2.0.2.redhat-00005" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-19ae344f-aa38-40af-910d-a20c161adfaf", + "name": "okhttp", + "version": "3.14.9.redhat-00003", + "purl": [ + { + "uuid": "d032b76b-a616-50a4-b5b5-39a875c31fb5", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "fef1e731-0deb-556c-827f-9b1fce1baa52", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp" + }, + "version": { + "uuid": "68ea41bc-3abb-568f-aaaa-4c5c5f5c47c3", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003", + "version": "3.14.9.redhat-00003" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-afcf3e07-a8d1-4416-ba26-9bacbe6bc63c", + "name": "resteasy-client-microprofile", + "version": "4.7.9.Final-redhat-00001", + "purl": [ + { + "uuid": "e710c20e-11bf-5d3f-8854-a3a7cd8bd71c", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "ff21d7ff-8c7c-5038-a1c4-c78ffe0fba5e", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile" + }, + "version": { + "uuid": "6f09af39-ef2f-5c11-9db2-068b386efe16", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001", + "version": "4.7.9.Final-redhat-00001" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2974", + "title": "Quarkus-core: tls protocol configured with quarkus.http.ssl.protocols is not enforced, client can enforce weaker supported tls protocol", + "description": "A vulnerability was found in quarkus-core. This vulnerability occurs because the TLS protocol configured with quarkus.http.ssl.protocols is not enforced, and the client can force the selection of the weaker supported TLS protocol.", + "reserved": "2023-05-30T10:06:53.993Z", + "published": "2023-07-04T13:24:29.648Z", + "modified": "2024-08-02T06:41:03.976Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-757"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [ + { + "id": "SPDXRef-608cf97a-3031-476d-b2bf-2645ab517851", + "name": "quarkus-grpc", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "0fc58592-7b41-53b3-810b-c02a9e213a8c", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "c7c15f09-74a1-5c81-aa71-0af88c0e48fb", + "purl": "pkg:maven/io.quarkus/quarkus-grpc" + }, + "version": { + "uuid": "0584ccb5-f648-5cfc-82f1-146e452a4bee", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + }, + { + "id": "SPDXRef-86d9d71d-1c84-4148-a1ce-ea15349aba4d", + "name": "quarkus-vertx-http", + "version": "2.13.8.Final-redhat-00004", + "purl": [ + { + "uuid": "528a575d-5ed9-5aaa-9882-14701d64b51e", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "e883632e-4401-5912-a5c7-de4c7af2ae01", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http" + }, + "version": { + "uuid": "c040304d-22b4-5d85-9b32-55ae9bfffa52", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00004", + "version": "2.13.8.Final-redhat-00004" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ] + }, + { + "normative": true, + "identifier": "CVE-2023-2974", + "title": "Quarkus-core: tls protocol configured with quarkus.http.ssl.protocols is not enforced, client can enforce weaker supported tls protocol", + "description": "A vulnerability was found in quarkus-core. This vulnerability occurs because the TLS protocol configured with quarkus.http.ssl.protocols is not enforced, and the client can force the selection of the weaker supported TLS protocol.", + "reserved": "2023-05-30T10:06:53.993Z", + "published": "2023-07-04T13:24:29.648Z", + "modified": "2024-08-02T06:41:03.976Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-757"], + "average_severity": "medium", + "status": "not_affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + }, + { + "normative": true, + "identifier": "CVE-2023-2974", + "title": "Quarkus-core: tls protocol configured with quarkus.http.ssl.protocols is not enforced, client can enforce weaker supported tls protocol", + "description": "A vulnerability was found in quarkus-core. This vulnerability occurs because the TLS protocol configured with quarkus.http.ssl.protocols is not enforced, and the client can force the selection of the weaker supported TLS protocol.", + "reserved": "2023-05-30T10:06:53.993Z", + "published": "2023-07-04T13:24:29.648Z", + "modified": "2024-08-02T06:41:03.976Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-757"], + "average_severity": "medium", + "status": "fixed", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2.13:*:el8:*" + }, + "packages": [] + } + ] + }, + { + "uuid": "urn:uuid:4af3ac1c-fa69-45e4-a2af-7886e0ec8300", + "identifier": "https://www.redhat.com/#CVE-2023-1108", + "issuer": { + "id": "17b93c24-0248-498c-b509-e4338fa0d895", + "name": "Red Hat Product Security", + "cpe_key": null, + "website": null + }, + "published": "2023-03-07T00:00:00Z", + "modified": "2023-09-14T14:20:52Z", + "withdrawn": null, + "title": "Undertow: Infinite loop in SslConduit during close", + "labels": { + "type": "csaf" + }, + "status": [ + { + "normative": true, + "identifier": "CVE-2023-1108", + "title": "Undertow: infinite loop in sslconduit during close", + "description": "A flaw was found in undertow. This issue makes achieving a denial of service possible due to an unexpected handshake status updated in SslConduit, where the loop never terminates.", + "reserved": "2023-03-01T00:27:23.587Z", + "published": "2023-09-14T14:48:58.869Z", + "modified": "2024-08-02T05:32:46.37Z", + "withdrawn": null, + "discovered": null, + "released": null, + "cwes": ["CWE-835"], + "average_severity": "high", + "status": "affected", + "context": { + "cpe": "cpe:/a:redhat:quarkus:2:*:*:*" + }, + "packages": [ + { + "id": "", + "name": "undertow", + "version": null, + "purl": [], + "cpe": [] + } + ] + } + ] + } +] diff --git a/client/src/mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/details.json similarity index 100% rename from client/src/mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9.json rename to client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/details.json diff --git a/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/packages.json b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/packages.json new file mode 100644 index 00000000..0acdb987 --- /dev/null +++ b/client/src/mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/packages.json @@ -0,0 +1,30 @@ +{ + "items": [ + { + "id": "SPDXRef-234270c7-e53b-449c-be17-c0673993eebe", + "name": "HdrHistogram", + "version": "2.1.12.redhat-00002", + "purl": [ + { + "uuid": "74444d85-cb03-5e89-9b8f-c04d6e64812d", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar", + "base": { + "uuid": "bc1fc8a5-9c96-5efa-b983-6b0fdd8a702e", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram" + }, + "version": { + "uuid": "b19858f6-9170-5efb-971d-4ca29e8e7a6c", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002", + "version": "2.1.12.redhat-00002" + }, + "qualifiers": { + "repository_url": "https://maven.repository.redhat.com/ga/", + "type": "jar" + } + } + ], + "cpe": [] + } + ], + "total": 880 +} diff --git a/client/src/mocks/handlers.ts b/client/src/mocks/handlers.ts index 8fc286d3..62126ab0 100644 --- a/client/src/mocks/handlers.ts +++ b/client/src/mocks/handlers.ts @@ -6,52 +6,88 @@ import getVulnerabilities from "@mocks/data/vulnerability/list.json"; // DATA IMPORTS -import cve202245787 from "@mocks/data/vulnerability/CVE-2022-45787/details.json"; -import cve20230044 from "@mocks/data/vulnerability/CVE-2023-0044/details.json"; -import cve20230481 from "@mocks/data/vulnerability/CVE-2023-0481/details.json"; -import cve20230482 from "@mocks/data/vulnerability/CVE-2023-0482/details.json"; -import cve20231370 from "@mocks/data/vulnerability/CVE-2023-1370/details.json"; -import cve20231436 from "@mocks/data/vulnerability/CVE-2023-1436/details.json"; -import cve202320861 from "@mocks/data/vulnerability/CVE-2023-20861/details.json"; -import cve202324815 from "@mocks/data/vulnerability/CVE-2023-24815/details.json"; -import cve202324998 from "@mocks/data/vulnerability/CVE-2023-24998/details.json"; -import cve202326464 from "@mocks/data/vulnerability/CVE-2023-26464/details.json"; - -import sbom1 from "@mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd.json"; -import sbom2 from "@mocks/data/sbom/details/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9.json"; - -import purl1 from "@mocks/data/purl/details/2e05fb3a-cda9-5e54-96b2-d8c7ea390f8d.json"; -import purl2 from "@mocks/data/purl/details/e0b74cfd-e0b0-512b-8814-947f868bc50e.json"; -import purl3 from "@mocks/data/purl/details/f4f6b460-82e5-59f0-a7f6-da5f226a9b24.json"; -import purl4 from "@mocks/data/purl/details/f357b0cc-75d5-532e-b7d9-2233f6f752c8.json"; +import cve_202245787 from "@mocks/data/vulnerability/CVE-2022-45787/details.json"; +import cve_20230044 from "@mocks/data/vulnerability/CVE-2023-0044/details.json"; +import cve_20230481 from "@mocks/data/vulnerability/CVE-2023-0481/details.json"; +import cve_20230482 from "@mocks/data/vulnerability/CVE-2023-0482/details.json"; +import cve_20231370 from "@mocks/data/vulnerability/CVE-2023-1370/details.json"; +import cve_20231436 from "@mocks/data/vulnerability/CVE-2023-1436/details.json"; +import cve_202320861 from "@mocks/data/vulnerability/CVE-2023-20861/details.json"; +import cve_202324815 from "@mocks/data/vulnerability/CVE-2023-24815/details.json"; +import cve_202324998 from "@mocks/data/vulnerability/CVE-2023-24998/details.json"; +import cve_202326464 from "@mocks/data/vulnerability/CVE-2023-26464/details.json"; + +import sbom_5d5e9dc471bd from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/details.json"; +import sbom_c26de2fe81d9 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/details.json"; +// import sbom_f92bac24a6b0 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/details.json"; +// import sbom_1fac54a371f3 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/details.json"; +// import sbom_c399c1e9a923 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/details.json"; +// import sbom_18044dbbb574 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/details.json"; + +import sbom_5d5e9dc471bd_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/advisory.json"; +import sbom_c26de2fe81d9_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/advisory.json"; +import sbom_f92bac24a6b0_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/advisory.json"; +import sbom_1fac54a371f3_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/advisory.json"; +import sbom_c399c1e9a923_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/advisory.json"; +import sbom_18044dbbb574_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/advisory.json"; + +import sbom_5d5e9dc471bd_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/packages.json"; +import sbom_c26de2fe81d9_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/packages.json"; +import sbom_f92bac24a6b0_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/packages.json"; +import sbom_1fac54a371f3_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/packages.json"; +import sbom_c399c1e9a923_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/packages.json"; +import sbom_18044dbbb574_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/packages.json"; + +import purl_2e05fb3a from "@mocks/data/purl/details/2e05fb3a-cda9-5e54-96b2-d8c7ea390f8d.json"; +import purl_e0b74cfd from "@mocks/data/purl/details/e0b74cfd-e0b0-512b-8814-947f868bc50e.json"; +import purl_f4f6b460 from "@mocks/data/purl/details/f4f6b460-82e5-59f0-a7f6-da5f226a9b24.json"; +import purl_f357b0cc from "@mocks/data/purl/details/f357b0cc-75d5-532e-b7d9-2233f6f752c8.json"; import imgAvatar from "@app/images/avatar.svg"; import { VulnerabilityHead } from "@app/client"; export const cveDetails: { [identifier: string]: Partial } = { - "CVE-2022-45787": cve202245787, - "CVE-2023-0044": cve20230044, - "CVE-2023-0481": cve20230481, - "CVE-2023-0482": cve20230482, - "CVE-2023-1370": cve20231370, - "CVE-2023-1436": cve20231436, - "CVE-2023-20861": cve202320861, - "CVE-2023-24815": cve202324815, - "CVE-2023-24998": cve202324998, - "CVE-2023-26464": cve202326464, + "CVE-2022-45787": cve_202245787, + "CVE-2023-0044": cve_20230044, + "CVE-2023-0481": cve_20230481, + "CVE-2023-0482": cve_20230482, + "CVE-2023-1370": cve_20231370, + "CVE-2023-1436": cve_20231436, + "CVE-2023-20861": cve_202320861, + "CVE-2023-24815": cve_202324815, + "CVE-2023-24998": cve_202324998, + "CVE-2023-26464": cve_202326464, }; export const sbomDetails: { [identifier: string]: any } = { - "urn:uuid:01932ff3-0fc4-7bf2-8201-5d5e9dc471bd": sbom1, - "urn:uuid:01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9": sbom2, + "urn:uuid:01932ff3-0fc4-7bf2-8201-5d5e9dc471bd": sbom_5d5e9dc471bd, + "urn:uuid:01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9": sbom_c26de2fe81d9, +}; + +export const sbomPackages: { [identifier: string]: any } = { + "urn:uuid:01932ff3-0fc4-7bf2-8201-5d5e9dc471bd": sbom_5d5e9dc471bd_packages, + "urn:uuid:01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9": sbom_c26de2fe81d9_packages, + "urn:uuid:01932ff3-0f06-74e0-b673-f92bac24a6b0": sbom_f92bac24a6b0_packages, + "urn:uuid:01932ff3-0f90-7e51-9c9d-1fac54a371f3": sbom_1fac54a371f3_packages, + "urn:uuid:01932ff3-0f91-7543-af38-c399c1e9a923": sbom_c399c1e9a923_packages, + "urn:uuid:01932ff3-0fbc-7b82-b9c2-18044dbbb574": sbom_18044dbbb574_packages, +}; + +export const sbomAdvisory: { [identifier: string]: any } = { + "urn:uuid:01932ff3-0fc4-7bf2-8201-5d5e9dc471bd": sbom_5d5e9dc471bd_advisory, + "urn:uuid:01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9": sbom_c26de2fe81d9_advisory, + "urn:uuid:01932ff3-0f06-74e0-b673-f92bac24a6b0": sbom_f92bac24a6b0_advisory, + "urn:uuid:01932ff3-0f90-7e51-9c9d-1fac54a371f3": sbom_1fac54a371f3_advisory, + "urn:uuid:01932ff3-0f91-7543-af38-c399c1e9a923": sbom_c399c1e9a923_advisory, + "urn:uuid:01932ff3-0fbc-7b82-b9c2-18044dbbb574": sbom_18044dbbb574_advisory, }; export const purlDetails: { [identifier: string]: any } = { - "2e05fb3a-cda9-5e54-96b2-d8c7ea390f8d": purl1, - "e0b74cfd-e0b0-512b-8814-947f868bc50e": purl2, - "f4f6b460-82e5-59f0-a7f6-da5f226a9b24": purl3, - "f357b0cc-75d5-532e-b7d9-2233f6f752c8": purl4, + "2e05fb3a-cda9-5e54-96b2-d8c7ea390f8d": purl_2e05fb3a, + "e0b74cfd-e0b0-512b-8814-947f868bc50e": purl_e0b74cfd, + "f4f6b460-82e5-59f0-a7f6-da5f226a9b24": purl_f4f6b460, + "f357b0cc-75d5-532e-b7d9-2233f6f752c8": purl_f357b0cc, }; /** @@ -294,7 +330,12 @@ const sbomHandlers = [ if (!id) { return new HttpResponse("Advisory for SBOM not found", { status: 404 }); } else { - return HttpResponse.json({}); + const data = sbomAdvisory[id as string]; + if (!data) { + return new HttpResponse("Advisory for SBOM not found", { status: 404 }); + } + + return HttpResponse.json(data); } }), @@ -310,7 +351,12 @@ const sbomHandlers = [ if (!id) { return new HttpResponse("Packages for SBOM not found", { status: 404 }); } else { - return HttpResponse.json({}); + const data = sbomPackages[id as string]; + if (!data) { + return new HttpResponse("Packages for SBOM not found", { status: 404 }); + } + + return HttpResponse.json(data); } }), diff --git a/client/src/stories/v1.2.x/cve-details.stories.tsx b/client/src/stories/v1.2.x/cve-details.stories.tsx index ebcdbb63..fd169792 100644 --- a/client/src/stories/v1.2.x/cve-details.stories.tsx +++ b/client/src/stories/v1.2.x/cve-details.stories.tsx @@ -8,21 +8,17 @@ const meta = { component: Overview, decorators: [ (Story) => ( - + } /> ), ], + tags: ["!dev"], } satisfies Meta; export default meta; type Story = StoryObj; -export const Primary: Story = { - args: {}, - parameters: { - vulnerabilityId: "CVE-123", - }, -}; +export const Primary: Story = {}; diff --git a/client/src/stories/v1.2.x/cve-page.stories.tsx b/client/src/stories/v1.2.x/cve-page.stories.tsx new file mode 100644 index 00000000..2f0c9317 --- /dev/null +++ b/client/src/stories/v1.2.x/cve-page.stories.tsx @@ -0,0 +1,34 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import React from "react"; +import { VulnerabilityList } from "@app/pages/vulnerability-list/vulnerability-list"; +import { BrowserRouter } from "react-router-dom"; +// import { http, HttpResponse } from "msw"; + +const meta = { + title: "v1/CVEs/CVE List", + component: VulnerabilityList, + decorators: [ + (Story) => ( + + + + ), + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const PrimaryState: Story = {}; + +// export const EmptyState: Story = { +// parameters: { +// msw: { +// handlers: [ +// http.get("/api/v1/vulnerability/", () => { +// return HttpResponse.json([]); +// }), +// ], +// }, +// }, +// }; diff --git a/client/src/stories/v1.2.x/sbom-page.stories.tsx b/client/src/stories/v1.2.x/sbom-page.stories.tsx new file mode 100644 index 00000000..778751bd --- /dev/null +++ b/client/src/stories/v1.2.x/sbom-page.stories.tsx @@ -0,0 +1,34 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import React from "react"; +import { SbomList } from "@app/pages/sbom-list/sbom-list"; +import { BrowserRouter } from "react-router-dom"; +// import { http, HttpResponse } from "msw"; + +const meta = { + title: "v1/SBOMs/SBOM List", + component: SbomList, + decorators: [ + (Story) => ( + + + + ), + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const PrimaryState: Story = {}; + +// export const EmptyState: Story = { +// parameters: { +// msw: { +// handlers: [ +// http.get("/api/v1/vulnerability/", () => { +// return HttpResponse.json([]); +// }), +// ], +// }, +// }, +// }; diff --git a/client/src/stories/v2.1/home.stories.tsx b/client/src/stories/v2.1/home.stories.tsx new file mode 100644 index 00000000..47de2060 --- /dev/null +++ b/client/src/stories/v2.1/home.stories.tsx @@ -0,0 +1,31 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import React from "react"; +import { MemoryRouter } from "react-router"; +import Home from "@app/pages/home"; +import { NotificationsProvider } from "@app/components/NotificationsContext"; +import { DefaultLayout } from "@app/layout"; + +const meta = { + title: "v2.1/Home", + component: () => { + return <>A custom homepage for v2.1; + }, + decorators: [ + (Story) => ( + + + + + + + + ), + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Primary: Story = { + args: {}, +}; diff --git a/client/src/stories/v2.2/home.stories.tsx b/client/src/stories/v2.2/home.stories.tsx new file mode 100644 index 00000000..c45ddf11 --- /dev/null +++ b/client/src/stories/v2.2/home.stories.tsx @@ -0,0 +1,31 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import React from "react"; +import { MemoryRouter } from "react-router"; +import Home from "@app/pages/home"; +import { NotificationsProvider } from "@app/components/NotificationsContext"; +import { DefaultLayout } from "@app/layout"; + +const meta = { + title: "v2.x/Home", + component: () => { + return <>A custom homepage for v2.x; + }, + decorators: [ + (Story) => ( + + + + + + + + ), + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Primary: Story = { + args: {}, +}; From d22d0880504f7e6289cde45b4533af8e5f23c9c8 Mon Sep 17 00:00:00 2001 From: kahboom Date: Mon, 25 Nov 2024 15:08:16 +0000 Subject: [PATCH 5/5] add dummy stories for 2.x add missing perls --- .storybook/preview.tsx | 2 +- client/src/app/layout/header.stories.tsx | 9 + .../pages/advisory-list/advisory-context.tsx | 2 +- .../advisory-list/advisory-table.stories.tsx | 176 ++++++------------ client/src/mocks/handlers.ts | 16 +- .../{v1.2.x => v2.0}/cve-details.stories.tsx | 2 +- .../{v1.2.x => v2.0}/cve-page.stories.tsx | 2 +- .../stories/{v1.2.x => v2.0}/home.stories.tsx | 2 +- .../{v1.2.x => v2.0}/sbom-page.stories.tsx | 2 +- .../{v1.2.x => v2.0}/search.stories.tsx | 2 +- client/src/stories/v2.1/home.stories.tsx | 2 +- client/src/stories/v2.2/home.stories.tsx | 4 +- client/src/stories/v2.3/home.stories.tsx | 31 +++ 13 files changed, 122 insertions(+), 130 deletions(-) rename client/src/stories/{v1.2.x => v2.0}/cve-details.stories.tsx (94%) rename client/src/stories/{v1.2.x => v2.0}/cve-page.stories.tsx (96%) rename client/src/stories/{v1.2.x => v2.0}/home.stories.tsx (96%) rename client/src/stories/{v1.2.x => v2.0}/sbom-page.stories.tsx (95%) rename client/src/stories/{v1.2.x => v2.0}/search.stories.tsx (97%) create mode 100644 client/src/stories/v2.3/home.stories.tsx diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 96b0a0e9..95a64482 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -48,7 +48,7 @@ const preview: Preview = { }, options: { storySort: { - order: ["v1", "v1.2x", "v2", "v2.1", "v2.x"], + order: ["v2.0", "v2.4", "v2.3", "v2.2", "v2.1"], }, }, }, diff --git a/client/src/app/layout/header.stories.tsx b/client/src/app/layout/header.stories.tsx index f987d44a..d1def64e 100644 --- a/client/src/app/layout/header.stories.tsx +++ b/client/src/app/layout/header.stories.tsx @@ -1,6 +1,8 @@ +import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import { HeaderApp } from "@app/layout/header"; import { fn } from "@storybook/test"; +import { BrowserRouter } from "react-router-dom"; import * as actual from "@app/hooks/useBranding"; const useBranding = fn(actual.useBranding).mockName("useBranding"); @@ -10,6 +12,13 @@ import { BrandingStrings } from "@trustify-ui/common"; const meta = { title: "Components/Layout/HeaderApp", component: HeaderApp, + decorators: [ + (Story) => ( + + + + ), + ], } satisfies Meta; export default meta; diff --git a/client/src/app/pages/advisory-list/advisory-context.tsx b/client/src/app/pages/advisory-list/advisory-context.tsx index 197a548c..5dce3580 100644 --- a/client/src/app/pages/advisory-list/advisory-context.tsx +++ b/client/src/app/pages/advisory-list/advisory-context.tsx @@ -17,7 +17,7 @@ import { import { useSelectionState } from "@app/hooks/useSelectionState"; import { useFetchAdvisories } from "@app/queries/advisories"; -export interface IAdvisorySearchContext { +interface IAdvisorySearchContext { tableControls: ITableControls< AdvisorySummary, "identifier" | "title" | "severity" | "modified" | "vulnerabilities", diff --git a/client/src/app/pages/advisory-list/advisory-table.stories.tsx b/client/src/app/pages/advisory-list/advisory-table.stories.tsx index 71b4ad90..fe83706f 100644 --- a/client/src/app/pages/advisory-list/advisory-table.stories.tsx +++ b/client/src/app/pages/advisory-list/advisory-table.stories.tsx @@ -3,20 +3,43 @@ import type { Meta, StoryObj } from "@storybook/react"; import { AdvisoryTable } from "./advisory-table"; import { AdvisorySearchContext } from "./advisory-context"; import listResponse from "@mocks/data/advisory/list.json"; +import { BrowserRouter } from "react-router-dom"; + +const meta = { + title: "Components/AdvisoryList/AdvisoryTable", + component: AdvisoryTable, + tags: ["autodocs"], + decorators: [ + (Story, { parameters }) => { + const { contextDefaultValue } = parameters; + return ( + + + + + + ); + }, + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; const tableControlsCustom = { tableName: "advisory", - persistenceKeyPrefix: "vn", + persistenceKeyPrefix: "ad", + persistTo: "urlParams", columnNames: { identifier: "ID", - title: "Description", - severity: "CVSS", - published: "Date published", - sboms: "Related documents", + title: "Title", + severity: "Aggregated Severity", + modified: "Revision", + vulnerabilities: "Vulnerabilities", }, isPaginationEnabled: true, isSortEnabled: true, - sortableColumns: ["published", "sboms"], + sortableColumns: ["identifier", "severity", "modified"], isFilterEnabled: true, filterCategories: [ { @@ -27,8 +50,8 @@ const tableControlsCustom = { }, { categoryKey: "average_severity", - title: "CVSS", - placeholderText: "CVSS", + title: "Severity", + placeholderText: "Severity", type: "multiselect", selectOptions: [ { @@ -53,15 +76,19 @@ const tableControlsCustom = { }, ], }, + { + categoryKey: "modified", + title: "Revision", + type: "dateRange", + }, ], - isExpansionEnabled: true, - expandableVariant: "compound", + isExpansionEnabled: false, filterState: { filterValues: {}, }, sortState: { activeSort: { - columnKey: "modified", + columnKey: "identifier", direction: "asc", }, }, @@ -84,22 +111,22 @@ const tableControlsCustom = { }, { id: "title", - label: "Description", + label: "Title", isVisible: true, }, { id: "severity", - label: "CVSS", + label: "Aggregated Severity", isVisible: true, }, { - id: "published", - label: "Date published", + id: "modified", + label: "Revision", isVisible: true, }, { - id: "sboms", - label: "Related documents", + id: "vulnerabilities", + label: "Vulnerabilities", isVisible: true, }, ], @@ -123,89 +150,27 @@ const tableControlsCustom = { }, propHelpers: { toolbarProps: { + className: "", collapseListedFiltersBreakpoint: "xl", clearFiltersButtonText: "Clear all filters", }, tableProps: { isExpandable: false, }, - filterToolbarProps: { - filterCategories: [ - { - categoryKey: "", - title: "Filter text", - placeholderText: "Search", - type: "search", - }, - { - categoryKey: "average_severity", - title: "CVSS", - placeholderText: "CVSS", - type: "multiselect", - selectOptions: [ - { - value: "none", - label: "None", - }, - { - value: "low", - label: "Low", - }, - { - value: "medium", - label: "Medium", - }, - { - value: "high", - label: "High", - }, - { - value: "critical", - label: "Critical", - }, - ], - }, - ], - filterValues: {}, + filterToolbarProps: {}, + paginationProps: { + itemCount: 58, + perPage: 10, + page: 1, }, - filterPanelProps: { - filterCategories: [ - { - categoryKey: "", - title: "Filter text", - placeholderText: "Search", - type: "search", - }, - { - categoryKey: "average_severity", - title: "CVSS", - placeholderText: "CVSS", - type: "multiselect", - selectOptions: [ - { - value: "none", - label: "None", - }, - { - value: "low", - label: "Low", - }, - { - value: "medium", - label: "Medium", - }, - { - value: "high", - label: "High", - }, - { - value: "critical", - label: "Critical", - }, - ], - }, - ], - filterValues: {}, + paginationToolbarItemProps: { + variant: "pagination", + align: { + default: "alignRight", + }, + }, + toolbarBulkSelectorProps: { + areAllSelected: false, }, getThProps: () => {}, getTrProps: () => {}, @@ -213,34 +178,13 @@ const tableControlsCustom = { }, }; -const meta = { - title: "Components/AdvisoryList/AdvisoryTable", - component: AdvisoryTable, - tags: ["autodocs"], - decorators: [ - (Story, { parameters }) => { - const { contextDefaultValue } = parameters; - return ( - - - - ); - }, - ], -} satisfies Meta; - -export default meta; -type Story = StoryObj; - export const PrimaryState: Story = { parameters: { contextDefaultValue: { isFetching: false, - fetchError: "", + fetchError: null, tableControls: { ...tableControlsCustom }, - totalItemCount: 3, - currentPageItems: 10, - numRenderedColumns: 3, + totalItemCount: 58, }, }, }; diff --git a/client/src/mocks/handlers.ts b/client/src/mocks/handlers.ts index 62126ab0..5d196b11 100644 --- a/client/src/mocks/handlers.ts +++ b/client/src/mocks/handlers.ts @@ -19,10 +19,6 @@ import cve_202326464 from "@mocks/data/vulnerability/CVE-2023-26464/details.json import sbom_5d5e9dc471bd from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/details.json"; import sbom_c26de2fe81d9 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/details.json"; -// import sbom_f92bac24a6b0 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f06-74e0-b673-f92bac24a6b0/details.json"; -// import sbom_1fac54a371f3 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f90-7e51-9c9d-1fac54a371f3/details.json"; -// import sbom_c399c1e9a923 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0f91-7543-af38-c399c1e9a923/details.json"; -// import sbom_18044dbbb574 from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/details.json"; import sbom_5d5e9dc471bd_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fc4-7bf2-8201-5d5e9dc471bd/advisory.json"; import sbom_c26de2fe81d9_advisory from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fe1-7ca0-8ba6-c26de2fe81d9/advisory.json"; @@ -39,6 +35,12 @@ import sbom_c399c1e9a923_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0 import sbom_18044dbbb574_packages from "@mocks/data/sbom/urn%3Auuid%3A01932ff3-0fbc-7b82-b9c2-18044dbbb574/packages.json"; import purl_2e05fb3a from "@mocks/data/purl/details/2e05fb3a-cda9-5e54-96b2-d8c7ea390f8d.json"; +import purl_14c5c61d from "@mocks/data/purl/details/14c5c61d-c4cc-56fb-9db6-f62541076b80.json"; +import purl_25ddc770 from "@mocks/data/purl/details/25ddc770-5fde-53a8-8451-41091d5fcb3b.json"; +import purl_62c9cfab from "@mocks/data/purl/details/62c9cfab-997b-5126-ad5c-90bc277e048f.json"; +import purl_81293bba from "@mocks/data/purl/details/81293bba-1ab5-5524-8444-0bd55d19b9b3.json"; +import purl_b9a43108 from "@mocks/data/purl/details/b9a43108-525d-59ea-bc31-ff217d4c7925.json"; +import purl_d6dea366 from "@mocks/data/purl/details/d6dea366-e8a6-5500-9aef-14464b717295.json"; import purl_e0b74cfd from "@mocks/data/purl/details/e0b74cfd-e0b0-512b-8814-947f868bc50e.json"; import purl_f4f6b460 from "@mocks/data/purl/details/f4f6b460-82e5-59f0-a7f6-da5f226a9b24.json"; import purl_f357b0cc from "@mocks/data/purl/details/f357b0cc-75d5-532e-b7d9-2233f6f752c8.json"; @@ -85,6 +87,12 @@ export const sbomAdvisory: { [identifier: string]: any } = { export const purlDetails: { [identifier: string]: any } = { "2e05fb3a-cda9-5e54-96b2-d8c7ea390f8d": purl_2e05fb3a, + "14c5c61d-c4cc-56fb-9db6-f62541076b80": purl_14c5c61d, + "25ddc770-5fde-53a8-8451-41091d5fcb3b": purl_25ddc770, + "62c9cfab-997b-5126-ad5c-90bc277e048f": purl_62c9cfab, + "81293bba-1ab5-5524-8444-0bd55d19b9b3": purl_81293bba, + "b9a43108-525d-59ea-bc31-ff217d4c7925": purl_b9a43108, + "d6dea366-e8a6-5500-9aef-14464b717295": purl_d6dea366, "e0b74cfd-e0b0-512b-8814-947f868bc50e": purl_e0b74cfd, "f4f6b460-82e5-59f0-a7f6-da5f226a9b24": purl_f4f6b460, "f357b0cc-75d5-532e-b7d9-2233f6f752c8": purl_f357b0cc, diff --git a/client/src/stories/v1.2.x/cve-details.stories.tsx b/client/src/stories/v2.0/cve-details.stories.tsx similarity index 94% rename from client/src/stories/v1.2.x/cve-details.stories.tsx rename to client/src/stories/v2.0/cve-details.stories.tsx index fd169792..351b0c1f 100644 --- a/client/src/stories/v1.2.x/cve-details.stories.tsx +++ b/client/src/stories/v2.0/cve-details.stories.tsx @@ -4,7 +4,7 @@ import Overview from "@app/pages/vulnerability-details"; import { MemoryRouter, Routes, Route } from "react-router"; const meta = { - title: "v1/CVEs/CVE Details", + title: "v2.0/CVEs/CVE Details", component: Overview, decorators: [ (Story) => ( diff --git a/client/src/stories/v1.2.x/cve-page.stories.tsx b/client/src/stories/v2.0/cve-page.stories.tsx similarity index 96% rename from client/src/stories/v1.2.x/cve-page.stories.tsx rename to client/src/stories/v2.0/cve-page.stories.tsx index 2f0c9317..18121195 100644 --- a/client/src/stories/v1.2.x/cve-page.stories.tsx +++ b/client/src/stories/v2.0/cve-page.stories.tsx @@ -5,7 +5,7 @@ import { BrowserRouter } from "react-router-dom"; // import { http, HttpResponse } from "msw"; const meta = { - title: "v1/CVEs/CVE List", + title: "v2.0/CVEs/CVE List", component: VulnerabilityList, decorators: [ (Story) => ( diff --git a/client/src/stories/v1.2.x/home.stories.tsx b/client/src/stories/v2.0/home.stories.tsx similarity index 96% rename from client/src/stories/v1.2.x/home.stories.tsx rename to client/src/stories/v2.0/home.stories.tsx index 0c7f03ba..f8fcc8bd 100644 --- a/client/src/stories/v1.2.x/home.stories.tsx +++ b/client/src/stories/v2.0/home.stories.tsx @@ -6,7 +6,7 @@ import { NotificationsProvider } from "@app/components/NotificationsContext"; import { DefaultLayout } from "@app/layout"; const meta = { - title: "v1/Home", + title: "v2.0/Home", component: Home, decorators: [ (Story) => ( diff --git a/client/src/stories/v1.2.x/sbom-page.stories.tsx b/client/src/stories/v2.0/sbom-page.stories.tsx similarity index 95% rename from client/src/stories/v1.2.x/sbom-page.stories.tsx rename to client/src/stories/v2.0/sbom-page.stories.tsx index 778751bd..bd2b4ab6 100644 --- a/client/src/stories/v1.2.x/sbom-page.stories.tsx +++ b/client/src/stories/v2.0/sbom-page.stories.tsx @@ -5,7 +5,7 @@ import { BrowserRouter } from "react-router-dom"; // import { http, HttpResponse } from "msw"; const meta = { - title: "v1/SBOMs/SBOM List", + title: "v2.0/SBOMs/SBOM List", component: SbomList, decorators: [ (Story) => ( diff --git a/client/src/stories/v1.2.x/search.stories.tsx b/client/src/stories/v2.0/search.stories.tsx similarity index 97% rename from client/src/stories/v1.2.x/search.stories.tsx rename to client/src/stories/v2.0/search.stories.tsx index e16640d1..ca0176cb 100644 --- a/client/src/stories/v1.2.x/search.stories.tsx +++ b/client/src/stories/v2.0/search.stories.tsx @@ -10,7 +10,7 @@ const CustomBody: React.FC = () => { }; const meta = { - title: "v1/Search", + title: "v2.0/Search", component: SearchPage, decorators: [ (Story) => ( diff --git a/client/src/stories/v2.1/home.stories.tsx b/client/src/stories/v2.1/home.stories.tsx index 47de2060..0b6bca3c 100644 --- a/client/src/stories/v2.1/home.stories.tsx +++ b/client/src/stories/v2.1/home.stories.tsx @@ -8,7 +8,7 @@ import { DefaultLayout } from "@app/layout"; const meta = { title: "v2.1/Home", component: () => { - return <>A custom homepage for v2.1; + return <>An example custom homepage for v2.1; }, decorators: [ (Story) => ( diff --git a/client/src/stories/v2.2/home.stories.tsx b/client/src/stories/v2.2/home.stories.tsx index c45ddf11..439de8b4 100644 --- a/client/src/stories/v2.2/home.stories.tsx +++ b/client/src/stories/v2.2/home.stories.tsx @@ -6,9 +6,9 @@ import { NotificationsProvider } from "@app/components/NotificationsContext"; import { DefaultLayout } from "@app/layout"; const meta = { - title: "v2.x/Home", + title: "v2.2/Home", component: () => { - return <>A custom homepage for v2.x; + return <>An example custom homepage for v2.2; }, decorators: [ (Story) => ( diff --git a/client/src/stories/v2.3/home.stories.tsx b/client/src/stories/v2.3/home.stories.tsx new file mode 100644 index 00000000..ed1b3c95 --- /dev/null +++ b/client/src/stories/v2.3/home.stories.tsx @@ -0,0 +1,31 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import React from "react"; +import { MemoryRouter } from "react-router"; +import Home from "@app/pages/home"; +import { NotificationsProvider } from "@app/components/NotificationsContext"; +import { DefaultLayout } from "@app/layout"; + +const meta = { + title: "v2.3/Home", + component: () => { + return <>An example custom homepage for v2.3; + }, + decorators: [ + (Story) => ( + + + + + + + + ), + ], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Primary: Story = { + args: {}, +};